local-traffic 0.0.99 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +35 -11
- package/dist/local-traffic.js +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ That is a secure http/2 (or insecure http1.1) reverse-proxy installed on your ma
|
|
|
5
5
|
- with 0 transitive dependency
|
|
6
6
|
- with 1 install step
|
|
7
7
|
- with a startup time of a few milliseconds
|
|
8
|
-
- with one
|
|
8
|
+
- with one 70kb index.js file
|
|
9
9
|
|
|
10
10
|
How simple is that ?
|
|
11
11
|
|
|
@@ -29,7 +29,8 @@ npx local-traffic
|
|
|
29
29
|
{
|
|
30
30
|
"mapping": {
|
|
31
31
|
"/npm/": "https://www.npmjs.com/",
|
|
32
|
-
"/my-static-webapp/
|
|
32
|
+
"/my-static-webapp/": "file:///home/user/projects/my-static-webapp/",
|
|
33
|
+
"/my-non-existing-webapp/": "file:///home/user/random/404.html",
|
|
33
34
|
"/welcome/": "data:text/html,<a href=\"https://ac.me/acme.js\">See my hobby project</a>",
|
|
34
35
|
"/(see-this-example|yet-another-example)": "http://example.com/$$1",
|
|
35
36
|
"/config/": "config://",
|
|
@@ -48,15 +49,15 @@ npx local-traffic
|
|
|
48
49
|
|
|
49
50
|
2. Go to [http://localhost:8080/prettier](http://localhost:8080/prettier) with your browser
|
|
50
51
|
3. Go to [http://localhost:8080/npm/](http://localhost:8080/npm) with your browser
|
|
51
|
-
4. Go to [http://localhost:8080/my-static-webapp/index.html](http://localhost:8080/my-static-webapp/index.html)
|
|
52
|
-
5. Go to [http://localhost:8080/
|
|
53
|
-
6. Go to [http://localhost:8080/
|
|
54
|
-
7. Go to [http://localhost:8080/
|
|
55
|
-
8. Go to [http://localhost:8080/
|
|
56
|
-
9.
|
|
57
|
-
10.
|
|
58
|
-
11.
|
|
59
|
-
12. Your
|
|
52
|
+
4. Go to [http://localhost:8080/my-static-webapp/index.html](http://localhost:8080/my-static-webapp/index.html) to test your webapp
|
|
53
|
+
5. Go to [http://localhost:8080/my-non-existing-webapp/admin/permissions](http://localhost:8080/my-non-existing-webapp/admin/permissions) to test your 404 page (>= 0.1.1)
|
|
54
|
+
6. Go to [http://localhost:8080/see-this-example](http://localhost:8080/see-this-example) or to [http://localhost:8080/yet-another-example](http://localhost:8080/yet-another-example) with your browser. Starting 0.0.89 and above, it supports regular expressions, and it is able to match them against the destination through string interpolation. Start with a double dollar sign (`$$`) followed by the index of the value in the [match array](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/match#return_value)
|
|
55
|
+
7. Go to [http://localhost:8080/welcome/](http://localhost:8080/welcome/) with your browser (data urls work with version >= 0.0.95)
|
|
56
|
+
8. Go to [http://localhost:8080/logs/](http://localhost:8080/logs/) to watch the request logs
|
|
57
|
+
9. Go to [http://localhost:8080/config/](http://localhost:8080/config/) to change the config in a web editor
|
|
58
|
+
10. You can use the [http://localhost:8080/recorder/](recorder) to turn your proxy into a mock server. There is a user interface and also an API (documented [here](#recorder-api))
|
|
59
|
+
11. From the web config editor, create a SSL keypair and start working with a self signed SSL certificate right away
|
|
60
|
+
12. Your page will use /jquery-local/jquery.js instead of the CDN asset, and will serve the file from your hard drive
|
|
60
61
|
|
|
61
62
|
## usage
|
|
62
63
|
|
|
@@ -101,6 +102,29 @@ All boolean settings default to false when unspecified.
|
|
|
101
102
|
- `socketTimeout`: (`number`) max time waiting for a response (defaults to 3000ms)
|
|
102
103
|
- `unwantedHeaderNamesInMocks`: (`string[]`) header names that won't get added to the mock request matchers
|
|
103
104
|
|
|
105
|
+
## config API
|
|
106
|
+
|
|
107
|
+
(>= 0.1.1)
|
|
108
|
+
The configuration can be manipulated programmatically with an API.
|
|
109
|
+
It can be used if someone needs to automatically switch the routes or the options.
|
|
110
|
+
It can be used for canary deployment strategy (to switch between odd domain and even domain)
|
|
111
|
+
|
|
112
|
+
### post, put
|
|
113
|
+
|
|
114
|
+
Argument : the config itself
|
|
115
|
+
|
|
116
|
+
Updates the config, returns the new config once the update is complete
|
|
117
|
+
|
|
118
|
+
### get, head
|
|
119
|
+
|
|
120
|
+
Retrieves the current configuration.
|
|
121
|
+
use `Accept: application/json` to use the API mode.
|
|
122
|
+
|
|
123
|
+
```bash
|
|
124
|
+
$ curl https://localhost:8443/config/ -XGET -k -H'Accept: application/json'
|
|
125
|
+
{"mapping":{"/config/":"config://","":"https://github.com/"},"port":443,"replaceRequestBodyUrls":true,"replaceResponseBodyUrls":true}
|
|
126
|
+
```
|
|
127
|
+
|
|
104
128
|
## recorder API
|
|
105
129
|
|
|
106
130
|
(>= 0.0.86)
|
package/dist/local-traffic.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
"use strict";var e,t=this&&this.__awaiter||function(e,t,n,o){return new(n||(n=Promise))((function(r,s){function i(e){try{l(o.next(e))}catch(e){s(e)}}function a(e){try{l(o.throw(e))}catch(e){s(e)}}function l(e){var t;e.done?r(e.value):(t=e.value,t instanceof n?t:new n((function(e){e(t)}))).then(i,a)}l((o=o.apply(e,t||[])).next())}))},n=this&&this.__rest||function(e,t){var n={};for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&t.indexOf(o)<0&&(n[o]=e[o]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(o=Object.getOwnPropertySymbols(e);r<o.length;r++)t.indexOf(o[r])<0&&Object.prototype.propertyIsEnumerable.call(e,o[r])&&(n[o[r]]=e[o[r]])}return n};Object.defineProperty(exports,"__esModule",{value:!0}),exports.update=exports.serve=exports.determineMapping=exports.send=exports.cleanEntropy=exports.replaceTextUsingMapping=exports.replaceBody=exports.acknowledgeWebsocket=exports.readWebsocketBuffer=exports.createWebsocketBufferFrom=exports.websocketServe=exports.recorderHandler=exports.quickStatus=exports.errorListener=exports.load=exports.start=void 0;const o=require("http2"),r=require("http"),s=require("https"),i=require("url"),a=require("fs"),l=require("zlib"),d=require("path"),c=require("crypto"),u=require("process"),p=require("os");var m,g,h,f;!function(e){e[e.ERROR=124]="ERROR",e[e.INFO=93]="INFO",e[e.WARNING=172]="WARNING"}(m||(m={})),function(e){e.INBOUND="↘️ ",e.PORT="☎️ ",e.OUTBOUND="↗️ ",e.RULES="🔗",e.MOCKS="🌐",e.STRICT_MOCKS="🕸️",e.AUTO_RECORD="📼",e.REWRITE="✒️ ",e.LOGS="📝",e.RESTART="🔄",e.WEBSOCKET="☄️ ",e.COLORED="✨",e.SHIELD="🛡️ ",e.NO="⛔",e.ERROR_1="❌",e.ERROR_2="⛈️ ",e.ERROR_3="☢️ ",e.ERROR_4="⁉️ ",e.ERROR_5="⚡",e.ERROR_6="☠️ "}(g||(g={})),function(e){e.INBOUND="INBOUND",e.OUTBOUND="OUTBOUND"}(h||(h={})),function(e){e.PROXY="proxy",e.MOCK="mock"}(f||(f={}));const v=(0,d.resolve)((0,p.homedir)(),".local-traffic.json"),y=(0,d.resolve)((0,u.cwd)(),u.argv.slice(-1)[0].endsWith(".json")?u.argv.slice(-1)[0]:v),b=()=>{var e,t;return null!==(t=null===(e=u.hrtime.bigint)||void 0===e?void 0:e.call(u.hrtime))&&void 0!==t?t:(()=>{const e=(0,u.hrtime)();return 1e3*e[0]+e[1]/1e6})()},O=e=>{const t=new Date;return`${e?"":"[36m"}${`${t.getHours()}`.padStart(2,"0")}${e?":":"[33m:[36m"}${`${t.getMinutes()}`.padStart(2,"0")}${e?":":"[33m:[36m"}${`${t.getSeconds()}`.padStart(2,"0")}${e?"":"[0m"}`},k=function(e,n){return t(this,void 0,void 0,(function*(){var t,o,r,s,i,a,l;const d=n.map((e=>e.map((e=>e.text.replace(/⎸/g,"|").replace(/⎹/g,"|").replace(/\u001b\[[^m]*m/g,"").replace(new RegExp(g.INBOUND,"g"),"inbound:").replace(new RegExp(g.PORT,"g"),"port:").replace(new RegExp(g.OUTBOUND,"g"),"outbound:").replace(new RegExp(g.RULES,"g"),"rules:").replace(new RegExp(g.NO,"g"),"").replace(new RegExp(g.REWRITE,"g"),"+rewrite").replace(new RegExp(g.WEBSOCKET,"g"),"websocket").replace(new RegExp(g.SHIELD,"g"),"web-security").replace(new RegExp(g.MOCKS,"g"),"mocks").replace(new RegExp(g.STRICT_MOCKS,"g"),"mocks (strict)").replace(new RegExp(g.AUTO_RECORD,"g"),"auto record").replace(new RegExp(g.LOGS,"g"),"logs").replace(new RegExp(g.RESTART,"g"),"restart").replace(new RegExp(g.COLORED,"g"),"colored").replace(/\|+/g,"|"))).join(" | ")));if(null===(t=null==e?void 0:e.config)||void 0===t?void 0:t.simpleLogs)for(let t of d)console.log(`${O(null===(o=null==e?void 0:e.config)||void 0===o?void 0:o.simpleLogs)} | ${t}`);else for(let t of n){const n=t.map((e=>`[48;5;${e.color}m${e.text}`));console.log(`${O(null===(r=null==e?void 0:e.config)||void 0===r?void 0:r.simpleLogs)}${t.map((e=>{var t;return`[48;5;${e.color}m${"".padEnd((null!==(t=e.length)&&void 0!==t?t:64)+1)}`})).join("▐")}[0m`),yield new Promise((e=>u.stdout.moveCursor(-1e3,-1,(()=>e(void 0)))));let o=9;for(let e=0;e<n.length;e++)yield new Promise((e=>u.stdout.moveCursor(-1e3,0,(()=>u.stdout.moveCursor(o,0,(()=>e(void 0))))))),u.stdout.write(n[e]),o+=(null!==(s=t[e].length)&&void 0!==s?s:64)+2;console.log("[0m");for(let n of d)null===(i=null==e?void 0:e.notifyLogsListeners)||void 0===i||i.call(e,{event:n,level:(c=null!==(l=null===(a=null==t?void 0:t[0])||void 0===a?void 0:a.color)&&void 0!==l?l:m.INFO,c===m.ERROR?"error":c===m.WARNING?"warning":"info")})}var c}))},w=(e,t)=>{var n;const o=Array(4).fill(0).map((()=>t?Math.floor(256*Math.random()):0)),r=e.split("").map(((e,t)=>e.charCodeAt(0)^o[3&t])),s=e.length,i=t?128:0,a=e.length<126?Buffer.from(Uint8Array.from([129,i+s]).buffer):e.length<65535?Buffer.concat([Buffer.from(Uint8Array.from([129,126|i]).buffer),Buffer.from(Uint8Array.from([s>>8]).buffer),Buffer.from(Uint8Array.from([255&s]).buffer)]):Buffer.concat([Buffer.from(Uint8Array.from([129,127|i]).buffer),Buffer.concat((null!==(n=Number(s).toString(16).padStart(16,"0").match(/.{2}/g))&&void 0!==n?n:["0"]).map((e=>parseInt(e,16))).map((e=>Buffer.from(Uint8Array.from([e]).buffer))))]),l=Buffer.from(Int8Array.from(o).buffer),d=Buffer.from(Int8Array.from(r).buffer);return Buffer.concat(t?[a,l,d]:[a,d])};exports.createWebsocketBufferFrom=w;const R=(e,t)=>{var n;if(!(t||1&e.readUInt8(0)))return{payloadLength:0,mask:[0,0,0,0],body:""};const o=t?0:e.readUInt8(1),r=o>>7,s=127&o,i=t?t.payloadLength:127!==s?s:e.readUInt8(2)<<8+e.readUInt8(3),a=t?t.mask:r?Array(4).fill(0).map(((t,n)=>e.readUInt8(n+4))):[0,0,0,0],l=t?0:r?8:4,d=Array(e.length-l).fill(0).map(((t,n)=>String.fromCharCode(e.readUInt8(n+l)^a[3&n]))).join("");return{payloadLength:i,mask:a,body:(null!==(n=null==t?void 0:t.body)&&void 0!==n?n:"").concat(d)}};exports.readWebsocketBuffer=R;const E=(e,t)=>{const n=(0,c.createHash)("sha1");n.update(t+"258EAFA5-E914-47DA-95CA-C5AB0DC85B11");const o=n.digest("base64");e.allowHalfOpen=!0,e.write(`HTTP/1.1 101 Switching Protocols\r\ndate: ${(new Date).toUTCString()}\r\nconnection: upgrade\r\nupgrade: websocket\r\nserver: local\r\nsec-websocket-accept: ${o}\r\n\r\n`)};exports.acknowledgeWebsocket=E;const $=function(e){return S(e,this.configListeners)},x=function(e){const{response:t}=e,o=n(e,["response"]);return Promise.all([S(e,this.logsListeners.filter((e=>e.wantsResponseMessage))),S(o,this.logsListeners.filter((e=>!e.wantsResponseMessage)))])},S=(e,t)=>{if(!t.length)return;const n=JSON.stringify(e),o=new Set(t.map((e=>e.wantsMask))),r=o.has(!1)&&w(n,!1),s=o.has(!0)&&w(n,!0),i=e=>{e.stream.errored&&e.stream.destroy()};t.forEach((e=>{e.stream.closed||e.stream.errored||(e.wantsMask?e.stream.write(s,"ascii",(()=>i(e))):e.stream.write(r,"ascii",(()=>i(e))))}))},C=function(){var e,t;return[{color:52,text:`${g.PORT} ${(null!==(e=this.config.port)&&void 0!==e?e:"").toString()}`,length:11},{color:53,text:`${g.OUTBOUND} ${this.config.dontUseHttp2Downstream?"H1.1":"H/2 "}${this.config.replaceRequestBodyUrls?g.REWRITE:" "}`,length:11},{color:54,text:`${g.INBOUND} ${this.config.ssl?"H/2 ":"H1.1"}${this.config.replaceResponseBodyUrls?g.REWRITE:" "}`,length:11},{color:55,text:""+(this.mode===f.PROXY&&this.mockConfig.autoRecord?`${g.AUTO_RECORD}${this.mockConfig.mocks.size.toString().padStart(3)}`:this.mode===f.PROXY?`${g.RULES}${Object.keys(null!==(t=this.config.mapping)&&void 0!==t?t:{}).length.toString().padStart(3)}`:`${this.mockConfig.strict?g.STRICT_MOCKS:g.MOCKS}${this.mockConfig.mocks.size.toString().padStart(3)}`),length:7},{color:56,text:`${this.config.websocket?g.WEBSOCKET:g.NO}`,length:4},{color:57,text:`${this.config.simpleLogs?g.NO:g.COLORED}`,length:4},{color:93,text:`${this.config.disableWebSecurity?g.NO:g.SHIELD}`,length:4}]},I=function(){return t(this,void 0,void 0,(function*(){this.log([this.buildQuickStatus()]),this.notifyConfigListeners(this.config)}))};exports.quickStatus=I;const B=(e,t,n,o,r)=>`${W(128163,"error",e.message)}\n<p>An error happened while trying to proxy a remote exchange</p>\n<div class="alert alert-warning" role="alert">\nⓘ This is not an error from the downstream service.\n</div>\n<div class="alert alert-danger" role="alert">\n<pre><code>${e.stack||`<i>${e.name} : ${e.message}</i>`}${e.errno?`<br/>(code : ${e.errno})`:""}</code></pre>\n</div>\nMore information about the request :\n<table class="table">\n<tbody>\n<tr>\n<td>server mode</td>\n<td>${t}</td>\n</tr>\n<tr>\n<td>phase</td>\n<td>${n}</td>\n</tr>\n<tr>\n<td>requested URL</td>\n<td>${o}</td>\n</tr>\n<tr>\n<td>downstream URL</td>\n<td>${r||"<no-target-url>"}</td>\n</tr>\n</tbody>\n</table>\n</div></body></html>`,q=(e,t,n)=>`<table id="table-access" class="table table-striped" style="display: block; width: 100%; overflow-y: auto">\n<thead>\n<tr>\n<th scope="col"${!0===n.captureResponseBody?' style="min-width: 120px"':""}>...</th>\n<th scope="col">Date</th>\n<th scope="col">Level</th>\n<th scope="col">Protocol</th>\n<th scope="col">Method</th>\n<th scope="col">Status</th>\n<th scope="col">Duration</th>\n<th scope="col">Upstream Path</th>\n<th scope="col">Downstream Path</th>\n</tr>\n</thead>\n<tbody id="access">\n</tbody>\n</table>\n<table id="table-proxy" class="table table-striped" style="display: none; width: 100%; overflow-y: auto">\n<thead>\n<tr>\n<th scope="col">Date</th>\n<th scope="col">Level</th>\n<th scope="col">Message</th>\n</tr>\n</thead>\n<tbody id="proxy">\n</tbody>\n</table>\n<script type="text/javascript">\nfunction start() {\ndocument.getElementById('table-access').style.height =\n(document.documentElement.clientHeight - 150) + 'px';\nconst socket = new WebSocket("ws${t.ssl?"s":""}://${e}/local-traffic-logs${n.captureResponseBody?"?wantsResponseMessage=true":""}");\nsocket.onmessage = function(event) {\nlet data = event.data\nlet uniqueHash;\ntry {\nconst { uniqueHash: uniqueHash1, ...data1 } = JSON.parse(event.data);\ndata = data1;\nuniqueHash = uniqueHash1;\n} catch(e) { }\nif (document.getElementById('mock-mode')?.checked) return;\nif (${!0===n.captureResponseBody} && \ndata?.downstreamPath?.startsWith('recorder://') &&\n!data?.upstreamPath?.endsWith('?forceLogInRecorderPage=true'))\nreturn;\nconst time = new Date().toISOString().split('T')[1].replace('Z', '');\nconst actions = getActionsHtmlText(uniqueHash, data.response);\nif(data.statusCode && uniqueHash) {\nconst color = getColorFromStatusCode(data.statusCode);\nconst statusCodeColumn = document.querySelector("#event-" + data.randomId + " .statusCode");\nif (statusCodeColumn)\nstatusCodeColumn.innerHTML = '<span class="badge bg-' + color + '">' + data.statusCode + '</span>';\n\nconst durationColumn = document.querySelector("#event-" + data.randomId + " .duration");\nif (durationColumn) {\nconst duration = data.duration > 10000 ? Math.floor(data.duration / 1000) + 's' :\ndata.duration + 'ms';\ndurationColumn.innerHTML = duration;\n}\n\nconst protocolColumn = document.querySelector("#event-" + data.randomId + " .protocol");\nif (protocolColumn) {\nprotocolColumn.innerHTML = data.protocol;\n}\n\nconst replayColumn = document.querySelector("#event-" + data.randomId + " .replay");\nif (replayColumn) {\nreplayColumn.innerHTML = actions;\n}\n} else if (uniqueHash) {\naddNewRequest(data.randomId, actions, time, data.level, data.protocol, data.method, \n'<span class="badge bg-secondary">...</span>', '⏱',\ndata.upstreamPath, data.downstreamPath);\n} else if(data.event) {\ndocument.getElementById("proxy")\n.insertAdjacentHTML('afterbegin', '<tr><td scope="col">' + time + '</td>' +\n'<td scope="col">' + (data.level || 'info')+ '</td>' + \n'<td scope="col">' + data.event + '</td></tr>');\n}\ncleanup();\n};\nsocket.onerror = function(error) {\nconsole.log(\`[error] \${JSON.stringify(error)}\`);\nsetTimeout(start, 5000);\n};\n};\nfunction show(id) {\n[...document.querySelectorAll('table')].forEach((table, index) => {\ntable.style.display = index === id ? 'block': 'none'\n});\n[...document.querySelectorAll('.navbar-nav .nav-item .nav-link')].forEach((link, index) => {\nif (index === id) { link.classList.add('active') } else link.classList.remove('active');\n});\n}\nfunction remove(event) {\nevent.target.closest('tr').remove();\nif (window.updateState) window.updateState();\n}\nfunction cleanup() {\nconst currentLimit = parseInt(document.getElementById('limit').value)\nfor (let table of ['access', 'proxy']) {\nwhile (currentLimit && document.getElementById(table).childNodes.length && \ndocument.getElementById(table).childNodes.length > currentLimit) {\n[...document.getElementById(table).childNodes].slice(-1)[0].remove();\n}\n}\n}\nfunction replay(event) {\nconst uniqueHash = event.target.dataset.uniquehash;\nconst { method, url, headers, body } = JSON.parse(atob(uniqueHash));\nfetch(url, {\nmethod,\nheaders,\nbody: !body || !body.length ? undefined : atob(body)\n});\n}\nfunction getActionsHtmlText(uniqueHash, response) {\nconst edit = ${!0===n.captureResponseBody} && uniqueHash\n? '<button data-response="' + (response ?? "") +\n'" data-uniquehash="' + uniqueHash + \n'" data-bs-toggle="modal" data-bs-target="#edit-request" type="button" ' +\n'class="btn btn-primary">📝</button>'\n: ''\nconst remove = ${!0===n.captureResponseBody} && uniqueHash\n? '<button onclick="javascript:remove(event)" type="button" ' +\n'class="btn btn-primary">❌</button>'\n: ''\nconst replay = ${!1===n.captureResponseBody} && uniqueHash ? '<button data-response="' + \nbtoa(JSON.stringify(response ?? {})) +\n'" data-uniquehash="' + uniqueHash + '" onclick="javascript:replay(event)" ' +\n'type="button" class="btn btn-primary">🔁</button>' : '';\nreturn edit + replay + remove\n}\nfunction addNewRequest(\nrandomId, actions, time, level, protocol, method, \nstatusCode, duration, upstreamPath, downstreamPath\n) {\ndocument.getElementById("access")\n.insertAdjacentHTML('afterbegin', '<tr id="event-' + randomId + '">' +\n'<td scope="col" class="replay">' + actions + '</td>' +\n'<td scope="col">' + time + '</td>' +\n'<td scope="col">' + (level || 'info')+ '</td>' + \n'<td scope="col" class="protocol">' + protocol + '</td>' + \n'<td scope="col" class="method">' + method + '</td>' + \n'<td scope="col" class="statusCode">' + statusCode + '</td>' +\n'<td scope="col" class="duration text-end">' + duration + '</td>' +\n'<td scope="col" class="upstream-path">' + upstreamPath + '</td>' + \n'<td scope="col">' + downstreamPath + '</td>' + \n'</tr>');\n}\nfunction getColorFromStatusCode(statusCode) {\nreturn Math.floor(statusCode / 100) === 1 ? "info" :\nMath.floor(statusCode / 100) === 2 ? "success" :\nMath.floor(statusCode / 100) === 3 ? "dark" :\nMath.floor(statusCode / 100) === 4 ? "warning" :\nMath.floor(statusCode / 100) === 5 ? "danger" :\n"secondary";\n}\nwindow.addEventListener("DOMContentLoaded", start);\n<\/script>`,N=(e,t,n)=>{let o={};try{o=JSON.parse(t.toString("ascii"))}catch(e){}if("object"!=typeof o||Object.keys(o).filter((e=>!["strict","mode","mocks","autoRecord"].includes(e))).length||!Array.isArray(o.mocks)&&void 0!==o.mocks)return void e.log([[{text:`${g.MOCKS} invalid mocks update received`,color:m.WARNING}]]);const{mocks:r,mode:s,strict:i,autoRecord:a}=o,l=r?new Map(r.map((({response:t,uniqueHash:n})=>[z(e.config,n),t]))):null,d=s!==e.mode&&s===f.PROXY,c=(!d||!0===a)&&(null!=a?a:e.mockConfig.autoRecord),u=void 0!==c&&c!=e.mockConfig.autoRecord,p=s!==e.mode&&s===f.MOCK||null!==l&&e.mockConfig.mocks.size!==l.size,h=null!=i?i:e.mockConfig.strict,v=null!=s?s:e.mode,y=!!h!=!!e.mockConfig.strict,b=n;ee(e,b?{mode:v,mockConfig:{autoRecord:!1,strict:h,mocks:new Map}}:{mode:v,mockConfig:{strict:h,autoRecord:c,mocks:null!=l?l:e.mockConfig.mocks}}),setTimeout((()=>{var t;return e.log([d?[{text:`${g.RULES} ${Object.keys(null!==(t=e.config.mapping)&&void 0!==t?t:{}).length.toString().padStart(5)} loaded mapping rules`,color:m.INFO}]:null,p?[{text:`${h?g.STRICT_MOCKS:g.MOCKS} ${(null!=l?l:e.mockConfig.mocks).size.toString().padStart(5)} loaded mocks`,color:m.INFO}]:null,y?[{text:`${h?g.STRICT_MOCKS:g.MOCKS} mocks strict mode : ${null!=h?h:e.mockConfig.strict}`,color:m.INFO}]:null,u?[{text:`${v===f.PROXY?g.AUTO_RECORD:h?g.STRICT_MOCKS:g.MOCKS} mocks auto-record : ${c}`,color:m.INFO}]:null,d||p||u||y||b?e.buildQuickStatus():null].filter((e=>e)))}),1)};exports.recorderHandler=N;const T=(e,n,o,i,a,l,d,c,u)=>t(void 0,void 0,void 0,(function*(){const t={hostname:e.hostname,path:i,port:e.port?e.port:"https:"===e.protocol?443:80,protocol:e.protocol,rejectUnauthorized:!1,method:a.method,headers:Object.assign(Object.assign({},Object.assign({},...Object.entries(l).filter((([e])=>!e.startsWith(":")&&"transfer-encoding"!==e.toLowerCase())).map((([e,t])=>({[e]:t}))))),{host:e.hostname})};let p=null;const m=p||[...L].includes(e.protocol)?null:yield new Promise((i=>{const l="https:"===e.protocol?(0,s.request)(t,i):(0,r.request)(t,i);l.on("error",(e=>{p=Buffer.from(B(e,u,"request",n,o)),i(null)})),c&&(l.write(d),l.end()),c||(a.on("data",(e=>l.write(e))),a.on("end",(()=>l.end())))}));if(p)throw p;return{alpnProtocol:"HTTP1.1",error:null,data:null,hasRun:!1,events:{},on:function(e,t){return"response"===e?null==t?void 0:t(Object.assign(Object.assign({},m.headers),{":status":m.statusCode,":statusmessage":m.statusMessage})):m.on(e,t)},end:function(){return this},request:function(){return this},write:function(){return this}}})),j={logs:(e,t)=>J(`${W(128250,"logs","")}\n<nav class="navbar navbar-expand-lg navbar-dark bg-primary nav-fill">\n<div class="container-fluid">\n<ul class="navbar-nav">\n<li class="nav-item">\n<a class="nav-link active" aria-current="page" href="javascript:show(0)">Access</a>\n</li>\n<li class="nav-item">\n<a class="nav-link" href="javascript:show(1)">Proxy</a>\n</li>\n</ul>\n<span class="navbar-text">\nLimit : <select id="limit" onchange="javascript:cleanup()"><option value="-1">0 (clear)</option><option value="10">10</option>\n<option value="50">50</option><option value="100">100</option><option value="200">200</option>\n<option selected="selected" value="500">500</option><option value="0">Infinity (discouraged)</option>\n</select> rows\n</span>\n</div>\n</nav>\n${q(e,t.config,{captureResponseBody:!1})}\n</body></html>`),config:(e,t)=>J(`${W(127899,"config","")}\n<link href="${M}jsoneditor/dist/jsoneditor.min.css" rel="stylesheet" type="text/css">\n<script src="${M}jsoneditor/dist/jsoneditor.min.js"><\/script>\n<script src="${M}node-forge/dist/forge.min.js"><\/script>\n<div id="ssl-modal" class="modal" tabindex="-1" role="dialog">\n<div class="modal-dialog" role="document">\n<div class="modal-content">\n<div class="modal-header">\n<h5 class="modal-title">SSL keypair generation in progress</h5>\n</div>\n<div class="modal-body">\n<p>Wait a few seconds or move your mouse to increase the entropy.</p>\n</div>\n</div>\n</div>\n</div>\n<div id="jsoneditor" style="width: 400px; height: 400px;"></div>\n<script>\n// create the editor\nconst container = document.getElementById("jsoneditor")\nconst options = {mode: "code", allowSchemaSuggestions: true, schema: {\ntype: "object",\nproperties: {\n${Object.entries(Object.assign(Object.assign({},A),{ssl:{cert:"",key:""}})).map((([e,t])=>`${e}: {type: ${"unwantedHeaderNamesInMocks"===e?'"array","items": {"type":"string"}':"number"==typeof t?'"integer"':"string"==typeof t?'"string"':"boolean"==typeof t?'"boolean"':'"object"'}}`)).join(",\n ")}\n},\nrequired: [],\nadditionalProperties: false\n}}\n\nfunction save() {\nsocket.send(JSON.stringify(editor.get()));\n}\n\nfunction generateSslCertificate() {\nconst sslModal = new bootstrap.Modal(document.getElementById('ssl-modal'), {});\nsslModal.show()\nsetTimeout(function() {\nconst keypair = forge.pki.rsa.generateKeyPair(2048);\nconst certificate = forge.pki.createCertificate();\nconst now = new Date();\nconst fiveYears = new Date(new Date(now).setFullYear(now.getFullYear() + 5));\nObject.assign(certificate, {\npublicKey: keypair.publicKey,\nserialNumber: "01",\nvalidity: {\nnotBefore: now,\nnotAfter: fiveYears,\n},\n});\ncertificate.sign(keypair.privateKey, forge.md.sha256.create());\nconst key = forge.pki.privateKeyToPem(keypair.privateKey);\nconst cert = forge.pki.certificateToPem(certificate);\nconst existingConfig = editor.get();\neditor.set({ ...existingConfig, ssl: { key, cert },\nport: parseInt(("" + existingConfig.port).replace(/(80|[0-9])80$/, '443'))\n});\nsslModal.hide();\n}, 100);\n}\n\nconst editor = new JSONEditor(container, options);\nlet socket;\nconst initialJson = ${JSON.stringify(t.config)}\neditor.set(initialJson)\neditor.validate();\neditor.aceEditor.commands.addCommand({\nname: 'save',\nbindKey: {win: 'Ctrl-S', mac: 'Command-S'},\nexec: save,\n});\n\nwindow.addEventListener("DOMContentLoaded", function() {\ndocument.getElementById('jsoneditor').style.height =\n(document.documentElement.clientHeight - 150) + 'px';\ndocument.getElementById('jsoneditor').style.width =\nparseInt(window.getComputedStyle(\ndocument.querySelector('.container')).maxWidth) + 'px';\nconst sslButton = document.createElement('button');\nsslButton.addEventListener("click", generateSslCertificate);\nsslButton.type="button";\nsslButton.classList.add("btn");\nsslButton.classList.add("btn-primary");\nsslButton.innerHTML="🔒";\ndocument.querySelector('.jsoneditor-menu')\n.appendChild(sslButton);\nconst saveButton = document.createElement('button');\nsaveButton.addEventListener("click", save);\nsaveButton.type="button";\nsaveButton.classList.add("btn");\nsaveButton.classList.add("btn-primary");\nsaveButton.innerHTML="💾";\ndocument.querySelector('.jsoneditor-menu')\n.appendChild(saveButton);\nsocket = new WebSocket("ws${t.config.ssl?"s":""}://${e}/local-traffic-config");\nsocket.onmessage = function(event) {\neditor.set(JSON.parse(event.data))\neditor.validate()\n}\n});\n<\/script>\n</body></html>`),recorder:(e,t,n)=>{var o,r,s,i,a,l,d,c,u,p;return(null===(o=n.url)||void 0===o?void 0:o.endsWith("?forceLogInRecorderPage=true"))?J('{"ping":"pong"}',{contentType:"application/json; charset=utf-8"}):"GET"===n.method&&(null===(s=null===(r=n.headers)||void 0===r?void 0:r.accept)||void 0===s?void 0:s.includes("application/json"))?J(JSON.stringify(Object.assign(Object.assign({},t.mockConfig),{mode:t.mode,mocks:[...t.mockConfig.mocks.entries()].map((([e,t])=>({uniqueHash:e,response:t})))})),{contentType:"application/json; charset=utf-8"}):["PUT","POST","DELETE"].includes(null!==(i=n.method)&&void 0!==i?i:"")?J('{"status": "acknowledged"}',{contentType:"application/json; charset=utf-8",onOutboundWrite:e=>N(t,e,"DELETE"===n.method)}):J(`${W(9210,"recorder","")}\n<link href="${M}jsoneditor/dist/jsoneditor.min.css" rel="stylesheet" type="text/css">\n<script src="${M}jsoneditor/dist/jsoneditor.min.js"><\/script>\n<script src="${M}pako/dist/pako.min.js"><\/script>\n<form>\n<div id="commands"${t.mockConfig.autoRecord?' style="filter:blur(8px)"':""}>\n<span>Mode : </span>\n<div class="btn-group" role="group" aria-label="Server Mode">\n<input type="radio" class="btn-check" name="server-mode" id="record-mode" autocomplete="off"${t.mode===f.PROXY?" checked":""}>\n<label class="btn btn-outline-primary" for="record-mode">⏺ Record</label>\n<input type="radio" class="btn-check" name="server-mode" id="mock-mode" autocomplete="off"${t.mode===f.MOCK?" checked":""}>\n<label class="btn btn-outline-primary" for="mock-mode">🌐 Mock</label>\n</div>\n<span>Actions : </span>\n<button type="button" class="btn btn-light" id="add-mock">➕ Mock from dummy request</button>\n<button type="button" class="btn btn-light" id="upload-mocks">📥 Upload mocks</button>\n<button type="button" class="btn btn-light" id="download-mocks">📦 Download mocks</button>\n<button type="button" class="btn btn-light" id="delete-mocks">🗑 Delete mocks</button>\n</div>\n<div class="row">\n<div class="col-lg" style="max-width: 200px">\n<div class="form-check form-switch" id="strict-mock-mode-form-control">\n<input class="form-check-input" type="checkbox" id="strict-mock-mode"${t.mockConfig.strict?' checked="checked"':""}>\n<label class="form-check-label" for="strict-mock-mode">Strict mock mode</label>\n</div>\n</div>\n<div class="col-lg" style="max-width: 200px">\n<div class="form-check form-switch">\n<input class="form-check-input" type="checkbox" id="auto-record-mode"${t.mockConfig.autoRecord?' checked="checked"':""}>\n<label class="form-check-label" for="auto-record-mode">Auto record mode</label>\n</div>\n</div>\n<div class="col-lg"> </div>\n</div>\n<input type="hidden" id="limit" value="0"/>\n<div class="modal fade" id="edit-request" tabindex="-1" \naria-labelledby="edit-request-label" aria-hidden="true">\n<div class="modal-dialog" style="max-width: 900px">\n<div class="modal-content">\n<div class="modal-header">\n<h1 class="modal-title fs-5" id="edit-request-label">Edit request to /</h1>\n<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>\n</div>\n<div class="modal-body">\n<div class="container">\n<div class="row">\n<div class="col-lg">\n<h2>Request :</h2>\n<div id="uniqueHash-editor" style="width: 400px; height: 400px;"></div>\n</div>\n<div class="col-lg">\n<h2>Response : </h2>\n<div id="response-editor" style="width: 400px; height: 400px;"></div>\n</div>\n</div>\n</div>\n</div>\n<div class="modal-footer">\n<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>\n<button type="button" class="btn btn-primary" onclick="javascript:saveRequest()">Save changes</button>\n</div>\n</div>\n</div>\n</div>\n<script>\nconst xmlOrJsonPrologsInBase64 = [\n"eyJ","PD94bWw=","PCFET0NUWVBF","PCFkb2N0eXBl","PGh0bWw","PEhUTUw","H4sIAAAAAAAA", "W3tc"\n];\nfunction getMocksData () {\nreturn JSON.stringify(\n[...document.querySelectorAll('button[data-uniqueHash]')].map(button => ({\nresponse: button.attributes['data-response']?.value,\nuniqueHash: button.attributes['data-uniqueHash']?.value}))\n)\n}\nfunction updateState () {\nfetch("http${t.config.ssl?"s":""}://${e}${null!==(d=null===(l=Object.entries(null!==(a=t.config.mapping)&&void 0!==a?a:{}).find((([e,t])=>{var n;return null===(n=null==t?void 0:t.toString())||void 0===n?void 0:n.startsWith("recorder:")})))||void 0===l?void 0:l[0])&&void 0!==d?d:"/recorder/"}", {\nmethod: 'PUT',\nheaders: { 'Content-Type': 'application/json' },\nbody: '{"strict":' + document.getElementById('strict-mock-mode').checked +\n',"autoRecord":' + document.getElementById('auto-record-mode').checked +\n',"mode":"' + \n(document.getElementById('mock-mode').checked ? "mock" : "proxy") + '"' +\n',"mocks":' + getMocksData() + '}'\n})\n}\nfunction loadMocks(mocksHashes) {\nconst time = new Date().toISOString().split('T')[1].replace('Z', '');\nlet mocks = [];\ntry {\nmocks = mocksHashes.map(mock => ({...mock, \nrequest: JSON.parse(atob(mock.uniqueHash)),\nresponse: JSON.parse(atob(mock.response))\n}));\n} catch(e) { }\nmocks.forEach(mock => {\nconst randomId = window.crypto.randomUUID();\nconst actions = getActionsHtmlText(mock.uniqueHash, mock.response);\naddNewRequest(randomId, actions, time, 'info', 'HTTP/2', mock.request.method, \n'<span class="badge bg-' + \ngetColorFromStatusCode(mock.response.status) + '">' + \nmock.response.status + \n'</span>', \n'0ms', mock.request.url, \n'N/A');\n});\n}\ndocument.getElementById('add-mock').addEventListener('click', () => {\nconst iframe = document.createElement('iframe');\niframe.style.display = 'none';\niframe.onload = function() { iframe.parentNode.removeChild(iframe); };\niframe.src = "http${t.config.ssl?"s":""}://${e}${null!==(p=null===(u=Object.entries(null!==(c=t.config.mapping)&&void 0!==c?c:{}).find((([e,t])=>{var n;return null===(n=null==t?void 0:t.toString())||void 0===n?void 0:n.startsWith("recorder:")})))||void 0===u?void 0:u[0])&&void 0!==p?p:"/recorder/"}?forceLogInRecorderPage=true";\ndocument.body.appendChild(iframe);\n});\ndocument.getElementById('upload-mocks').addEventListener('click', () => {\nconst time = new Date().toISOString().split('T')[1].replace('Z', '');\nconst fileInput = document.createElement('input');\nfileInput.type = "file";\nfileInput.multiple = "multiple";\nfileInput.onchange = function() {\nconst fileReader = new FileReader();\n[...fileInput.files].reduce((promise, file) =>\npromise.then(result => new Promise(resolve => {\nfileReader.readAsText(file);\nfileReader.onload = function(){\nresolve(result.concat(fileReader.result));\n};\n})), Promise.resolve([]))\n.then(files => files.flatMap(file => JSON.parse(file)))\n.catch(e => [])\n.then(mocks => loadMocks(mocks))\n.then(() => updateState());\n}\nfileInput.click();\n});\ndocument.getElementById('download-mocks').addEventListener('click', () => {\nconst link = document.createElement('a');\nlink.href = URL.createObjectURL(new Blob([getMocksData()], {\ntype: "application/json",\n}));\nlink.download = "mocks-" + new Date().toISOString() + ".json";\nlink.click();\nURL.revokeObjectURL(link.href);\n})\ndocument.getElementById('delete-mocks').addEventListener('click', () => {\ndocument.getElementById('limit').value = -1;\ncleanup();\nupdateState();\ndocument.getElementById('limit').value = 0;\n})\ndocument.getElementById('record-mode').addEventListener('change', () => {\ndocument.getElementById('limit').value = 0;\ncleanup();\nupdateState();\n})\ndocument.getElementById('mock-mode').addEventListener('change', () => {\nupdateState();\n})\ndocument.getElementById('auto-record-mode').addEventListener('change', (e) => { \nupdateState();\ndocument.getElementById('table-access').style.filter = \ndocument.getElementById('auto-record-mode').checked ? 'blur(8px)' : 'blur(0px)';\ndocument.getElementById('commands').style.filter = \ndocument.getElementById('auto-record-mode').checked ? 'blur(8px)' : 'blur(0px)';\ndocument.getElementById('alert-about-auto-record-mode').style.display = \ndocument.getElementById('auto-record-mode').checked ? 'block' : 'none';\ndocument.getElementById('strict-mock-mode-form-control').style.filter = \ndocument.getElementById('auto-record-mode').checked ? 'blur(8px)' : 'blur(0px)';\n\n})\ndocument.getElementById('strict-mock-mode').addEventListener('change', (e) => { \nupdateState();\n})\nfunction saveRequest () {\n$('#edit-request').modal("hide");\n\nconst requestBeingEdited = window.requestBeingEdited;\nlet request = uniqueHashEditor.get();\nlet response = responseEditor.get();\nif (typeof request.body === "object") {\nrequest.body = JSON.stringify(request.body);\n}\nif (typeof response.body === "object") {\nresponse.body = JSON.stringify(response.body);\n}\nconst oldRequest = JSON.parse(atob(requestBeingEdited.attributes['data-uniqueHash'].value));\nconst oldResponse = JSON.parse(atob(requestBeingEdited.attributes['data-response'].value));\nconst requestProlog = requestBeingEdited.attributes['data-requestProlog']?.value;\nconst responseProlog = requestBeingEdited.attributes['data-responseProlog']?.value;\nconst requestPrologHasChanged = request.body.substring(0, 10) !== oldRequest.body.substring(0, 10);\nconst responsePrologHasChanged = response.body.substring(0, 10) !== response.body.substring(0, 10);\nif (requestProlog === "H4sIAAAAAAAA" && !requestPrologHasChanged) {\nrequest.body =\nbtoa([...pako.gzip(request.body)].map(e => String.fromCharCode(e)).join(""));\n} else if ((requestProlog === null || !request.body.startsWith(requestProlog ?? "")) && \nrequest.body.substring(0, 10) !== oldRequest.body.substring(0, 10)) {\nrequest.body = btoa(request.body);\n}\nif (responseProlog === "H4sIAAAAAAAA" && !responsePrologHasChanged) {\nresponse.body =\nbtoa([...pako.gzip(response.body)].map(e => String.fromCharCode(e)).join(""));\n} else if ((responseProlog === null || !response.body.startsWith(responseProlog ?? "")) && \nresponse.body.substring(0, 10) !== oldResponse.body.substring(0, 10)) {\nresponse.body = btoa(response.body);\n}\nrequest = btoa(JSON.stringify(request));\nresponse = btoa(JSON.stringify(response));\nrequestBeingEdited.setAttribute('data-uniqueHash', request);\nrequestBeingEdited.setAttribute('data-response', response);\nconst row = requestBeingEdited.closest('tr');\nrow.querySelector("td.method").innerHTML = uniqueHashEditor.get().method;\nrow.querySelector("td.upstream-path").innerHTML = uniqueHashEditor.get().url;\nwindow.requestBeingEdited = undefined;\nupdateState();\n}\ndocument.getElementById('edit-request').addEventListener('show.bs.modal', event => {\nconst request = JSON.parse(atob(event.relatedTarget.attributes['data-uniqueHash'].value));\nconst response = JSON.parse(atob(event.relatedTarget.attributes['data-response'].value));\nconst requestProlog = xmlOrJsonPrologsInBase64.find(prolog => request.body?.startsWith(prolog));\nconst responseProlog = xmlOrJsonPrologsInBase64.find(prolog => response.body?.startsWith(prolog));\nif (requestProlog) {\nevent.relatedTarget.setAttribute('data-requestProlog', requestProlog);\nrequest.body = request.body.startsWith("H4sIAAAAAAAA") \n? pako.ungzip(new Uint8Array(atob(request.body).split("").map(e => e.charCodeAt(0))), {to: "string"})\n: atob(request.body);\nrequest.body = request.body.startsWith("{\\"") || request.body.startsWith("[{\\"")\n? JSON.parse(request.body) : request.body;\n}\nif (responseProlog) {\nevent.relatedTarget.setAttribute('data-responseProlog', responseProlog);\nresponse.body = response.body.startsWith("H4sIAAAAAAAA") \n? pako.ungzip(new Uint8Array(atob(response.body).split("").map(e => e.charCodeAt(0))), {to: "string"})\n: atob(response.body);\nresponse.body = response.body.startsWith("{\\"") || response.body.startsWith("[{\\"")\n? JSON.parse(response.body) : response.body;\n}\nwindow.requestBeingEdited = event.relatedTarget;\nwindow.uniqueHashEditor.set(request);\nwindow.responseEditor.set(response);\ndocument.getElementById('edit-request-label').innerText = "Edit request to " + request.url;\n})\n\nsetTimeout(() => {\nloadMocks(${JSON.stringify([...t.mockConfig.mocks.entries()].map((([e,t])=>({uniqueHash:e,response:t}))))});\nwindow.uniqueHashEditor = new JSONEditor(document.getElementById("uniqueHash-editor"), {\nmode: "code", allowSchemaSuggestions: true, schema: {\ntype: "object",\nproperties: {\nmethod: {type: "string"},\nurl: {type: "string"},\nbody: {oneOf: [{type:"string"},{type:"object"},{type:"array"}]},\nheaders: {type: "object"},\n},\nrequired: [],\nadditionalProperties: false\n}});\nwindow.responseEditor = new JSONEditor(document.getElementById("response-editor"), {\nmode: "code", allowSchemaSuggestions: true, schema: {\ntype: "object",\nproperties: {\nbody: {oneOf: [{type:"string"},{type:"object"},{type:"array"}]},\nheaders: {type: "object"},\nstatus: {type: "integer"}\n},\nrequired: [],\nadditionalProperties: false\n}});\n${t.mockConfig.autoRecord?";document.getElementById('strict-mock-mode-form-control').style.filter='blur(8px)';;document.getElementById('table-access').style.filter='blur(8px)';":""}\ndocument.forms[0].reset();\n}, 10)\n<\/script>\n</form>\n<div class="alert alert-warning" role="alert"\nstyle="display:${t.mockConfig.autoRecord?"block":"none"};left:20%;right:20%;position:absolute;z-index:1;" id="alert-about-auto-record-mode">\nⓘ Auto-record mode and recorder webapp are known to be mutually exclusive.\n<br/><br/>Changing the mocks on both sides is somehow hard to sort out.\n<br/>This is triggering concurrent modifications in the mock config.\n<hr/>\nHere is what you can do :\n<ul>\n<li>If you want to record mocks using a frontend app, turn off the auto-record mode.</li>\n<li>If you want to record mocks with the recorder API only, close this app.</li>\n</ul>\n</div>\n${q(e,t.config,{captureResponseBody:!0})}\n</body>\n</html>`)},file:(e,t,n,o)=>{const r=null==o?void 0:o.target,s=(0,d.resolve)("/",r.hostname,...r.pathname.replace(/[?#].*$/,"").replace(/^\/+/,"").split("/").map(decodeURIComponent));return{alpnProtocol:"file",error:null,data:null,hasRun:!1,run:function(){return this.hasRun?Promise.resolve():new Promise((e=>(0,a.readFile)(s,((t,n)=>{if(this.hasRun=!0,!t||"EISDIR"!==t.code)return this.error=t,this.data=n,void e(void 0);(0,a.readdir)(s,((t,n)=>{this.error=t,this.data=n,t?e(void 0):Promise.all(n.map((e=>new Promise((t=>(0,a.lstat)((0,d.resolve)(r.pathname,e),((n,o)=>t([e,o,n])))))))).then((t=>{const n=t.filter((e=>!e[2]&&e[1].isDirectory())).concat(t.filter((e=>!e[2]&&e[1].isFile())));this.data=`${W(128194,"directory",r.href)}<p>Directory content of <i>${r.href.replace(/\//g,"/")}</i></p><ul class="list-group"><li class="list-group-item">📁<a href="${r.pathname.endsWith("/")?"..":"."}"><parent></a></li>${n.filter((e=>!e[2])).map((e=>`<li class="list-group-item">&#x${(e[1].isDirectory()?128193:128196).toString(16)};<a href="${r.pathname.endsWith("/")?"":`${r.pathname.split("/").slice(-1)[0]}/`}${e[0]}">${e[0]}</a></li>`)).join("\n")}</li></ul></body></html>`,e(void 0)}))}))}))))},events:{},on:function(e,t){return this.events[e]=t,this.run().then((()=>{"response"===e&&this.events.response(s.endsWith(".svg")?{Server:"local","Content-Type":"image/svg+xml"}:{Server:"local"},0),"data"===e&&this.data&&(this.events.data(this.data),this.events.end()),"error"===e&&this.error&&this.events.error(this.error)})),this},end:function(){return this},request:function(){return this},write:function(){return this}}},data:(e,t,n,o)=>{var r,s,i,a,l,d;const[,c,u,p]=null!==(s=/^data:([^;,]*)?;?([^,]*)?,(.*)$/.exec(null!==(r=null==o?void 0:o.target.href)&&void 0!==r?r:"data:,"))&&void 0!==s?s:["","","",""],m=decodeURIComponent(p),g="base64"===u?Buffer.from(m,"base64url").toString("binary"):m;return J(t.config.replaceResponseBodyUrls?_(Buffer.from(g),{"content-type":c||"text/plain"},{mapping:null!==(i=t.config.mapping)&&void 0!==i?i:{},proxyHostnameAndPort:e,proxyHostname:null!==(a=null==o?void 0:o.proxyHostname)&&void 0!==a?a:"localhost",key:null!==(l=null==o?void 0:o.key)&&void 0!==l?l:"",direction:h.INBOUND,ssl:!!t.config.ssl,port:null!==(d=t.config.port)&&void 0!==d?d:null==A?void 0:A.port}):g,{contentType:c})}},P=Object.keys(j),L=P.map((e=>`${e}:`)),A={mapping:Object.assign({},...P.filter((e=>"data"!==e&&"file"!==e)).map((e=>({[`/${e}/`]:`${e}://`})))),port:8080,replaceRequestBodyUrls:!1,replaceResponseBodyUrls:!1,dontUseHttp2Downstream:!1,dontTranslateLocationHeader:!1,logAccessInTerminal:!1,simpleLogs:!1,websocket:!0,disableWebSecurity:!1,connectTimeout:3e3,socketTimeout:3e3,unwantedHeaderNamesInMocks:[]},H=(...e)=>t(void 0,[...e],void 0,(function*(e=!0){return new Promise((t=>(0,a.readFile)(y,((n,o)=>{n&&!e&&k(null,[[{text:`${g.ERROR_1} config error. Using default value`,color:m.ERROR}]]);let r=null;try{r=Object.assign({},A,JSON.parse((null!=o?o:"{}").toString()))}catch(e){return r=null!=r?r:Object.assign({},A),k({config:void 0},[[{text:`${g.ERROR_2} config syntax incorrect, ignoring`,color:m.ERROR}]]).then((()=>t(r)))}n&&"ENOENT"===n.code&&e&&y===v?(0,a.writeFile)(y,JSON.stringify(A,null,2),(e=>k(null,e?[[{text:`${g.ERROR_4} config file NOT created`,color:m.ERROR}]]:[[{text:`${g.COLORED} config file created`,color:m.INFO}]]).then((()=>t(r))))):t(r)}))))}));exports.load=H;const U=e=>""==e?"":(0,d.normalize)(e).replace(/\\/g,"/"),M="https://cdn.jsdelivr.net/npm/",D=["host","connection","keep-alive","upgrade","transfer-encoding","upgrade-insecure-requests","proxy-connection"],W=(e,t,n)=>`<!doctype html>\n<html lang="en">\n<head>\n<title>&#x${e.toString(16)}; local-traffic ${t} | ${n}</title>\n<link href="${M}bootstrap/dist/css/bootstrap.min.css" rel="stylesheet"/>\n<script src="${M}jquery/dist/jquery.min.js"><\/script>\n<script src="${M}bootstrap/dist/js/bootstrap.bundle.min.js"><\/script>\n</head>\n<body><div class="container"><h1>&#x${e.toString(16)}; local-traffic ${t}</h1>\n<br/>`,F=({response:e})=>({alpnProtocol:"mock",error:null,data:null,hasRun:!1,run:function(){return this.hasRun?Promise.resolve():new Promise((t=>{try{this.data=JSON.parse(Buffer.from(e,"base64").toString("utf-8"))}catch(e){this.data={}}t(void 0)}))},events:{},on:function(e,t){return this.events[e]=t,this.run().then((()=>{var t;"response"===e&&this.events.response(Object.assign(Object.assign({},this.data.headers),{"X-LocalTraffic-Mock":"1"}),this.data.status),"data"===e&&this.data&&(this.events.data(Buffer.from(null!==(t=this.data.body)&&void 0!==t?t:"","base64")),this.events.end()),"error"===e&&this.error&&this.events.error(this.error)})),this},end:function(){return this},request:function(){return this},write:function(){return this}}),J=(e,t)=>({alpnProtocol:"static",error:null,data:null,outboundData:null,run:function(){return"string"==typeof e?new Promise((t=>{this.data=e,t(void 0)})):e.then((e=>{this.data=e.toString("utf8")}))},events:{},on:function(e,n){return this.events[e]=n,this.run().then((()=>{var n;"response"===e&&this.events.response({Server:"local","Content-Type":null!==(n=null==t?void 0:t.contentType)&&void 0!==n?n:"text/html"},0),"data"===e&&this.data&&(this.events.data(this.data),this.events.end()),"error"===e&&this.error&&this.events.error(this.error)})),this},write:function(e){var n;return this.outboundData=e,e instanceof Buffer&&(null===(n=null==t?void 0:t.onOutboundWrite)||void 0===n||n.call(t,e)),this},end:function(){return this},request:function(){return this}}),_=(e,n,o)=>t(void 0,void 0,void 0,(function*(){var r,s;return(null!==(s=null===(r=n["content-encoding"])||void 0===r?void 0:r.toString())&&void 0!==s?s:"").split(",").reduce(((e,n)=>t(void 0,void 0,void 0,(function*(){const t=n.trim().toLowerCase(),o="gzip"===t||"x-gzip"===t?l.gunzip:"deflate"===t?l.inflate:"br"===t?l.brotliDecompress:"identity"===t||""===t?(e,t)=>{t(null,e)}:null;if(null===o)throw new Error(`${t} compression not supported by the proxy`);const r=yield e;return yield new Promise(((e,t)=>o(r,((n,o)=>{n&&t(n),e(o)}))))}))),Promise.resolve(e)).then((e=>{const t=e.length>1e7,r=["text/html","application/javascript","application/json"].some((e=>{var t;return(null!==(t=n["content-type"])&&void 0!==t?t:"").toString().includes(e)}));return!t&&(r||!/[^\x00-\xFF]/.test(e.toString()))?K(e.toString(),{direction:o.direction,proxyHostnameAndPort:o.proxyHostnameAndPort,ssl:o.ssl,mapping:o.mapping}).replace(/\?protocol=wss?%3A&hostname=[^&]+&port=[0-9]+&pathname=/g,`?protocol=ws${o.ssl?"s":""}%3A&hostname=${o.proxyHostname}&port=${o.port}&pathname=${encodeURIComponent(o.key.replace(/\/+$/,""))}`):e})).then((e=>{var t,o;return(null!==(o=null===(t=n["content-encoding"])||void 0===t?void 0:t.toString())&&void 0!==o?o:"").split(",").reverse().reduce(((e,t)=>{const n=t.trim().toLowerCase(),o="gzip"===n||"x-gzip"===n?l.gzip:"deflate"===n?l.deflate:"br"===n?l.brotliCompress:"identity"===n||""===n?(e,t)=>{t(null,e)}:null;if(null===o)throw new Error(`${n} compression not supported by the proxy`);return e.then((e=>new Promise((t=>o(e,((e,n)=>{if(e)throw e;t(n)}))))))}),Promise.resolve(Buffer.from(e)))}))}));exports.replaceBody=_;const K=(e,{direction:t,proxyHostnameAndPort:n,ssl:o,mapping:r})=>Object.entries(r).map((([e,t])=>[e,"string"==typeof t?t:t.replaceBody])).reduce(((e,[r,s])=>L.some((e=>s.startsWith(e)))||""!==r&&!r.match(/^[-a-zA-Z0-9()@:%_\+.~#?&//=]*$/)?e:t===h.INBOUND?e.replace(new RegExp(s.replace(new RegExp(`^(${P.join("|")})://`),"").replace(/[*+?^${}()|[\]\\]/g,"").replace(/^https/,"https?")+"/*","ig"),`http${o?"s":""}://${n}${r.replace(/\/+$/,"")}/`):e.split(`http${o?"s":""}://${n}${r.replace(/\/+$/,"")}`).join(s)),e).split(`${n}/:`).join(`${n}:`);exports.replaceTextUsingMapping=K;const z=(e,t)=>{try{const n="object"==typeof t?t:JSON.parse(Buffer.from(t,"base64").toString("utf-8"));return["access-control-max-age","authorization","cache-control","cookie","date","dnt","expires","if-modified-since","if-unmodified-since","keep-alive","last-modified","pragma","proxy-authenticate","proxy-authorization","referer","retry-after","signed-headers","server-timing","sec-ch-ua","sec-ch-ua-mobile","sec-ch-ua-platform","sec-fetch-dest","sec-fetch-mode","sec-fetch-site","sec-fetch-user","upgrade-insecure-requests","user-agent",...Array.isArray(e.unwantedHeaderNamesInMocks)?e.unwantedHeaderNamesInMocks:[]].forEach((e=>{var t;null===(t=null==n?void 0:n.headers)||void 0===t||delete t[e]})),n.headers=Object.keys(n.headers).sort().reduce(((e,t)=>(e[t]=n.headers[t],e)),{}),Buffer.from(JSON.stringify(n),"utf-8").toString("base64")}catch(e){return t}};exports.cleanEntropy=z;const G=(e,t,n)=>{t.writeHead(e,{"content-type":"text/html","content-length":n.length}),t.end(n)};exports.send=G;const Y=(e,t)=>{var n,o,r,s,a,l,d,c;const u=(null!==(r=null!==(o=null===(n=e.headers[":authority"])||void 0===n?void 0:n.toString())&&void 0!==o?o:e.headers.host)&&void 0!==r?r:"localhost").replace(/:.*/,""),p=e.headers[":authority"]||`${e.headers.host}${(null!==(s=e.headers.host)&&void 0!==s?s:"").match(/:[0-9]+$/)?"":80!==t.port||t.ssl?443===t.port&&t.ssl?"":`:${null!==(a=t.port)&&void 0!==a?a:8080}`:""}`,m=new i.URL(`http${t.ssl?"s":""}://${p}${null!==(l=e.url)&&void 0!==l?l:""}`),g=m.href.substring(m.origin.length),h=Object.assign({},Object.assign({},...Object.entries(null!==(d=t.mapping)&&void 0!==d?d:{}).map((([e,t])=>{var n,o;const r="string"==typeof t?t:null!==(n=null==t?void 0:t.downstreamUrl)&&void 0!==n?n:"";return{[e]:new i.URL((null===(o=null==r?void 0:r.startsWith)||void 0===o?void 0:o.call(r,"data:"))?r:U(r))}}))));let f=null;const[v,y]=null!==(c=Object.entries(h).find((([e])=>{var t;return f=null!==(t=g.match(RegExp(e.replace(/^\//,"^/"))))&&void 0!==t?t:null})))&&void 0!==c?c:["/"],b=f&&y?new i.URL(y.href.replace(/\$\$(\d+)/g,((e,t)=>f[parseInt(t)]))):null;return{proxyHostname:u,proxyHostnameAndPort:p,url:m,path:g,key:v,target:b}};exports.determineMapping=Y;const X=function(e,t,n){var o,a,l,d,c,u,p,h,f,v;if(n.on("error",(()=>{e.log([[{text:`${g.WEBSOCKET} websocket connection reset`,color:m.WARNING}]])})),!e.config.websocket)return n.end("HTTP/1.1 503 Service Unavailable\r\n\r\n"),{};const{key:y,target:b,path:O,url:k}=Y(t,e.config);if(O.startsWith("/local-traffic-logs"))return E(n,null!==(o=t.headers["sec-websocket-key"])&&void 0!==o?o:""),{logsListeners:e.logsListeners.concat({stream:n,wantsMask:!(null!==(l=null===(a=t.headers["user-agent"])||void 0===a?void 0:a.toString())&&void 0!==l?l:"").includes("Chrome"),wantsResponseMessage:[...k.searchParams.entries()].some((([e,t])=>"wantsResponseMessage"===e&&"true"===t))})};if("/local-traffic-config"===O){E(n,null!==(d=t.headers["sec-websocket-key"])&&void 0!==d?d:"");let o=null;return n.on("data",(t=>{const n=R(t,o);if(null===o&&n.body.length<n.payloadLength)o=n;else{if(n.body.length>=n.payloadLength&&0===n.body.length)return{};if(n.body.length>=n.payloadLength){let t;o=null;try{t=JSON.parse(n.body)}catch(t){return e.log([[{text:`${g.ERROR_4} config file NOT read, try again later`,color:m.WARNING}]]),{}}ee(e,{pendingConfigSave:t})}}})),{configListeners:e.configListeners.concat({stream:n,wantsMask:!(null!==(u=null===(c=t.headers["user-agent"])||void 0===c?void 0:c.toString())&&void 0!==u?u:"").includes("Chrome")})}}const w=new i.URL(`${null!==(p=null==b?void 0:b.protocol)&&void 0!==p?p:"https"}//${null!==(h=null==b?void 0:b.host)&&void 0!==h?h:"localhost"}${null===(v=null===(f=t.url)||void 0===f?void 0:f.replace(new RegExp(`^${y}`,"g"),b.pathname))||void 0===v?void 0:v.replace(/^\/*/,"/")}`),$={hostname:w.hostname,path:w.pathname,port:w.port,protocol:w.protocol,rejectUnauthorized:!1,method:t.method,headers:Object.assign(Object.assign({},t.headers),{host:w.hostname,origin:w.origin}),host:w.hostname},x="https:"===w.protocol?(0,s.request)($):(0,r.request)($);return x.end(),x.on("error",(t=>{e.log([[{text:`${g.WEBSOCKET} websocket request has errored ${t.errno?`(${t.errno})`:""}`,color:m.WARNING}]])})),x.on("upgrade",((t,o)=>{const r=`HTTP/${t.httpVersion} ${t.statusCode} ${t.statusMessage}\r\n${Object.entries(t.headers).flatMap((([e,t])=>(Array.isArray(t)?t:[t]).map((t=>[e,t])))).map((([e,t])=>`${e}: ${t}\r\n`)).join("")}\r\n`;n.write(r),n.allowHalfOpen=!0,o.allowHalfOpen=!0,o.on("data",(e=>n.write(e))),n.on("data",(e=>o.write(e))),o.on("error",(t=>{e.log([[{text:`${g.WEBSOCKET} downstream socket has errored ${t.errno?`(${t.errno})`:""}`,color:m.WARNING}]])})),n.on("error",(t=>{e.log([[{text:`${g.WEBSOCKET} upstream socket has errored ${t.errno?`(${t.errno})`:""}`,color:m.WARNING}]])}))})),{}};exports.websocketServe=X;const Z=function(e,n,r){return t(this,void 0,void 0,(function*(){var s,a,l,d,p,v,O,k,w,R,E,$,x,S,C,I,q,N,P,H,M,W,J,X,Z,Q,V,ee;if(!n.headers.host&&!n.headers[":authority"])return void G(400,r,Buffer.from(B(new Error("client must supply a 'host' header"),e.mode,"proxy",new i.URL(`http${e.config.ssl?"s":""}://unknowndomain${n.url}`))));const{proxyHostname:te,proxyHostnameAndPort:ne,url:oe,path:re,key:se,target:ie}=Y(n,e.config),ae=null!=ie?ie:e.mode===f.MOCK?new i.URL(`http${e.config.ssl?"s":""}://${ne}/`):null;if(!ae)return void G(502,r,Buffer.from(B(new Error(`No mapping found in config file ${y}`),e.mode,"proxy",oe)));const le="data:"===ae.protocol?"":"//",de=ae.host.replace(RegExp(/\/+$/),""),ce=ae.href.substring(`${ae.protocol}${le}`.length+ae.host.length),ue="file:"===ae.protocol||"data:"===ae.protocol?ce:`${ce}${U(re.replace(RegExp(U(se)),""))}`.replace(/^\/*/,"data:"===ae.protocol?"":"/"),pe=new i.URL(`${ae.protocol}${le}${de}${ue}`),me=L.some((e=>ae.protocol===e)),ge=(0,c.randomBytes)(20).toString("hex");let he=null;const fe=e.config.replaceRequestBodyUrls||!!e.logsListeners.length;e.config.ssl&&(yield new Promise((e=>setTimeout(e,1))));const ve=parseInt(null!==(s=n.headers["content-length"])&&void 0!==s?s:"0")>0,ye=!!(null==n?void 0:n.readableLength)||ve,be=!!(null==n?void 0:n.stream)&&ve,Oe=!((e.config.ssl&&!1===be||!e.config.ssl&&!1===ye)&&("0"===n.headers["content-length"]||void 0===n.headers["content-length"]));if(fe){const t=null!==(a=null==n?void 0:n.stream)&&void 0!==a?a:n;let o=Buffer.from([]);yield Promise.race([new Promise((t=>setTimeout(t,e.config.connectTimeout))),new Promise((e=>{Oe?(t.on("data",(e=>{o=Buffer.concat([o,e])})),t.on("end",e),t.on("error",e)):e(void 0)}))]),Oe&&!o.length&&(yield e.log([[{text:`${g.ERROR_4} body replacement error ${re.slice(-17)}`,color:m.WARNING}]])),he=e.config.replaceRequestBodyUrls?yield _(o,n.headers,{proxyHostnameAndPort:ne,proxyHostname:te,key:se,mapping:null!==(l=e.config.mapping)&&void 0!==l?l:{},port:null!==(d=e.config.port)&&void 0!==d?d:A.port,ssl:!!e.config.ssl,direction:h.OUTBOUND}):o}const ke=e.logsListeners.some((e=>e.wantsResponseMessage)),we=e.mockConfig.autoRecord&&e.mode===f.PROXY,Re=z(e.config,{method:null!==(p=n.method)&&void 0!==p?p:"GET",url:null!==(v=n.url)&&void 0!==v?v:"",headers:Object.assign({},...Object.entries(n.headers).filter((([e])=>!e.startsWith(":"))).map((([e,t])=>({[e]:t})))),body:(e.mode===f.MOCK||ke||we)&&null!==(O=null==he?void 0:he.toString("base64"))&&void 0!==O?O:""});e.config.logAccessInTerminal&&!pe.pathname.startsWith("/:/")&&(yield e.log([[{color:"GET"===n.method?22:"POST"===n.method?52:"PUT"===n.method?94:"DELETE"===n.method?244:"OPTIONS"===n.method?19:"PATCH"===n.method?162:"HEAD"===n.method?53:"TRACE"===n.method?6:"CONNECT"===n.method?2:0,text:(null!==(k=n.method)&&void 0!==k?k:"GET").toString(),length:null===(w=n.method)||void 0===w?void 0:w.length},{color:8,text:pe.pathname.toString().padStart(62-(null!==(E=null===(R=n.method)||void 0===R?void 0:R.length)&&void 0!==E?E:3)).substring(0,62-(null!==(x=null===($=n.method)||void 0===$?void 0:$.length)&&void 0!==x?x:3)),length:62-(null!==(C=null===(S=n.method)||void 0===S?void 0:S.length)&&void 0!==C?C:3)}]]));const Ee=e.mode===f.MOCK&&!me,$e=Ee?null!==(I=e.mockConfig.mocks.get(Re))&&void 0!==I?I:null===(q=Array.from(e.mockConfig.mocks.entries()).filter((([t])=>{var n;const o=JSON.parse(Buffer.from(Re,"base64").toString("ascii")),r=JSON.parse(Buffer.from(t,"base64").toString("ascii"));return r.method===o.method&&r.url===o.url&&(!r.body||r.body===o.body)&&Object.entries(null!==(n=r.headers)&&void 0!==n?n:{}).every((([t,n])=>{var r,s,i,a;return!n||(null===(i=null===(s=null===(r=e.config)||void 0===r?void 0:r.unwantedHeaderNamesInMocks)||void 0===s?void 0:s.includes)||void 0===i?void 0:i.call(s,t))||(null===(a=o.headers)||void 0===a?void 0:a[t])===n}))})).sort((([e],[t])=>{var n,o;const r=JSON.parse(Buffer.from(t,"base64").toString("ascii")),s=JSON.parse(Buffer.from(e,"base64").toString("ascii")),i=r.body?1:0,a=s.body?1:0;return Object.keys(null!==(n=r.headers)&&void 0!==n?n:{}).length+i-Object.keys(null!==(o=s.headers)&&void 0!==o?o:{}).length-a}))[0])||void 0===q?void 0:q[1]:null;if(Ee&&!$e&&e.mockConfig.strict)return void G(502,r,Buffer.from(B(new Error("No corresponding mock found in the server. \nTry switching back to the proxy mode"),e.mode,"mock",oe)));let xe=null;const Se=b(),Ce=Object.assign(Object.assign({},[...Object.entries(n.headers)].filter((([e])=>!D.includes(e.toLowerCase()))).reduce(((e,[t,n])=>(e[t]=(e[t]||"")+(Array.isArray(n)?n:[n]).map((e=>null==e?void 0:e.replace(oe.hostname,de))).join(", "),e)),{})),{origin:ae.href,referer:pe.toString(),"content-length":null!==(P=null!==(N=null==he?void 0:he.length)&&void 0!==N?N:n.headers["content-length"])&&void 0!==P?P:0,":authority":de,":method":n.method,":path":ue,":scheme":ae.protocol.replace(":","")}),Ie=Ee&&$e?F({response:$e}):me?j[ae.protocol.replace(/:$/,"")](ne,e,n,{target:pe,proxyHostname:te,key:se}):yield((e,n,r)=>t(void 0,void 0,void 0,(function*(){var e,t;let s=null,i="https:"===(null===(e=null==r?void 0:r.target)||void 0===e?void 0:e.protocol)&&!n.config.dontUseHttp2Downstream;const a=i?n.mode!==f.PROXY&&(null===(t=null==n?void 0:n.mockConfig)||void 0===t?void 0:t.strict)?null:yield Promise.race([new Promise((e=>{const t=(0,o.connect)(r.target,{timeout:n.config.connectTimeout,sessionTimeout:n.config.socketTimeout,rejectUnauthorized:!1,protocol:r.target.protocol},((n,o)=>{i=i&&!!o.alpnProtocol,e(i?t:null)}));t.on("error",(e=>{s=i?Buffer.from(B(e,n.mode,"connection",r.url,r.target)):null}))})),new Promise((e=>setTimeout((()=>{i=!1,e(null)}),n.config.connectTimeout)))]):null;if(s)throw s;return i?a:null})))(0,e,{target:pe,url:oe}).then((t=>t||T(ae,oe,pe,ue,n,Ce,he,fe,e.mode))).catch((e=>(xe=e,null))),Be=(null===(M=null===(H=null==Ie?void 0:Ie.alpnProtocol)||void 0===H?void 0:H.startsWith)||void 0===M?void 0:M.call(H,"h2"))?"HTTP/2":null!==(W=null==Ie?void 0:Ie.alpnProtocol)&&void 0!==W?W:"HTTP1.1";e.notifyLogsListeners({level:"info",protocol:Be,method:n.method,upstreamPath:re,downstreamPath:pe.href,randomId:ge,uniqueHash:Re}),xe instanceof Buffer||(xe=null);const qe=!xe&&(null==Ie?void 0:Ie.request(Ce,{endStream:e.config.ssl?!(null==be||be):!ye}));if("object"==typeof qe&&(null===(J=null==qe?void 0:qe.on)||void 0===J||J.call(qe,"error",(t=>{const n=-505===t.errno;xe=Buffer.from(B(t,e.mode,"stream"+(n?" (error -505 usually means that the downstream service does not support this http version)":""),oe,pe))}))),xe)return void G(502,r,xe);xe=null,be&&qe&&!fe?(n.stream.on("data",(e=>{qe.write(e)})),n.stream.on("end",(()=>qe.end()))):ye&&qe&&!fe?(n.on("data",(e=>{qe.write(e)})),n.on("end",(()=>qe.end()))):qe&&fe&&Oe&&!qe.writableEnded&&(qe.write(he),qe.end());const{outboundResponseHeaders:Ne}=yield new Promise((e=>{var t,n;return null!==(n=null===(t=null==qe?void 0:qe.on)||void 0===t?void 0:t.call(qe,"response",(t=>{e({outboundResponseHeaders:t})})))&&void 0!==n?n:e({outboundResponseHeaders:{}})}));let Te=null;try{Ne.location&&(Te=new i.URL(Ne.location.startsWith("/")?`${ae.origin}${Ne.location.replace(/^\/+/,"/")}`:Ne.location.replace(/^file:\/+/,"file:///").replace(/^(http)(s?):\/+/,"$1$2://")))}catch(t){yield e.log([[{text:`${g.ERROR_4} location replacement error ${(null!==(X=Ne.location)&&void 0!==X?X:"").slice(-13)}`,color:m.WARNING}]])}const je=e.config.replaceResponseBodyUrls&&Te?new i.URL(K(Te.href,{direction:h.INBOUND,proxyHostnameAndPort:ne,ssl:!!e.config.ssl,mapping:null!==(Z=e.config.mapping)&&void 0!==Z?Z:{}}).replace(new RegExp(`^(${L.join("|")})/+`),"")):Te,Pe=Te?(null==je?void 0:je.origin)!==Te.origin||e.config.dontTranslateLocationHeader?je:`${oe.origin}${je.href.substring(je.origin.length)}`:Te,Le=null!=xe?xe:yield new Promise((e=>{var t,n;let o=Buffer.alloc(0);qe?(null===(t=null==qe?void 0:qe.on)||void 0===t||t.call(qe,"data",(e=>o=Buffer.concat([o,"string"==typeof e?Buffer.from(e):e]))),null===(n=null==qe?void 0:qe.on)||void 0===n||n.call(qe,"end",(()=>{e(o)}))):e(o)})).then((t=>{var n,o;return e.config.replaceResponseBodyUrls&&t.length?L.some((e=>ae.protocol===e))?t:_(t,Ne,{proxyHostnameAndPort:ne,proxyHostname:te,key:se,direction:h.INBOUND,mapping:null!==(n=e.config.mapping)&&void 0!==n?n:{},port:null!==(o=e.config.port)&&void 0!==o?o:A.port,ssl:!!e.config.ssl}).catch((t=>(G(502,r,Buffer.from(B(t,e.mode,"stream",oe,pe))),Buffer.from("")))):t})),Ae=Object.assign(Object.assign({},Object.entries(Object.assign(Object.assign(Object.assign({},Ne),e.config.replaceResponseBodyUrls?{"content-length":`${Le.byteLength}`}:{}),e.config.disableWebSecurity?{"content-security-policy":"report only","access-control-allow-headers":"*","access-control-allow-method":"*","access-control-allow-origin":"*"}:{})).filter((([e])=>!e.startsWith(":")&&!D.includes(e.toLowerCase()))).reduce(((e,[t,n])=>{const o=de.split("").map(((e,t)=>de.substring(t).startsWith(".")&&de.substring(t))).filter((e=>e)),r=[de].concat(o).reduce(((e,t)=>(Array.isArray(e)?e:[e]).map((e=>"string"==typeof e?e.replace(`Domain=${t}`,`Domain=${oe.hostname}`):e))),n);return e[t]=(e[t]||[]).concat(r),e}),{})),Pe?{location:[Pe]}:{});try{Object.entries(Ae).forEach((([e,t])=>t&&r.setHeader(e,t)))}catch(e){}const He=null!==(Q=Ne[":status"])&&void 0!==Q?Q:200;try{e.config.ssl?r.writeHead(He,Ae):r.writeHead(He,"HTTP/2"===Be?"":null!==(ee=null===(V=Ne[":statusmessage"])||void 0===V?void 0:V.toString())&&void 0!==ee?ee:"",Ae)}catch(e){}Le?r.end(Le):r.end();const Ue=b(),Me=ke||we?Buffer.from(JSON.stringify({body:null==Le?void 0:Le.toString("base64"),headers:Ne,status:He})).toString("base64"):"";e.notifyLogsListeners({randomId:ge,statusCode:He,protocol:Be,duration:Math.floor(Number(Ue-Se)/1e6),uniqueHash:Re,response:Me}),!we||e.config.logAccessInTerminal||me||(e.mockConfig.mocks.set(Re,Me),u.stdout.moveCursor(0,-1,(()=>u.stdout.clearLine(-1,e.quickStatus))))}))};exports.serve=Z;const Q=(e,t)=>{"EACCES"===t.code&&setTimeout((()=>e.log([[{text:`${g.NO} permission denied for this port`,color:m.ERROR}]])),10),"EADDRINUSE"===t.code&&setTimeout((()=>e.log([[{text:`${g.ERROR_6} port is already used. NOT started`,color:m.ERROR}]])),10)};exports.errorListener=Q;const V=e=>ee({config:Object.assign(Object.assign({},A),e)},{server:null});exports.start=V;const ee=(e,n)=>t(void 0,void 0,void 0,(function*(){var s,i,l,d,c,u,p,h,v,b,O,w,R,E,S,B,q,N,T,j,P,L,A,U,M,D;if(0===Object.keys(null!=n?n:{}).length&&e.server)return n;if(null==n?void 0:n.pendingConfigSave)return(0,a.writeFile)(y,JSON.stringify(n.pendingConfigSave,null,2),(t=>{var n,o;t?null===(n=e.log)||void 0===n||n.call(e,[[{text:`${g.ERROR_4} config file NOT saved`,color:m.ERROR}]]):null===(o=e.log)||void 0===o||o.call(e,[[{text:`${g.COLORED} config file saved... will reload`,color:m.INFO}]])})),e;if(null===(null==n?void 0:n.configListeners)&&(yield Promise.all((null!==(s=e.configListeners)&&void 0!==s?s:[]).map((e=>new Promise((t=>e.stream.end(t))))))),null===(null==n?void 0:n.logsListeners)&&(yield Promise.all((null!==(i=e.configListeners)&&void 0!==i?i:[]).map((e=>new Promise((t=>e.stream.end(t))))))),null===(null==n?void 0:n.server)&&e.server){const t=yield Promise.race([new Promise((t=>{var n;return null===(n=e.server)||void 0===n?void 0:n.close(t)})).then((()=>!0)),new Promise((e=>setTimeout(e,5e3))).then((()=>!1))]);t||(yield null===(l=e.log)||void 0===l?void 0:l.call(e,[[{text:`${g.RESTART} error during restart (websockets ?)`,color:m.WARNING}]]))}(null!==(d=e.configListeners)&&void 0!==d?d:[]).concat(null!==(c=e.logsListeners)&&void 0!==c?c:[]).filter((e=>e.stream.errored||e.stream.closed)).forEach((e=>e.stream.destroy()));const W=null!==(u=null==n?void 0:n.config)&&void 0!==u?u:e.config,F=null!==(h=null!==(p=null==n?void 0:n.mode)&&void 0!==p?p:e.mode)&&void 0!==h?h:f.PROXY,J=null!==(w=null!==(b=null===(v=null==n?void 0:n.mockConfig)||void 0===v?void 0:v.autoRecord)&&void 0!==b?b:null===(O=e.mockConfig)||void 0===O?void 0:O.autoRecord)&&void 0!==w&&w,_=null!==(B=null!==(E=null===(R=null==n?void 0:n.mockConfig)||void 0===R?void 0:R.strict)&&void 0!==E?E:null===(S=e.mockConfig)||void 0===S?void 0:S.strict)&&void 0!==B&&B,K=null!==(j=null!==(N=null===(q=null==n?void 0:n.mockConfig)||void 0===q?void 0:q.mocks)&&void 0!==N?N:null===(T=e.mockConfig)||void 0===T?void 0:T.mocks)&&void 0!==j?j:new Map,z=(null===(null==n?void 0:n.configListeners)?[]:null!==(L=null!==(P=null==n?void 0:n.configListeners)&&void 0!==P?P:e.configListeners)&&void 0!==L?L:[]).filter((e=>!e.stream.errored&&!e.stream.closed)),G=(null===(null==n?void 0:n.logsListeners)?[]:null!==(U=null!==(A=null==n?void 0:n.logsListeners)&&void 0!==A?A:e.logsListeners)&&void 0!==U?U:[]).filter((e=>!e.stream.errored&&!e.stream.closed)),Y=e;return Object.assign(Y,{config:W,logsListeners:G,configListeners:z,mode:F,mockConfig:{mocks:K,strict:_,autoRecord:J},configFileWatcher:void 0===Y.configFileWatcher?(0,a.watchFile)(y,(()=>t(void 0,void 0,void 0,(function*(){return ee(Y,yield function(e){return t(this,void 0,void 0,(function*(){var t,n,o,r,s;const i=e.config,a=yield H(!1),l=[];if(!a)return{};if(isNaN(null!==(t=null==a?void 0:a.port)&&void 0!==t?t:NaN)||(null!==(n=null==a?void 0:a.port)&&void 0!==n?n:-1)>65535||(null!==(o=null==a?void 0:a.port)&&void 0!==o?o:-1)<0)return yield e.log([[{text:`${g.PORT} port number invalid. Not refreshing`,color:m.ERROR}]]),{};if((null===(r=null==a?void 0:a.mapping)||void 0===r?void 0:r[""])||l.push([{text:`${g.ERROR_3} default mapping "" not provided.`,color:m.WARNING}]),"object"!=typeof a.mapping)return e.log([[{text:`${g.ERROR_5} mapping should be an object. Aborting`,color:m.ERROR}]]),{};a.replaceRequestBodyUrls!==i.replaceRequestBodyUrls&&l.push([{text:`${g.REWRITE} request body url ${a.replaceRequestBodyUrls?"":"NO "}rewriting`,color:m.INFO}]),a.replaceResponseBodyUrls!==i.replaceResponseBodyUrls&&l.push([{text:`${g.REWRITE} response body url ${a.replaceResponseBodyUrls?"":"NO "}rewriting`,color:m.INFO}]),a.dontTranslateLocationHeader!==i.dontTranslateLocationHeader&&l.push([{text:`${g.REWRITE} response location header ${a.dontTranslateLocationHeader?"NO ":""}translation`,color:m.INFO}]),a.dontUseHttp2Downstream!==i.dontUseHttp2Downstream&&l.push([{text:`${g.OUTBOUND} http/2 ${a.dontUseHttp2Downstream?"de":""}activated downstream`,color:m.INFO}]),a.disableWebSecurity!==i.disableWebSecurity&&l.push([{text:`${g.SHIELD} web security ${a.disableWebSecurity?"de":""}activated`,color:m.INFO}]),a.websocket!==i.websocket&&l.push([{text:`${g.WEBSOCKET} websocket ${a.websocket?"":"de"}activated`,color:m.INFO}]),a.logAccessInTerminal!==i.logAccessInTerminal&&l.push([{text:`${g.LOGS} access terminal logging ${a.logAccessInTerminal?"on":"off"}`,color:m.INFO}]),a.simpleLogs!==i.simpleLogs&&l.push([{text:`${g.COLORED} simple logs ${a.simpleLogs?"on":"off"}`,color:m.INFO}]),Object.keys(a.mapping).join("\n")!==Object.keys(null!==(s=i.mapping)&&void 0!==s?s:{}).join("\n")&&l.push([{text:`${g.RULES} ${Object.keys(a.mapping).length.toString().padStart(5)} loaded mapping rules`,color:m.INFO}]),a.port!==i.port&&l.push([{text:`${g.PORT} port changed from ${i.port} to ${a.port}`,color:m.INFO}]),a.ssl&&!i.ssl&&l.push([{text:`${g.INBOUND} ssl configuration added`,color:m.INFO}]),!a.ssl&&i.ssl&&l.push([{text:`${g.INBOUND} ssl configuration removed`,color:m.INFO}]);const d=a.port!==i.port||JSON.stringify(a.ssl)!==JSON.stringify(i.ssl);return d&&l.push([{text:`${g.RESTART} restarting server`,color:m.INFO}]),setTimeout((()=>null==e?void 0:e.log(l.concat([C.apply(Object.assign(Object.assign({},e),{config:a}))]))),1),{config:a,server:d?null:void 0}}))}(Y))})))):Y.configFileWatcher,log:k.bind(Y,Y),notifyConfigListeners:$.bind(Y),notifyLogsListeners:x.bind(Y),buildQuickStatus:C.bind(Y),quickStatus:I.bind(Y),server:null!==(null==n?void 0:n.server)||(null!==(D=null===(M=null==n?void 0:n.config)||void 0===M?void 0:M.port)&&void 0!==D?D:0)<0?(null==n?void 0:n.server)?Y.server:null:((null==W?void 0:W.ssl)?o.createSecureServer.bind(null,Object.assign(Object.assign({},W.ssl),{allowHTTP1:!0})):r.createServer)(((e,t)=>Z(Y,e,t))).addListener("error",(e=>Q(Y,e))).on("upgrade",((e,t)=>ee(Y,X(Y,e,t)))).listen(null==W?void 0:W.port)}),Y}));exports.update=ee;const te=null!==(e=u.argv.map((e=>e.trim())).filter((e=>e&&!["ts-node","node","npx","npm","exec"].some((t=>e.includes(t)&&!e.match(/npm-cache/)&&!e.match(/_npx/)))))[0])&&void 0!==e?e:"",ne=te.toLowerCase().replace(/[-_]/g,"").includes("localtraffic")&&!te.match(/(.|-)?(test|spec)\.m?[jt]sx?$/),oe=u.argv.some((e=>"--crash-test"===e));if(oe){const e=Math.floor(40151+9e3*Math.random()),t=(t,n)=>(0,r.request)({hostname:"localhost",port:e,path:"/config/",method:"GET",headers:{Accept:"text/html"},timeout:500},(e=>n({response:e,state:t}))).on("error",(e=>n({error:e,state:t}))).end();ee({config:Object.assign(Object.assign({},A),{port:e}),configFileWatcher:null},{server:null}).then((e=>new Promise((n=>setTimeout(t.bind(null,e,n),1e3))))).then((({state:e,response:t})=>200!==t.statusCode?Promise.reject("Crash test has failed"):ee(e,{config:{port:-1},server:null}))).then((e=>new Promise((n=>setTimeout(t.bind(null,e,n),1e3))))).then((({error:e})=>"ECONNREFUSED"!==(null==e?void 0:e.code)?Promise.reject("Server should have stopped"):k({config:{simpleLogs:!0}},[[{text:`${g.COLORED} Crash test successful`,color:m.INFO}]]))).then((()=>(0,u.exit)(0))).catch((()=>(0,u.exit)(1)))}!oe&&ne&&H().then(V).then((e=>e.quickStatus()));
|
|
2
|
+
"use strict";var e,t=this&&this.__awaiter||function(e,t,n,o){return new(n||(n=Promise))((function(r,s){function i(e){try{a(o.next(e))}catch(e){s(e)}}function l(e){try{a(o.throw(e))}catch(e){s(e)}}function a(e){var t;e.done?r(e.value):(t=e.value,t instanceof n?t:new n((function(e){e(t)}))).then(i,l)}a((o=o.apply(e,t||[])).next())}))},n=this&&this.__rest||function(e,t){var n={};for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&t.indexOf(o)<0&&(n[o]=e[o]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(o=Object.getOwnPropertySymbols(e);r<o.length;r++)t.indexOf(o[r])<0&&Object.prototype.propertyIsEnumerable.call(e,o[r])&&(n[o[r]]=e[o[r]])}return n};Object.defineProperty(exports,"__esModule",{value:!0}),exports.update=exports.serve=exports.determineMapping=exports.send=exports.cleanEntropy=exports.replaceTextUsingMapping=exports.replaceBody=exports.acknowledgeWebsocket=exports.readWebsocketBuffer=exports.createWebsocketBufferFrom=exports.websocketServe=exports.recorderHandler=exports.quickStatus=exports.errorListener=exports.load=exports.start=void 0;const o=require("http2"),r=require("http"),s=require("https"),i=require("url"),l=require("fs"),a=require("zlib"),d=require("path"),c=require("crypto"),u=require("process"),p=require("os");var m,g,h,f;!function(e){e[e.ERROR=124]="ERROR",e[e.INFO=93]="INFO",e[e.WARNING=172]="WARNING"}(m||(m={})),function(e){e.INBOUND="↘️ ",e.PORT="☎️ ",e.OUTBOUND="↗️ ",e.RULES="🔗",e.MOCKS="🌐",e.STRICT_MOCKS="🕸️",e.AUTO_RECORD="📼",e.REWRITE="✒️ ",e.LOGS="📝",e.RESTART="🔄",e.WEBSOCKET="☄️ ",e.COLORED="✨",e.SHIELD="🛡️ ",e.NO="⛔",e.ERROR_1="❌",e.ERROR_2="⛈️ ",e.ERROR_3="☢️ ",e.ERROR_4="⁉️ ",e.ERROR_5="⚡",e.ERROR_6="☠️ "}(g||(g={})),function(e){e.INBOUND="INBOUND",e.OUTBOUND="OUTBOUND"}(h||(h={})),function(e){e.PROXY="proxy",e.MOCK="mock"}(f||(f={}));const v=null!==(e=u.argv.map((e=>e.trim())).filter((e=>e&&!["ts-node","node","npx","npm","exec"].some((t=>e.includes(t)&&!e.match(/npm-cache/)&&!e.match(/_npx/)))))[0])&&void 0!==e?e:"",y=v.toLowerCase().replace(/[-_]/g,"").includes("localtraffic")&&!v.match(/(.|-)?(test|spec)\.m?[jt]sx?$/),b=y?(0,d.resolve)((0,u.cwd)(),u.argv.slice(-1)[0].endsWith(".json")?u.argv.slice(-1)[0]:(0,d.resolve)((0,p.homedir)(),".local-traffic.json")):`${(0,p.tmpdir)()}${d.sep}local-traffic-temporary-config-${(0,c.randomBytes)(6).toString("hex")}.json`,k=u.argv.some((e=>"--crash-test"===e)),O=()=>{var e,t;return null!==(t=null===(e=u.hrtime.bigint)||void 0===e?void 0:e.call(u.hrtime))&&void 0!==t?t:(()=>{const e=(0,u.hrtime)();return 1e3*e[0]+e[1]/1e6})()},w=e=>{const t=new Date;return`${e?"":"[36m"}${`${t.getHours()}`.padStart(2,"0")}${e?":":"[33m:[36m"}${`${t.getMinutes()}`.padStart(2,"0")}${e?":":"[33m:[36m"}${`${t.getSeconds()}`.padStart(2,"0")}${e?"":"[0m"}`},R=function(e,n){return t(this,void 0,void 0,(function*(){var t,o,r,s,i,l,a;const d=n.map((e=>e.map((e=>e.text.replace(/⎸/g,"|").replace(/⎹/g,"|").replace(/\u001b\[[^m]*m/g,"").replace(new RegExp(g.INBOUND,"g"),"inbound:").replace(new RegExp(g.PORT,"g"),"port:").replace(new RegExp(g.OUTBOUND,"g"),"outbound:").replace(new RegExp(g.RULES,"g"),"rules:").replace(new RegExp(g.NO,"g"),"").replace(new RegExp(g.REWRITE,"g"),"+rewrite").replace(new RegExp(g.WEBSOCKET,"g"),"websocket").replace(new RegExp(g.SHIELD,"g"),"web-security").replace(new RegExp(g.MOCKS,"g"),"mocks").replace(new RegExp(g.STRICT_MOCKS,"g"),"mocks (strict)").replace(new RegExp(g.AUTO_RECORD,"g"),"auto record").replace(new RegExp(g.LOGS,"g"),"logs").replace(new RegExp(g.RESTART,"g"),"restart").replace(new RegExp(g.COLORED,"g"),"colored").replace(/\|+/g,"|"))).join(" | ")));if(null===(t=null==e?void 0:e.config)||void 0===t?void 0:t.simpleLogs)for(let t of d)u.stdout.write(`${w(null===(o=null==e?void 0:e.config)||void 0===o?void 0:o.simpleLogs)} | ${t}\n`);else for(let t of n){const n=t.map((e=>`[48;5;${e.color}m${e.text}`));u.stdout.write(`${w(null===(r=null==e?void 0:e.config)||void 0===r?void 0:r.simpleLogs)}${t.map((e=>{var t;return`[48;5;${e.color}m${"".padEnd((null!==(t=e.length)&&void 0!==t?t:64)+1)}`})).join("▐")}[0m\n`),yield new Promise((e=>u.stdout.moveCursor(-1e3,-1,(()=>e(void 0)))));let o=9;for(let e=0;e<n.length;e++)yield new Promise((e=>u.stdout.moveCursor(-1e3,0,(()=>u.stdout.moveCursor(o,0,(()=>e(void 0))))))),u.stdout.write(n[e]),o+=(null!==(s=t[e].length)&&void 0!==s?s:64)+2;u.stdout.write("[0m\n");for(let n of d)null===(i=null==e?void 0:e.notifyLogsListeners)||void 0===i||i.call(e,{event:n,level:(c=null!==(a=null===(l=null==t?void 0:t[0])||void 0===l?void 0:l.color)&&void 0!==a?a:m.INFO,c===m.ERROR?"error":c===m.WARNING?"warning":"info")})}var c}))},$=(e,t)=>{var n;const o=Array(4).fill(0).map((()=>t?Math.floor(256*Math.random()):0)),r=e.split("").map(((e,t)=>e.charCodeAt(0)^o[3&t])),s=e.length,i=t?128:0,l=e.length<126?Buffer.from(Uint8Array.from([129,i+s]).buffer):e.length<65535?Buffer.concat([Buffer.from(Uint8Array.from([129,126|i]).buffer),Buffer.from(Uint8Array.from([s>>8]).buffer),Buffer.from(Uint8Array.from([255&s]).buffer)]):Buffer.concat([Buffer.from(Uint8Array.from([129,127|i]).buffer),Buffer.concat((null!==(n=Number(s).toString(16).padStart(16,"0").match(/.{2}/g))&&void 0!==n?n:["0"]).map((e=>parseInt(e,16))).map((e=>Buffer.from(Uint8Array.from([e]).buffer))))]),a=Buffer.from(Int8Array.from(o).buffer),d=Buffer.from(Int8Array.from(r).buffer);return Buffer.concat(t?[l,a,d]:[l,d])};exports.createWebsocketBufferFrom=$;const E=(e,t)=>{var n;if(!(t||1&e.readUInt8(0)))return{payloadLength:0,mask:[0,0,0,0],body:""};const o=t?0:e.readUInt8(1),r=o>>7,s=127&o,i=t?t.payloadLength:127!==s?s:e.readUInt8(2)<<8+e.readUInt8(3),l=t?t.mask:r?Array(4).fill(0).map(((t,n)=>e.readUInt8(n+4))):[0,0,0,0],a=t?0:r?8:4,d=Array(e.length-a).fill(0).map(((t,n)=>String.fromCharCode(e.readUInt8(n+a)^l[3&n]))).join("");return{payloadLength:i,mask:l,body:(null!==(n=null==t?void 0:t.body)&&void 0!==n?n:"").concat(d)}};exports.readWebsocketBuffer=E;const S=(e,t)=>{const n=(0,c.createHash)("sha1");n.update(t+"258EAFA5-E914-47DA-95CA-C5AB0DC85B11");const o=n.digest("base64");e.allowHalfOpen=!0,e.write(`HTTP/1.1 101 Switching Protocols\r\ndate: ${(new Date).toUTCString()}\r\nconnection: upgrade\r\nupgrade: websocket\r\nserver: local\r\nsec-websocket-accept: ${o}\r\n\r\n`)};exports.acknowledgeWebsocket=S;const x=function(e){return B(e,this.configListeners)},C=function(e){const{response:t}=e,o=n(e,["response"]);return Promise.all([B(e,this.logsListeners.filter((e=>e.wantsResponseMessage))),B(o,this.logsListeners.filter((e=>!e.wantsResponseMessage)))])},B=(e,t)=>{if(!t.length)return;const n=JSON.stringify(e),o=new Set(t.map((e=>e.wantsMask))),r=o.has(!1)&&$(n,!1),s=o.has(!0)&&$(n,!0),i=e=>{e.stream.errored&&e.stream.destroy()};t.forEach((e=>{e.stream.closed||e.stream.errored||(e.wantsMask?e.stream.write(s,"ascii",(()=>i(e))):e.stream.write(r,"ascii",(()=>i(e))))}))},I=function(){var e,t;return[{color:52,text:`${g.PORT} ${(null!==(e=this.config.port)&&void 0!==e?e:"").toString()}`,length:11},{color:53,text:`${g.OUTBOUND} ${this.config.dontUseHttp2Downstream?"H1.1":"H/2 "}${this.config.replaceRequestBodyUrls?g.REWRITE:" "}`,length:11},{color:54,text:`${g.INBOUND} ${this.config.ssl?"H/2 ":"H1.1"}${this.config.replaceResponseBodyUrls?g.REWRITE:" "}`,length:11},{color:55,text:""+(this.mode===f.PROXY&&this.mockConfig.autoRecord?`${g.AUTO_RECORD}${this.mockConfig.mocks.size.toString().padStart(3)}`:this.mode===f.PROXY?`${g.RULES}${Object.keys(null!==(t=this.config.mapping)&&void 0!==t?t:{}).length.toString().padStart(3)}`:`${this.mockConfig.strict?g.STRICT_MOCKS:g.MOCKS}${this.mockConfig.mocks.size.toString().padStart(3)}`),length:7},{color:56,text:`${this.config.websocket?g.WEBSOCKET:g.NO}`,length:4},{color:57,text:`${this.config.simpleLogs?g.NO:g.COLORED}`,length:4},{color:93,text:`${this.config.disableWebSecurity?g.NO:g.SHIELD}`,length:4}]},T=function(e){return t(this,void 0,void 0,(function*(){this.log([...null!=e?e:[],this.buildQuickStatus()]).then((()=>this.notifyConfigListeners(this.config)))}))};exports.quickStatus=T;const N=(e,t,n,o,r)=>`${J(128163,"error",e.message)}\n<p>An error happened while trying to proxy a remote exchange</p>\n<div class="alert alert-warning" role="alert">\nⓘ This is not an error from the downstream service.\n</div>\n<div class="alert alert-danger" role="alert">\n<pre><code>${e.stack||`<i>${e.name} : ${e.message}</i>`}${e.errno?`<br/>(code : ${e.errno})`:""}</code></pre>\n</div>\nMore information about the request :\n<table class="table">\n<tbody>\n<tr>\n<td>server mode</td>\n<td>${t}</td>\n</tr>\n<tr>\n<td>phase</td>\n<td>${n}</td>\n</tr>\n<tr>\n<td>requested URL</td>\n<td>${o}</td>\n</tr>\n<tr>\n<td>downstream URL</td>\n<td>${r||"<no-target-url>"}</td>\n</tr>\n</tbody>\n</table>\n</div></body></html>`,q=(e,t,n)=>`<table id="table-access" class="table table-striped" style="display: block; width: 100%; overflow-y: auto">\n<thead>\n<tr>\n<th scope="col"${!0===n.captureResponseBody?' style="min-width: 120px"':""}>...</th>\n<th scope="col">Date</th>\n<th scope="col">Level</th>\n<th scope="col">Protocol</th>\n<th scope="col">Method</th>\n<th scope="col">Status</th>\n<th scope="col">Duration</th>\n<th scope="col">Upstream Path</th>\n<th scope="col">Downstream Path</th>\n</tr>\n</thead>\n<tbody id="access">\n</tbody>\n</table>\n<table id="table-proxy" class="table table-striped" style="display: none; width: 100%; overflow-y: auto">\n<thead>\n<tr>\n<th scope="col">Date</th>\n<th scope="col">Level</th>\n<th scope="col">Message</th>\n</tr>\n</thead>\n<tbody id="proxy">\n</tbody>\n</table>\n<div class="alert alert-warning" role="alert"\nstyle="display:none;left:20%;right:20%;top:20%;position:absolute;z-index:1;"\nid="websocket-disconnected">\n<p>ⓘ Websocket connection is not available at this moment.</p>\n<ul><li>Is local-traffic running ?</li><li>Are websockets enabled ?</li>\n<li>Are you running a network protection tool that disallows websockets ?</li></ul>\n</div>\n<script type="text/javascript">\nlet socket = null;\nfunction start() {\ndocument.getElementById('table-access').style.height =\n(document.documentElement.clientHeight - 150) + 'px';\nif (socket !== null) return;\nsocket = new WebSocket("ws${t.ssl?"s":""}://${e}/local-traffic-logs${n.captureResponseBody?"?wantsResponseMessage=true":""}");\nsocket.onopen = function(event) {\ndocument.getElementById('websocket-disconnected').style.display = 'none';\ndocument.getElementById('table-access').style.filter = null;\n(document.getElementsByTagName('nav')[0]||{style:{}}).style.filter = null;\n(document.getElementsByTagName('form')[0]||{style:{}}).style.filter = null;\n}\nsocket.onmessage = function(event) {\nlet data = event.data\nlet uniqueHash;\ntry {\nconst { uniqueHash: uniqueHash1, ...data1 } = JSON.parse(event.data);\ndata = data1;\nuniqueHash = uniqueHash1;\n} catch(e) { }\nif (document.getElementById('mock-mode')?.checked) return;\nif (${!0===n.captureResponseBody} && \ndata?.downstreamPath?.startsWith('recorder://') &&\n!data?.upstreamPath?.endsWith('?forceLogInRecorderPage=true'))\nreturn;\nconst time = new Date().toISOString().split('T')[1].replace('Z', '');\nconst actions = getActionsHtmlText(uniqueHash, data.response);\nif(data.statusCode && uniqueHash) {\nconst color = getColorFromStatusCode(data.statusCode);\nconst statusCodeColumn = document.querySelector("#event-" + data.randomId + " .statusCode");\nif (statusCodeColumn)\nstatusCodeColumn.innerHTML = '<span class="badge bg-' + color + '">' + data.statusCode + '</span>';\n\nconst durationColumn = document.querySelector("#event-" + data.randomId + " .duration");\nif (durationColumn) {\nconst duration = data.duration > 10000 ? Math.floor(data.duration / 1000) + 's' :\ndata.duration + 'ms';\ndurationColumn.innerHTML = duration;\n}\n\nconst protocolColumn = document.querySelector("#event-" + data.randomId + " .protocol");\nif (protocolColumn) {\nprotocolColumn.innerHTML = data.protocol;\n}\n\nconst replayColumn = document.querySelector("#event-" + data.randomId + " .replay");\nif (replayColumn) {\nreplayColumn.innerHTML = actions;\n}\n} else if (uniqueHash) {\naddNewRequest(data.randomId, actions, time, data.level, data.protocol, data.method, \n'<span class="badge bg-secondary">...</span>', '⏱',\ndata.upstreamPath, data.downstreamPath);\n} else if(data.event) {\ndocument.getElementById("proxy")\n.insertAdjacentHTML('afterbegin', '<tr><td scope="col">' + time + '</td>' +\n'<td scope="col">' + (data.level || 'info')+ '</td>' + \n'<td scope="col">' + data.event + '</td></tr>');\n}\ncleanup();\n};\nsocket.onerror = function(error) {\nsocket = null;\nsetTimeout(start, 1000);\nif (error.target.readyState === 3) {\ndocument.getElementById('websocket-disconnected').style.display = 'block';\ndocument.getElementById('table-access').style.filter = 'blur(8px)';\n(document.getElementsByTagName('nav')[0]||{style:{}}).style.filter = 'blur(8px)';\n(document.getElementsByTagName('form')[0]||{style:{}}).style.filter = 'blur(8px)';\nreturn;\n}\nthrow new Error(\`[error] \${JSON.stringify(error)}\`);\n};\nsocket.onclose = function(error) {\nsocket = null;\nsetTimeout(start, 1000);\n};\n};\nfunction show(id) {\n[...document.querySelectorAll('table')].forEach((table, index) => {\ntable.style.display = index === id ? 'block': 'none'\n});\n[...document.querySelectorAll('.navbar-nav .nav-item .nav-link')].forEach((link, index) => {\nif (index === id) { link.classList.add('active') } else link.classList.remove('active');\n});\n}\nfunction remove(event) {\nevent.target.closest('tr').remove();\nif (window.updateState) window.updateState();\n}\nfunction cleanup() {\nconst currentLimit = parseInt(document.getElementById('limit').value)\nfor (let table of ['access', 'proxy']) {\nwhile (currentLimit && document.getElementById(table).childNodes.length && \ndocument.getElementById(table).childNodes.length > currentLimit) {\n[...document.getElementById(table).childNodes].slice(-1)[0].remove();\n}\n}\n}\nfunction replay(event) {\nconst uniqueHash = event.target.dataset.uniquehash;\nconst { method, url, headers, body } = JSON.parse(atob(uniqueHash));\nfetch(url, {\nmethod,\nheaders,\nbody: !body || !body.length ? undefined : atob(body)\n});\n}\nfunction getActionsHtmlText(uniqueHash, response) {\nconst edit = ${!0===n.captureResponseBody} && uniqueHash\n? '<button data-response="' + (response ?? "") +\n'" data-uniquehash="' + uniqueHash + \n'" data-bs-toggle="modal" data-bs-target="#edit-request" type="button" ' +\n'class="btn btn-primary">📝</button>'\n: ''\nconst remove = ${!0===n.captureResponseBody} && uniqueHash\n? '<button onclick="javascript:remove(event)" type="button" ' +\n'class="btn btn-primary">❌</button>'\n: ''\nconst replay = ${!1===n.captureResponseBody} && uniqueHash ? '<button data-response="' + \nbtoa(JSON.stringify(response ?? {})) +\n'" data-uniquehash="' + uniqueHash + '" onclick="javascript:replay(event)" ' +\n'type="button" class="btn btn-primary">🔁</button>' : '';\nreturn edit + replay + remove\n}\nfunction addNewRequest(\nrandomId, actions, time, level, protocol, method, \nstatusCode, duration, upstreamPath, downstreamPath\n) {\ndocument.getElementById("access")\n.insertAdjacentHTML('afterbegin', '<tr id="event-' + randomId + '">' +\n'<td scope="col" class="replay">' + actions + '</td>' +\n'<td scope="col">' + time + '</td>' +\n'<td scope="col">' + (level || 'info')+ '</td>' + \n'<td scope="col" class="protocol">' + protocol + '</td>' + \n'<td scope="col" class="method">' + method + '</td>' + \n'<td scope="col" class="statusCode">' + statusCode + '</td>' +\n'<td scope="col" class="duration text-end">' + duration + '</td>' +\n'<td scope="col" class="upstream-path">' + upstreamPath + '</td>' + \n'<td scope="col">' + downstreamPath + '</td>' + \n'</tr>');\n}\nfunction getColorFromStatusCode(statusCode) {\nreturn Math.floor(statusCode / 100) === 1 ? "info" :\nMath.floor(statusCode / 100) === 2 ? "success" :\nMath.floor(statusCode / 100) === 3 ? "dark" :\nMath.floor(statusCode / 100) === 4 ? "warning" :\nMath.floor(statusCode / 100) === 5 ? "danger" :\n"secondary";\n}\nwindow.addEventListener("DOMContentLoaded", start);\n<\/script>`,j=(e,t,n)=>{let o={};try{o=JSON.parse(t.toString("ascii"))}catch(e){}if("object"!=typeof o||Object.keys(o).filter((e=>!["strict","mode","mocks","autoRecord"].includes(e))).length||!Array.isArray(o.mocks)&&void 0!==o.mocks)return void e.log([[{text:`${g.MOCKS} invalid mocks update received`,color:m.WARNING}]]);const{mocks:r,mode:s,strict:i,autoRecord:l}=o,a=r?new Map(r.map((({response:t,uniqueHash:n})=>[Y(e.config,n),t]))):null,d=s!==e.mode&&s===f.PROXY,c=(!d||!0===l)&&(null!=l?l:e.mockConfig.autoRecord),u=void 0!==c&&c!=e.mockConfig.autoRecord,p=s!==e.mode&&s===f.MOCK||null!==a&&e.mockConfig.mocks.size!==a.size,h=null!=i?i:e.mockConfig.strict,v=null!=s?s:e.mode,y=!!h!=!!e.mockConfig.strict,b=n;ne(e,b?{mode:v,mockConfig:{autoRecord:!1,strict:h,mocks:new Map}}:{mode:v,mockConfig:{strict:h,autoRecord:c,mocks:null!=a?a:e.mockConfig.mocks}}),setTimeout((()=>{var t;return e.log([d?[{text:`${g.RULES} ${Object.keys(null!==(t=e.config.mapping)&&void 0!==t?t:{}).length.toString().padStart(5)} loaded mapping rules`,color:m.INFO}]:null,p?[{text:`${h?g.STRICT_MOCKS:g.MOCKS} ${(null!=a?a:e.mockConfig.mocks).size.toString().padStart(5)} loaded mocks`,color:m.INFO}]:null,y?[{text:`${h?g.STRICT_MOCKS:g.MOCKS} mocks strict mode : ${null!=h?h:e.mockConfig.strict}`,color:m.INFO}]:null,u?[{text:`${v===f.PROXY?g.AUTO_RECORD:h?g.STRICT_MOCKS:g.MOCKS} mocks auto-record : ${c}`,color:m.INFO}]:null,d||p||u||y||b?e.buildQuickStatus():null].filter((e=>e)))}),1)};exports.recorderHandler=j;const P=(e,n,o,i,l,a,d,c,u)=>t(void 0,void 0,void 0,(function*(){const t={hostname:e.hostname,path:i,port:e.port?e.port:"https:"===e.protocol?443:80,protocol:e.protocol,rejectUnauthorized:!1,method:l.method,headers:Object.assign(Object.assign({},Object.assign({},...Object.entries(a).filter((([e])=>!e.startsWith(":")&&"transfer-encoding"!==e.toLowerCase())).map((([e,t])=>({[e]:t}))))),{host:e.hostname})};let p=null;const m=p||[...H].includes(e.protocol)?null:yield new Promise((i=>{const a="https:"===e.protocol?(0,s.request)(t,i):(0,r.request)(t,i);a.on("error",(e=>{p=Buffer.from(N(e,u,"request",n,o)),i(null)})),c&&(a.write(d),a.end()),c||(l.on("data",(e=>a.write(e))),l.on("end",(()=>a.end())))}));if(p)throw p;return{alpnProtocol:"HTTP1.1",error:null,data:null,hasRun:!1,events:{},on:function(e,t){return"response"===e?null==t?void 0:t(Object.assign(Object.assign({},m.headers),{":status":m.statusCode,":statusmessage":m.statusMessage})):m.on(e,t)},end:function(){return this},request:function(){return this},write:function(){return this}}})),A={logs:(e,t)=>K(`${J(128250,"logs","")}\n<nav class="navbar navbar-expand-lg navbar-dark bg-primary nav-fill">\n<div class="container-fluid">\n<ul class="navbar-nav">\n<li class="nav-item">\n<a class="nav-link active" aria-current="page" href="javascript:show(0)">Access</a>\n</li>\n<li class="nav-item">\n<a class="nav-link" href="javascript:show(1)">Proxy</a>\n</li>\n</ul>\n<span class="navbar-text">\nLimit : <select id="limit" onchange="javascript:cleanup()"><option value="-1">0 (clear)</option><option value="10">10</option>\n<option value="50">50</option><option value="100">100</option><option value="200">200</option>\n<option selected="selected" value="500">500</option><option value="0">Infinity (discouraged)</option>\n</select> rows\n</span>\n</div>\n</nav>\n${q(e,t.config,{captureResponseBody:!1})}\n</body></html>`),config:(e,t,n,o)=>{var r,s,i,l,a,d;if(["POST","PUT"].includes(n.method)){let e;try{e=JSON.parse(null!==(s=null===(r=null==o?void 0:o.requestBody)||void 0===r?void 0:r.toString("ascii"))&&void 0!==s?s:"{}")}catch(e){return setTimeout((()=>t.log([[{text:`${g.ERROR_4} config update could not be read`,color:m.WARNING}]])),1),K(`{"error":"config update could not be read","stack":"${null===(l=null===(i=e.stack)||void 0===i?void 0:i.replace)||void 0===l?void 0:l.call(i,/"/g,'\\"').replace(/[\s]+/g," ")}"}`,{contentType:"application/json; charset=utf-8"})}return K(new Promise((n=>{var o,r;null===(r=null===(o=t.configFileWatcher)||void 0===o?void 0:o.once)||void 0===r||r.call(o,"change",(()=>{setTimeout((()=>{n(Buffer.from(JSON.stringify(t.config)))}),10)})),ne(t,{pendingConfigSave:e})})),{contentType:"application/json; charset=utf-8"})}return["GET","HEAD"].includes(n.method)&&(null===(d=null===(a=n.headers)||void 0===a?void 0:a.accept)||void 0===d?void 0:d.includes("application/json"))?K(JSON.stringify(t.config),{contentType:"application/json; charset=utf-8"}):K(`${J(127899,"config","")}\n<link href="${D}jsoneditor/dist/jsoneditor.min.css" rel="stylesheet" type="text/css">\n<script src="${D}jsoneditor/dist/jsoneditor.min.js"><\/script>\n<script src="${D}node-forge/dist/forge.min.js"><\/script>\n<div id="ssl-modal" class="modal" tabindex="-1" role="dialog">\n<div class="modal-dialog" role="document">\n<div class="modal-content">\n<div class="modal-header">\n<h5 class="modal-title">SSL keypair generation in progress</h5>\n</div>\n<div class="modal-body">\n<p>Wait a few seconds or move your mouse to increase the entropy.</p>\n</div>\n</div>\n</div>\n</div>\n<div id="jsoneditor" style="width: 400px; height: 400px;"></div>\n<script>\nlet socket = null;\nconst container = document.getElementById("jsoneditor")\nconst options = {mode: "code", allowSchemaSuggestions: true, schema: {\ntype: "object",\nproperties: {\n${Object.entries(Object.assign(Object.assign({},U),{ssl:{cert:"",key:""}})).map((([e,t])=>`${e}: {type: ${"unwantedHeaderNamesInMocks"===e?'"array","items": {"type":"string"}':"number"==typeof t?'"integer"':"string"==typeof t?'"string"':"boolean"==typeof t?'"boolean"':'"object"'}}`)).join(",\n ")}\n},\nrequired: [],\nadditionalProperties: false\n}}\n\nfunction save() {\nif (!socket || socket.readyState !== 1) {\nfetch(window.location.href, {\nmethod: 'POST',\nheaders: {\n'Accept': 'application/json'\n},\nbody: JSON.stringify(editor.get())\n})\n} else socket.send(JSON.stringify(editor.get()));\n}\n\nfunction generateSslCertificate() {\nconst sslModal = new bootstrap.Modal(document.getElementById('ssl-modal'), {});\nsslModal.show()\nsetTimeout(function() {\nconst keypair = forge.pki.rsa.generateKeyPair(2048);\nconst certificate = forge.pki.createCertificate();\nconst now = new Date();\nconst fiveYears = new Date(new Date(now).setFullYear(now.getFullYear() + 5));\nObject.assign(certificate, {\npublicKey: keypair.publicKey,\nserialNumber: "01",\nvalidity: {\nnotBefore: now,\nnotAfter: fiveYears,\n},\n});\ncertificate.sign(keypair.privateKey, forge.md.sha256.create());\nconst key = forge.pki.privateKeyToPem(keypair.privateKey);\nconst cert = forge.pki.certificateToPem(certificate);\nconst existingConfig = editor.get();\neditor.set({ ...existingConfig, ssl: { key, cert },\nport: parseInt(("" + existingConfig.port).replace(/(80|[0-9])80$/, '443'))\n});\nsslModal.hide();\n}, 100);\n}\n\nconst editor = new JSONEditor(container, options);\nconst initialJson = ${JSON.stringify(t.config)}\neditor.set(initialJson)\neditor.validate();\neditor.aceEditor.commands.addCommand({\nname: 'save',\nbindKey: {win: 'Ctrl-S', mac: 'Command-S'},\nexec: save,\n});\nfunction startSocket() {\nif (socket != null) return;\nsocket = new WebSocket("ws${t.config.ssl?"s":""}://${e}/local-traffic-config");\nsocket.onmessage = function(event) {\neditor.set(JSON.parse(event.data))\neditor.validate()\n}\nsocket.onerror = function(error) {\nsocket = null;\nsetTimeout(startSocket, 1000);\nif (error.target.readyState === 3) {\nreturn;\n}\nthrow new Error(\`[error] \${JSON.stringify(error)}\`);\n};\nsocket.onclose = function(error) {\nsocket = null;\nsetTimeout(startSocket, 1000);\n};\n}\nwindow.addEventListener("DOMContentLoaded", function() {\ndocument.getElementById('jsoneditor').style.height =\n(document.documentElement.clientHeight - 150) + 'px';\ndocument.getElementById('jsoneditor').style.width =\nparseInt(window.getComputedStyle(\ndocument.querySelector('.container')).maxWidth) + 'px';\nconst sslButton = document.createElement('button');\nsslButton.addEventListener("click", generateSslCertificate);\nsslButton.type="button";\nsslButton.classList.add("btn");\nsslButton.classList.add("btn-primary");\nsslButton.innerHTML="🔒";\ndocument.querySelector('.jsoneditor-menu')\n.appendChild(sslButton);\nconst saveButton = document.createElement('button');\nsaveButton.addEventListener("click", save);\nsaveButton.type="button";\nsaveButton.classList.add("btn");\nsaveButton.classList.add("btn-primary");\nsaveButton.innerHTML="💾";\ndocument.querySelector('.jsoneditor-menu')\n.appendChild(saveButton);\nstartSocket();\n});\n<\/script>\n</body></html>`)},recorder:(e,t,n)=>{var o,r,s,i,l,a,d,c,u,p;return(null===(o=n.url)||void 0===o?void 0:o.endsWith("?forceLogInRecorderPage=true"))?K('{"ping":"pong"}',{contentType:"application/json; charset=utf-8"}):"GET"===n.method&&(null===(s=null===(r=n.headers)||void 0===r?void 0:r.accept)||void 0===s?void 0:s.includes("application/json"))?K(JSON.stringify(Object.assign(Object.assign({},t.mockConfig),{mode:t.mode,mocks:[...t.mockConfig.mocks.entries()].map((([e,t])=>({uniqueHash:e,response:t})))})),{contentType:"application/json; charset=utf-8"}):["PUT","POST","DELETE"].includes(null!==(i=n.method)&&void 0!==i?i:"")?K('{"status": "acknowledged"}',{contentType:"application/json; charset=utf-8",onOutboundWrite:e=>j(t,e,"DELETE"===n.method)}):K(`${J(9210,"recorder","")}\n<link href="${D}jsoneditor/dist/jsoneditor.min.css" rel="stylesheet" type="text/css">\n<script src="${D}jsoneditor/dist/jsoneditor.min.js"><\/script>\n<script src="${D}pako/dist/pako.min.js"><\/script>\n<form>\n<div id="commands"${t.mockConfig.autoRecord?' style="filter:blur(8px)"':""}>\n<span>Mode : </span>\n<div class="btn-group" role="group" aria-label="Server Mode">\n<input type="radio" class="btn-check" name="server-mode" id="record-mode" autocomplete="off"${t.mode===f.PROXY?" checked":""}>\n<label class="btn btn-outline-primary" for="record-mode">⏺ Record</label>\n<input type="radio" class="btn-check" name="server-mode" id="mock-mode" autocomplete="off"${t.mode===f.MOCK?" checked":""}>\n<label class="btn btn-outline-primary" for="mock-mode">🌐 Mock</label>\n</div>\n<span>Actions : </span>\n<button type="button" class="btn btn-light" id="add-mock">➕ Mock from dummy request</button>\n<button type="button" class="btn btn-light" id="upload-mocks">📥 Upload mocks</button>\n<button type="button" class="btn btn-light" id="download-mocks">📦 Download mocks</button>\n<button type="button" class="btn btn-light" id="delete-mocks">🗑 Delete mocks</button>\n</div>\n<div class="row">\n<div class="col-lg" style="max-width: 200px">\n<div class="form-check form-switch" id="strict-mock-mode-form-control">\n<input class="form-check-input" type="checkbox" id="strict-mock-mode"${t.mockConfig.strict?' checked="checked"':""}>\n<label class="form-check-label" for="strict-mock-mode">Strict mock mode</label>\n</div>\n</div>\n<div class="col-lg" style="max-width: 200px">\n<div class="form-check form-switch">\n<input class="form-check-input" type="checkbox" id="auto-record-mode"${t.mockConfig.autoRecord?' checked="checked"':""}>\n<label class="form-check-label" for="auto-record-mode">Auto record mode</label>\n</div>\n</div>\n<div class="col-lg"> </div>\n</div>\n<input type="hidden" id="limit" value="0"/>\n<div class="modal fade" id="edit-request" tabindex="-1" \naria-labelledby="edit-request-label" aria-hidden="true">\n<div class="modal-dialog" style="max-width: 900px">\n<div class="modal-content">\n<div class="modal-header">\n<h1 class="modal-title fs-5" id="edit-request-label">Edit request to /</h1>\n<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>\n</div>\n<div class="modal-body">\n<div class="container">\n<div class="row">\n<div class="col-lg">\n<h2>Request :</h2>\n<div id="uniqueHash-editor" style="width: 400px; height: 400px;"></div>\n</div>\n<div class="col-lg">\n<h2>Response : </h2>\n<div id="response-editor" style="width: 400px; height: 400px;"></div>\n</div>\n</div>\n</div>\n</div>\n<div class="modal-footer">\n<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>\n<button type="button" class="btn btn-primary" onclick="javascript:saveRequest()">Save changes</button>\n</div>\n</div>\n</div>\n</div>\n<script>\nconst xmlOrJsonPrologsInBase64 = [\n"eyJ","PD94bWw=","PCFET0NUWVBF","PCFkb2N0eXBl","PGh0bWw","PEhUTUw","H4sIAAAAAAAA", "W3tc"\n];\nfunction getMocksData () {\nreturn JSON.stringify(\n[...document.querySelectorAll('button[data-uniqueHash]')].map(button => ({\nresponse: button.attributes['data-response']?.value,\nuniqueHash: button.attributes['data-uniqueHash']?.value}))\n)\n}\nfunction updateState () {\nfetch("http${t.config.ssl?"s":""}://${e}${null!==(d=null===(a=Object.entries(null!==(l=t.config.mapping)&&void 0!==l?l:{}).find((([e,t])=>{var n;return null===(n=null==t?void 0:t.toString())||void 0===n?void 0:n.startsWith("recorder:")})))||void 0===a?void 0:a[0])&&void 0!==d?d:"/recorder/"}", {\nmethod: 'PUT',\nheaders: { 'Content-Type': 'application/json' },\nbody: '{"strict":' + document.getElementById('strict-mock-mode').checked +\n',"autoRecord":' + document.getElementById('auto-record-mode').checked +\n',"mode":"' + \n(document.getElementById('mock-mode').checked ? "mock" : "proxy") + '"' +\n',"mocks":' + getMocksData() + '}'\n})\n}\nfunction loadMocks(mocksHashes) {\nconst time = new Date().toISOString().split('T')[1].replace('Z', '');\nlet mocks = [];\ntry {\nmocks = mocksHashes.map(mock => ({...mock, \nrequest: JSON.parse(atob(mock.uniqueHash)),\nresponse: JSON.parse(atob(mock.response))\n}));\n} catch(e) { }\nmocks.forEach(mock => {\nconst randomId = window.crypto.randomUUID();\nconst actions = getActionsHtmlText(mock.uniqueHash, mock.response);\naddNewRequest(randomId, actions, time, 'info', 'HTTP/2', mock.request.method, \n'<span class="badge bg-' + \ngetColorFromStatusCode(mock.response.status) + '">' + \nmock.response.status + \n'</span>', \n'0ms', mock.request.url, \n'N/A');\n});\n}\ndocument.getElementById('add-mock').addEventListener('click', () => {\nconst iframe = document.createElement('iframe');\niframe.style.display = 'none';\niframe.onload = function() { iframe.parentNode.removeChild(iframe); };\niframe.src = "http${t.config.ssl?"s":""}://${e}${null!==(p=null===(u=Object.entries(null!==(c=t.config.mapping)&&void 0!==c?c:{}).find((([e,t])=>{var n;return null===(n=null==t?void 0:t.toString())||void 0===n?void 0:n.startsWith("recorder:")})))||void 0===u?void 0:u[0])&&void 0!==p?p:"/recorder/"}?forceLogInRecorderPage=true";\ndocument.body.appendChild(iframe);\n});\ndocument.getElementById('upload-mocks').addEventListener('click', () => {\nconst time = new Date().toISOString().split('T')[1].replace('Z', '');\nconst fileInput = document.createElement('input');\nfileInput.type = "file";\nfileInput.multiple = "multiple";\nfileInput.onchange = function() {\nconst fileReader = new FileReader();\n[...fileInput.files].reduce((promise, file) =>\npromise.then(result => new Promise(resolve => {\nfileReader.readAsText(file);\nfileReader.onload = function(){\nresolve(result.concat(fileReader.result));\n};\n})), Promise.resolve([]))\n.then(files => files.flatMap(file => JSON.parse(file)))\n.catch(e => [])\n.then(mocks => loadMocks(mocks))\n.then(() => updateState());\n}\nfileInput.click();\n});\ndocument.getElementById('download-mocks').addEventListener('click', () => {\nconst link = document.createElement('a');\nlink.href = URL.createObjectURL(new Blob([getMocksData()], {\ntype: "application/json",\n}));\nlink.download = "mocks-" + new Date().toISOString() + ".json";\nlink.click();\nURL.revokeObjectURL(link.href);\n})\ndocument.getElementById('delete-mocks').addEventListener('click', () => {\ndocument.getElementById('limit').value = -1;\ncleanup();\nupdateState();\ndocument.getElementById('limit').value = 0;\n})\ndocument.getElementById('record-mode').addEventListener('change', () => {\ndocument.getElementById('limit').value = 0;\ncleanup();\nupdateState();\n})\ndocument.getElementById('mock-mode').addEventListener('change', () => {\nupdateState();\n})\ndocument.getElementById('auto-record-mode').addEventListener('change', (e) => { \nupdateState();\ndocument.getElementById('table-access').style.filter = \ndocument.getElementById('auto-record-mode').checked ? 'blur(8px)' : 'blur(0px)';\ndocument.getElementById('commands').style.filter = \ndocument.getElementById('auto-record-mode').checked ? 'blur(8px)' : 'blur(0px)';\ndocument.getElementById('alert-about-auto-record-mode').style.display = \ndocument.getElementById('auto-record-mode').checked ? 'block' : 'none';\ndocument.getElementById('strict-mock-mode-form-control').style.filter = \ndocument.getElementById('auto-record-mode').checked ? 'blur(8px)' : 'blur(0px)';\n\n})\ndocument.getElementById('strict-mock-mode').addEventListener('change', (e) => { \nupdateState();\n})\nfunction saveRequest () {\n$('#edit-request').modal("hide");\n\nconst requestBeingEdited = window.requestBeingEdited;\nlet request = uniqueHashEditor.get();\nlet response = responseEditor.get();\nif (typeof request.body === "object") {\nrequest.body = JSON.stringify(request.body);\n}\nif (typeof response.body === "object") {\nresponse.body = JSON.stringify(response.body);\n}\nconst oldRequest = JSON.parse(atob(requestBeingEdited.attributes['data-uniqueHash'].value));\nconst oldResponse = JSON.parse(atob(requestBeingEdited.attributes['data-response'].value));\nconst requestProlog = requestBeingEdited.attributes['data-requestProlog']?.value;\nconst responseProlog = requestBeingEdited.attributes['data-responseProlog']?.value;\nconst requestPrologHasChanged = request.body.substring(0, 10) !== oldRequest.body.substring(0, 10);\nconst responsePrologHasChanged = response.body.substring(0, 10) !== response.body.substring(0, 10);\nif (requestProlog === "H4sIAAAAAAAA" && !requestPrologHasChanged) {\nrequest.body =\nbtoa([...pako.gzip(request.body)].map(e => String.fromCharCode(e)).join(""));\n} else if ((requestProlog === null || !request.body.startsWith(requestProlog ?? "")) && \nrequest.body.substring(0, 10) !== oldRequest.body.substring(0, 10)) {\nrequest.body = btoa(request.body);\n}\nif (responseProlog === "H4sIAAAAAAAA" && !responsePrologHasChanged) {\nresponse.body =\nbtoa([...pako.gzip(response.body)].map(e => String.fromCharCode(e)).join(""));\n} else if ((responseProlog === null || !response.body.startsWith(responseProlog ?? "")) && \nresponse.body.substring(0, 10) !== oldResponse.body.substring(0, 10)) {\nresponse.body = btoa(response.body);\n}\nrequest = btoa(JSON.stringify(request));\nresponse = btoa(JSON.stringify(response));\nrequestBeingEdited.setAttribute('data-uniqueHash', request);\nrequestBeingEdited.setAttribute('data-response', response);\nconst row = requestBeingEdited.closest('tr');\nrow.querySelector("td.method").innerHTML = uniqueHashEditor.get().method;\nrow.querySelector("td.upstream-path").innerHTML = uniqueHashEditor.get().url;\nwindow.requestBeingEdited = undefined;\nupdateState();\n}\ndocument.getElementById('edit-request').addEventListener('show.bs.modal', event => {\nconst request = JSON.parse(atob(event.relatedTarget.attributes['data-uniqueHash'].value));\nconst response = JSON.parse(atob(event.relatedTarget.attributes['data-response'].value));\nconst requestProlog = xmlOrJsonPrologsInBase64.find(prolog => request.body?.startsWith(prolog));\nconst responseProlog = xmlOrJsonPrologsInBase64.find(prolog => response.body?.startsWith(prolog));\nif (requestProlog) {\nevent.relatedTarget.setAttribute('data-requestProlog', requestProlog);\nrequest.body = request.body.startsWith("H4sIAAAAAAAA") \n? pako.ungzip(new Uint8Array(atob(request.body).split("").map(e => e.charCodeAt(0))), {to: "string"})\n: atob(request.body);\nrequest.body = request.body.startsWith("{\\"") || request.body.startsWith("[{\\"")\n? JSON.parse(request.body) : request.body;\n}\nif (responseProlog) {\nevent.relatedTarget.setAttribute('data-responseProlog', responseProlog);\nresponse.body = response.body.startsWith("H4sIAAAAAAAA") \n? pako.ungzip(new Uint8Array(atob(response.body).split("").map(e => e.charCodeAt(0))), {to: "string"})\n: atob(response.body);\nresponse.body = response.body.startsWith("{\\"") || response.body.startsWith("[{\\"")\n? JSON.parse(response.body) : response.body;\n}\nwindow.requestBeingEdited = event.relatedTarget;\nwindow.uniqueHashEditor.set(request);\nwindow.responseEditor.set(response);\ndocument.getElementById('edit-request-label').innerText = "Edit request to " + request.url;\n})\n\nsetTimeout(() => {\nloadMocks(${JSON.stringify([...t.mockConfig.mocks.entries()].map((([e,t])=>({uniqueHash:e,response:t}))))});\nwindow.uniqueHashEditor = new JSONEditor(document.getElementById("uniqueHash-editor"), {\nmode: "code", allowSchemaSuggestions: true, schema: {\ntype: "object",\nproperties: {\nmethod: {type: "string"},\nurl: {type: "string"},\nbody: {oneOf: [{type:"string"},{type:"object"},{type:"array"}]},\nheaders: {type: "object"},\n},\nrequired: [],\nadditionalProperties: false\n}});\nwindow.responseEditor = new JSONEditor(document.getElementById("response-editor"), {\nmode: "code", allowSchemaSuggestions: true, schema: {\ntype: "object",\nproperties: {\nbody: {oneOf: [{type:"string"},{type:"object"},{type:"array"}]},\nheaders: {type: "object"},\nstatus: {type: "integer"}\n},\nrequired: [],\nadditionalProperties: false\n}});\n${t.mockConfig.autoRecord?";document.getElementById('strict-mock-mode-form-control').style.filter='blur(8px)';;document.getElementById('table-access').style.filter='blur(8px)';":""}\ndocument.forms[0].reset();\n}, 10)\n<\/script>\n</form>\n<div class="alert alert-warning" role="alert"\nstyle="display:${t.mockConfig.autoRecord?"block":"none"};left:20%;right:20%;position:absolute;z-index:1;" id="alert-about-auto-record-mode">\nⓘ Auto-record mode and recorder webapp are known to be mutually exclusive.\n<br/><br/>Changing the mocks on both sides is somehow hard to sort out.\n<br/>This is triggering concurrent modifications in the mock config.\n<hr/>\nHere is what you can do :\n<ul>\n<li>If you want to record mocks using a frontend app, turn off the auto-record mode.</li>\n<li>If you want to record mocks with the recorder API only, close this app.</li>\n</ul>\n</div>\n${q(e,t.config,{captureResponseBody:!0})}\n</body>\n</html>`)},file:(e,t,n,o)=>{const r=null==o?void 0:o.target,s=(0,d.resolve)("/",r.hostname,...r.pathname.replace(/[?#].*$/,"").replace(/^\/+/,"").split("/").map(decodeURIComponent));return{alpnProtocol:"file",error:null,data:null,hasRun:!1,run:function(){return this.hasRun?Promise.resolve():new Promise((e=>(0,l.readFile)(s,((t,n)=>{if(this.hasRun=!0,!t||"EISDIR"!==t.code)return this.error=t,this.data=n,void e(void 0);(0,l.readdir)(s,((t,n)=>{this.error=t,this.data=n,t?e(void 0):Promise.all(n.map((e=>new Promise((t=>(0,l.lstat)((0,d.resolve)(r.pathname,e),((n,o)=>t([e,o,n])))))))).then((t=>{const n=t.filter((e=>!e[2]&&e[1].isDirectory())).concat(t.filter((e=>!e[2]&&e[1].isFile())));this.data=`${J(128194,"directory",r.href)}<p>Directory content of <i>${r.href.replace(/\//g,"/")}</i></p><ul class="list-group"><li class="list-group-item">📁<a href="${r.pathname.endsWith("/")?"..":"."}"><parent></a></li>${n.filter((e=>!e[2])).map((e=>`<li class="list-group-item">&#x${(e[1].isDirectory()?128193:128196).toString(16)};<a href="${r.pathname.endsWith("/")?"":`${r.pathname.split("/").slice(-1)[0]}/`}${e[0]}">${e[0]}</a></li>`)).join("\n")}</li></ul></body></html>`,e(void 0)}))}))}))))},events:{},on:function(e,t){return this.events[e]=t,this.run().then((()=>{"response"===e&&this.events.response(s.endsWith(".svg")?{Server:"local","Content-Type":"image/svg+xml"}:{Server:"local"},0),"data"===e&&this.data&&(this.events.data(this.data),this.events.end()),"error"===e&&this.error&&this.events.error(this.error)})),this},end:function(){return this},request:function(){return this},write:function(){return this}}},data:(e,t,n,o)=>{var r,s,i,l,a,d;const[,c,u,p]=null!==(s=/^data:([^;,]*)?;?([^,]*)?,(.*)$/.exec(null!==(r=null==o?void 0:o.target.href)&&void 0!==r?r:"data:,"))&&void 0!==s?s:["","","",""],m=decodeURIComponent(p),g="base64"===u?Buffer.from(m,"base64url").toString("binary"):m;return K(t.config.replaceResponseBodyUrls?z(Buffer.from(g),{"content-type":c||"text/plain"},{mapping:null!==(i=t.config.mapping)&&void 0!==i?i:{},proxyHostnameAndPort:e,proxyHostname:null!==(l=null==o?void 0:o.proxyHostname)&&void 0!==l?l:"localhost",key:null!==(a=null==o?void 0:o.key)&&void 0!==a?a:"",direction:h.INBOUND,ssl:!!t.config.ssl,port:null!==(d=t.config.port)&&void 0!==d?d:null==U?void 0:U.port}):g,{contentType:c})}},L=Object.keys(A),H=L.map((e=>`${e}:`)),U={mapping:Object.assign({},...L.filter((e=>"data"!==e&&"file"!==e)).map((e=>({[`/${e}/`]:`${e}://`})))),port:8080,replaceRequestBodyUrls:!1,replaceResponseBodyUrls:!1,dontUseHttp2Downstream:!1,dontTranslateLocationHeader:!1,logAccessInTerminal:!1,simpleLogs:!1,websocket:!0,disableWebSecurity:!1,connectTimeout:3e3,socketTimeout:3e3,unwantedHeaderNamesInMocks:[]},M=(...e)=>t(void 0,[...e],void 0,(function*(e=!0){return new Promise((t=>(0,l.readFile)(b,((n,o)=>{if(n&&(R(null,[[{text:`${g.ERROR_1} config error. Using previous value`,color:m.ERROR}]]).then((()=>t(Object.assign({},U)))),"ENOENT"!==n.code))return;let r=null;try{r=Object.assign({},U,JSON.parse((null!=o?o:"{}").toString()))}catch(e){return r=null!=r?r:Object.assign({},U),R({config:void 0},[[{text:`${g.ERROR_2} config syntax incorrect, ignoring`,color:m.ERROR}]]).then((()=>t(r)))}"ENOENT"===(null==n?void 0:n.code)&&e?(0,l.writeFile)(b,JSON.stringify(U,null,2),(e=>R(null,e?[[{text:`${g.ERROR_4} config file NOT created`,color:m.ERROR}]]:[[{text:`${g.COLORED} config file created`,color:m.INFO}]]).then((()=>t(r))))):t(r)})))).then((e=>t(void 0,void 0,void 0,(function*(){return e?yield Promise.all(Object.entries(e.mapping).map((([e,t])=>new Promise((n=>{const o="string"==typeof t?null:t.replaceBody,r="string"==typeof t?t:t.downstreamUrl;if(!r.startsWith("file:")||e.endsWith("(.*)"))return n([e,t]);const s=r.split("").map(((e,t)=>e+r.charAt(t+1))).filter((e=>"$$"===e)).length;return(0,l.lstat)(new i.URL(r.replace(/\$\$[0-9]+/g,"")).pathname,((i,l)=>{if(i)return n([e,t]);const a=l.isDirectory(),c=a?`${null==e?void 0:e.replace(/\/*$/g,"")}/(.*)`:e,u=a?`${null==o?void 0:o.replace(/\/*$/g,"")}/$$${s+1}`:o,p=a?`${r.replace(/\/*$/g,"")}${d.sep}$$${s+1}`:r;return n(o?[c,{replaceBody:u,downstreamUrl:p}]:[c,p])}))}))))).then((t=>Object.assign(Object.assign({},e),{mapping:Object.fromEntries(t)}))):e}))))}));exports.load=M;const W=e=>""==e?"":(0,d.normalize)(e).replace(/\\/g,"/"),D="https://cdn.jsdelivr.net/npm/",F=["host","connection","keep-alive","upgrade","transfer-encoding","upgrade-insecure-requests","proxy-connection"],J=(e,t,n)=>`<!doctype html>\n<html lang="en">\n<head>\n<title>&#x${e.toString(16)}; local-traffic ${t} | ${n}</title>\n<link href="${D}bootstrap/dist/css/bootstrap.min.css" rel="stylesheet"/>\n<script src="${D}jquery/dist/jquery.min.js"><\/script>\n<script src="${D}bootstrap/dist/js/bootstrap.bundle.min.js"><\/script>\n</head>\n<body><div class="container"><h1>&#x${e.toString(16)}; local-traffic ${t}</h1>\n<br/>`,_=({response:e})=>({alpnProtocol:"mock",error:null,data:null,hasRun:!1,run:function(){return this.hasRun?Promise.resolve():new Promise((t=>{try{this.data=JSON.parse(Buffer.from(e,"base64").toString("utf-8"))}catch(e){this.data={}}t(void 0)}))},events:{},on:function(e,t){return this.events[e]=t,this.run().then((()=>{var t;"response"===e&&this.events.response(Object.assign(Object.assign({},this.data.headers),{"X-LocalTraffic-Mock":"1"}),this.data.status),"data"===e&&this.data&&(this.events.data(Buffer.from(null!==(t=this.data.body)&&void 0!==t?t:"","base64")),this.events.end()),"error"===e&&this.error&&this.events.error(this.error)})),this},end:function(){return this},request:function(){return this},write:function(){return this}}),K=(e,t)=>({alpnProtocol:"static",error:null,data:null,outboundData:null,run:function(){return"string"==typeof e?new Promise((t=>{this.data=e,t(void 0)})):e.then((e=>{this.data=e.toString("utf8")}))},events:{},on:function(e,n){return this.events[e]=n,this.run().then((()=>{var n;"response"===e&&this.events.response({Server:"local","Content-Type":null!==(n=null==t?void 0:t.contentType)&&void 0!==n?n:"text/html"},0),"data"===e&&this.data&&(this.events.data(this.data),this.events.end()),"error"===e&&this.error&&this.events.error(this.error)})),this},write:function(e){var n;return this.outboundData=e,e instanceof Buffer&&(null===(n=null==t?void 0:t.onOutboundWrite)||void 0===n||n.call(t,e)),this},end:function(){return this},request:function(){return this}}),z=(e,n,o)=>t(void 0,void 0,void 0,(function*(){var r,s;return(null!==(s=null===(r=n["content-encoding"])||void 0===r?void 0:r.toString())&&void 0!==s?s:"").split(",").reduce(((e,n)=>t(void 0,void 0,void 0,(function*(){const t=n.trim().toLowerCase(),o="gzip"===t||"x-gzip"===t?a.gunzip:"deflate"===t?a.inflate:"br"===t?a.brotliDecompress:"identity"===t||""===t?(e,t)=>{t(null,e)}:null;if(null===o)throw new Error(`${t} compression not supported by the proxy`);const r=yield e;return yield new Promise(((e,t)=>o(r,((n,o)=>{n&&t(n),e(o)}))))}))),Promise.resolve(e)).then((e=>{const t=e.length>1e7,r=["text/html","application/javascript","application/json"].some((e=>{var t;return(null!==(t=n["content-type"])&&void 0!==t?t:"").toString().includes(e)}));return!t&&(r||!/[^\x00-\xFF]/.test(e.toString()))?G(e.toString(),{direction:o.direction,proxyHostnameAndPort:o.proxyHostnameAndPort,ssl:o.ssl,mapping:o.mapping}).replace(/\?protocol=wss?%3A&hostname=[^&]+&port=[0-9]+&pathname=/g,`?protocol=ws${o.ssl?"s":""}%3A&hostname=${o.proxyHostname}&port=${o.port}&pathname=${encodeURIComponent(o.key.replace(/\/+$/,""))}`):e})).then((e=>{var t,o;return(null!==(o=null===(t=n["content-encoding"])||void 0===t?void 0:t.toString())&&void 0!==o?o:"").split(",").reverse().reduce(((e,t)=>{const n=t.trim().toLowerCase(),o="gzip"===n||"x-gzip"===n?a.gzip:"deflate"===n?a.deflate:"br"===n?a.brotliCompress:"identity"===n||""===n?(e,t)=>{t(null,e)}:null;if(null===o)throw new Error(`${n} compression not supported by the proxy`);return e.then((e=>new Promise((t=>o(e,((e,n)=>{if(e)throw e;t(n)}))))))}),Promise.resolve(Buffer.from(e)))}))}));exports.replaceBody=z;const G=(e,{direction:t,proxyHostnameAndPort:n,ssl:o,mapping:r})=>Object.entries(r).map((([e,t])=>[e,"string"==typeof t?t:t.replaceBody])).reduce(((e,[r,s])=>{const i=r.split("").filter((e=>["(",")"].includes(e))).join("").match(/^(\(\))*$/)?r.split("(").flatMap((e=>e.split(")"))).filter(((e,t)=>t%2==1)):[];let l=0;return H.some((e=>s.startsWith(e)))||""!==r&&!r.match(/^[-a-zA-Z0-9()@:%_\+.~#?&//=]*$/)&&!i.length?e:t===h.INBOUND?e.replace(new RegExp(s.replace(new RegExp(`^(${L.join("|")})://`),"").replace(/\$\$(\d+)/g,((e,t)=>{var n;return"("+(null!==(n=i[parseInt(t)-1])&&void 0!==n?n:"")+")"})).replace(/\.\*/g,"[-a-zA-Z0-9()@:%_+.~#?&//=]*").replace(i.length?"":/[*+?^${}()|[\]\\]/g,"").replace(/^https/,"https?")+(i.length?"":"/*"),"ig"),`http${o?"s":""}://${n}${r.replace(/\([^)]+\)/g,(()=>"$"+ ++l)).replace(/\/+$/,"/").replace(/^(?![^/])$/,"/")}`):e.split(`http${o?"s":""}://${n}${r.replace(/\/+$/,"").replace(/^(?![^/])$/,"/")}`).join(s)}),e).split(`${n}/:`).join(`${n}:`);exports.replaceTextUsingMapping=G;const Y=(e,t)=>{try{const n="object"==typeof t?t:JSON.parse(Buffer.from(t,"base64").toString("utf-8"));return["access-control-max-age","authorization","cache-control","cookie","date","dnt","expires","if-modified-since","if-unmodified-since","keep-alive","last-modified","pragma","proxy-authenticate","proxy-authorization","referer","retry-after","signed-headers","server-timing","sec-ch-ua","sec-ch-ua-mobile","sec-ch-ua-platform","sec-fetch-dest","sec-fetch-mode","sec-fetch-site","sec-fetch-user","upgrade-insecure-requests","user-agent",...Array.isArray(e.unwantedHeaderNamesInMocks)?e.unwantedHeaderNamesInMocks:[]].forEach((e=>{var t;null===(t=null==n?void 0:n.headers)||void 0===t||delete t[e]})),n.headers=Object.keys(n.headers).sort().reduce(((e,t)=>(e[t]=n.headers[t],e)),{}),Buffer.from(JSON.stringify(n),"utf-8").toString("base64")}catch(e){return t}};exports.cleanEntropy=Y;const X=(e,t,n)=>{t.writeHead(e,{"content-type":"text/html","content-length":n.length}),t.end(n)};exports.send=X;const Z=(e,t)=>{var n,o,r,s,l,a,d,c;const u=(null!==(r=null!==(o=null===(n=e.headers[":authority"])||void 0===n?void 0:n.toString())&&void 0!==o?o:e.headers.host)&&void 0!==r?r:"localhost").replace(/:.*/,""),p=e.headers[":authority"]||`${e.headers.host}${(null!==(s=e.headers.host)&&void 0!==s?s:"").match(/:[0-9]+$/)?"":80!==t.port||t.ssl?443===t.port&&t.ssl?"":`:${null!==(l=t.port)&&void 0!==l?l:8080}`:""}`,m=new i.URL(`http${t.ssl?"s":""}://${p}${null!==(a=e.url)&&void 0!==a?a:""}`),g=m.href.substring(m.origin.length),h=Object.assign({},Object.assign({},...Object.entries(null!==(d=t.mapping)&&void 0!==d?d:{}).map((([e,t])=>{var n,o,r;const s="string"==typeof t?t:null!==(n=null==t?void 0:t.downstreamUrl)&&void 0!==n?n:"",l="string"==typeof t?e:null!==(o=null==t?void 0:t.replaceBody)&&void 0!==o?o:"",a=new i.URL((null===(r=null==s?void 0:s.startsWith)||void 0===r?void 0:r.call(s,"data:"))?s:W(s));return{[l]:a,[e]:a}}))));let f=null;const[v,y]=null!==(c=Object.entries(h).find((([e])=>{var t;return f=null!==(t=g.match(RegExp(e.replace(/^\//,"^/"))))&&void 0!==t?t:null})))&&void 0!==c?c:["/"],b=f&&y?new i.URL(y.href.replace(/\$\$(\d+)/g,((e,t)=>{var n;return null!==(n=f[parseInt(t)])&&void 0!==n?n:""}))):null;return{proxyHostname:u,proxyHostnameAndPort:p,url:m,path:g,key:v,target:b}};exports.determineMapping=Z;const Q=function(e,t,n){var o,l,a,d,c,u,p,h,f,v;if(n.on("error",(()=>{e.log([[{text:`${g.WEBSOCKET} websocket connection reset`,color:m.WARNING}]])})),!e.config.websocket)return n.end("HTTP/1.1 503 Service Unavailable\r\n\r\n"),{};const{key:y,target:b,path:k,url:O}=Z(t,e.config);if(k.startsWith("/local-traffic-logs"))return S(n,null!==(o=t.headers["sec-websocket-key"])&&void 0!==o?o:""),{logsListeners:e.logsListeners.concat({stream:n,wantsMask:!(null!==(a=null===(l=t.headers["user-agent"])||void 0===l?void 0:l.toString())&&void 0!==a?a:"").includes("Chrome"),wantsResponseMessage:[...O.searchParams.entries()].some((([e,t])=>"wantsResponseMessage"===e&&"true"===t))})};if("/local-traffic-config"===k){S(n,null!==(d=t.headers["sec-websocket-key"])&&void 0!==d?d:"");let o=null;return n.on("data",(t=>{const n=E(t,o);if(null===o&&n.body.length<n.payloadLength)o=n;else{if(n.body.length>=n.payloadLength&&0===n.body.length)return{};if(n.body.length>=n.payloadLength){let t;o=null;try{t=JSON.parse(n.body)}catch(t){return e.log([[{text:`${g.ERROR_4} config file NOT read, try again later`,color:m.WARNING}]]),{}}ne(e,{pendingConfigSave:t})}}})),{configListeners:e.configListeners.concat({stream:n,wantsMask:!(null!==(u=null===(c=t.headers["user-agent"])||void 0===c?void 0:c.toString())&&void 0!==u?u:"").includes("Chrome")})}}const w=new i.URL(`${null!==(p=null==b?void 0:b.protocol)&&void 0!==p?p:"https"}//${null!==(h=null==b?void 0:b.host)&&void 0!==h?h:"localhost"}${null===(v=null===(f=t.url)||void 0===f?void 0:f.replace(new RegExp(`^${y}`,"g"),b.pathname))||void 0===v?void 0:v.replace(/^\/*/,"/")}`),R={hostname:w.hostname,path:w.pathname,port:w.port,protocol:w.protocol,rejectUnauthorized:!1,method:t.method,headers:Object.assign(Object.assign({},t.headers),{host:w.hostname,origin:w.origin}),host:w.hostname},$="https:"===w.protocol?(0,s.request)(R):(0,r.request)(R);return $.end(),$.on("error",(t=>{e.log([[{text:`${g.WEBSOCKET} websocket request has errored ${t.errno?`(${t.errno})`:""}`,color:m.WARNING}]])})),$.on("upgrade",((t,o)=>{const r=`HTTP/${t.httpVersion} ${t.statusCode} ${t.statusMessage}\r\n${Object.entries(t.headers).flatMap((([e,t])=>(Array.isArray(t)?t:[t]).map((t=>[e,t])))).map((([e,t])=>`${e}: ${t}\r\n`)).join("")}\r\n`;n.write(r),n.allowHalfOpen=!0,o.allowHalfOpen=!0,o.on("data",(e=>n.write(e))),n.on("data",(e=>o.write(e))),o.on("error",(t=>{e.log([[{text:`${g.WEBSOCKET} downstream socket has errored ${t.errno?`(${t.errno})`:""}`,color:m.WARNING}]])})),n.on("error",(t=>{e.log([[{text:`${g.WEBSOCKET} upstream socket has errored ${t.errno?`(${t.errno})`:""}`,color:m.WARNING}]])}))})),{}};exports.websocketServe=Q;const V=function(e,n,r){return t(this,void 0,void 0,(function*(){var s,l,a,d,p,v,y,k,w,R,$,E,S,x,C,B,I,T,q,j,L,M,D,J,K,Q,V,ee,te,ne,oe;if(!n.headers.host&&!n.headers[":authority"])return void X(400,r,Buffer.from(N(new Error("client must supply a 'host' header"),e.mode,"proxy",new i.URL(`http${e.config.ssl?"s":""}://unknowndomain${n.url}`))));const{proxyHostname:re,proxyHostnameAndPort:se,url:ie,path:le,key:ae,target:de}=Z(n,e.config),ce=null!=de?de:e.mode===f.MOCK?new i.URL(`http${e.config.ssl?"s":""}://${se}/`):null;if(!ce)return void X(502,r,Buffer.from(N(new Error(`No mapping found in config file ${b}`),e.mode,"proxy",ie)));const ue="data:"===ce.protocol?"":"//",pe=ce.host.replace(RegExp(/\/+$/),""),me=ce.href.substring(`${ce.protocol}${ue}`.length+ce.host.length),ge="file:"===ce.protocol||"data:"===ce.protocol?me:`${me}${W(le.replace(RegExp(W(ae)),""))}`.replace(/^\/*/,"data:"===ce.protocol?"":"/"),he=new i.URL(`${ce.protocol}${ue}${pe}${ge}`),fe=H.some((e=>ce.protocol===e)),ve=(0,c.randomBytes)(20).toString("hex");let ye=null;const be=e.config.replaceRequestBodyUrls||!!e.logsListeners.length;e.config.ssl&&(yield new Promise((e=>setTimeout(e,1))));const ke=parseInt(null!==(s=n.headers["content-length"])&&void 0!==s?s:"0")>0,Oe=!!(null==n?void 0:n.readableLength)||ke,we=!!(null==n?void 0:n.stream)&&ke,Re=!!(null===(a=null===(l=n.headers)||void 0===l?void 0:l.accept)||void 0===a?void 0:a.includes("text/event-stream")),$e=!((e.config.ssl&&!1===we||!e.config.ssl&&!1===Oe)&&("0"===n.headers["content-length"]||void 0===n.headers["content-length"]));if(be){const t=null!==(d=null==n?void 0:n.stream)&&void 0!==d?d:n;let o=Buffer.from([]);yield Promise.race([new Promise((t=>setTimeout(t,e.config.connectTimeout))),new Promise((e=>{$e?(t.on("data",(e=>{o=Buffer.concat([o,e])})),t.on("end",e),t.on("error",e)):e(void 0)}))]),$e&&!o.length&&(yield e.log([[{text:`${g.ERROR_4} body replacement error ${le.slice(-17)}`,color:m.WARNING}]])),ye=e.config.replaceRequestBodyUrls?yield z(o,n.headers,{proxyHostnameAndPort:se,proxyHostname:re,key:ae,mapping:null!==(p=e.config.mapping)&&void 0!==p?p:{},port:null!==(v=e.config.port)&&void 0!==v?v:U.port,ssl:!!e.config.ssl,direction:h.OUTBOUND}):o}const Ee=e.logsListeners.some((e=>e.wantsResponseMessage)),Se=e.mockConfig.autoRecord&&e.mode===f.PROXY,xe=Y(e.config,{method:null!==(y=n.method)&&void 0!==y?y:"GET",url:null!==(k=n.url)&&void 0!==k?k:"",headers:Object.assign({},...Object.entries(n.headers).filter((([e])=>!e.startsWith(":"))).map((([e,t])=>({[e]:t})))),body:(e.mode===f.MOCK||Ee||Se)&&null!==(w=null==ye?void 0:ye.toString("base64"))&&void 0!==w?w:""});e.config.logAccessInTerminal&&!he.pathname.startsWith("/:/")&&(yield e.log([[{color:"GET"===n.method?22:"POST"===n.method?52:"PUT"===n.method?94:"DELETE"===n.method?244:"OPTIONS"===n.method?19:"PATCH"===n.method?162:"HEAD"===n.method?53:"TRACE"===n.method?6:"CONNECT"===n.method?2:0,text:(null!==(R=n.method)&&void 0!==R?R:"GET").toString(),length:null===($=n.method)||void 0===$?void 0:$.length},{color:8,text:he.pathname.toString().padStart(62-(null!==(S=null===(E=n.method)||void 0===E?void 0:E.length)&&void 0!==S?S:3)).substring(0,62-(null!==(C=null===(x=n.method)||void 0===x?void 0:x.length)&&void 0!==C?C:3)),length:62-(null!==(I=null===(B=n.method)||void 0===B?void 0:B.length)&&void 0!==I?I:3)}]]));const Ce=e.mode===f.MOCK&&!fe,Be=Ce?null!==(T=e.mockConfig.mocks.get(xe))&&void 0!==T?T:null===(q=Array.from(e.mockConfig.mocks.entries()).filter((([t])=>{var n;const o=JSON.parse(Buffer.from(xe,"base64").toString("ascii")),r=JSON.parse(Buffer.from(t,"base64").toString("ascii"));return r.method===o.method&&r.url===o.url&&(!r.body||r.body===o.body)&&Object.entries(null!==(n=r.headers)&&void 0!==n?n:{}).every((([t,n])=>{var r,s,i,l;return!n||(null===(i=null===(s=null===(r=e.config)||void 0===r?void 0:r.unwantedHeaderNamesInMocks)||void 0===s?void 0:s.includes)||void 0===i?void 0:i.call(s,t))||(null===(l=o.headers)||void 0===l?void 0:l[t])===n}))})).sort((([e],[t])=>{var n,o;const r=JSON.parse(Buffer.from(t,"base64").toString("ascii")),s=JSON.parse(Buffer.from(e,"base64").toString("ascii")),i=r.body?1:0,l=s.body?1:0;return Object.keys(null!==(n=r.headers)&&void 0!==n?n:{}).length+i-Object.keys(null!==(o=s.headers)&&void 0!==o?o:{}).length-l}))[0])||void 0===q?void 0:q[1]:null;if(Ce&&!Be&&e.mockConfig.strict)return void X(502,r,Buffer.from(N(new Error("No corresponding mock found in the server. \nTry switching back to the proxy mode"),e.mode,"mock",ie)));let Ie=null;const Te=O(),Ne=Object.assign(Object.assign({},[...Object.entries(n.headers)].filter((([e])=>!F.includes(e.toLowerCase()))).reduce(((e,[t,n])=>(e[t]=(e[t]||"")+(Array.isArray(n)?n:[n]).map((e=>null==e?void 0:e.replace(ie.hostname,pe))).join(", "),e)),{})),{origin:ce.href,referer:he.toString(),"content-length":null!==(L=null!==(j=null==ye?void 0:ye.length)&&void 0!==j?j:n.headers["content-length"])&&void 0!==L?L:0,":authority":pe,":method":n.method,":path":ge,":scheme":ce.protocol.replace(":","")}),qe=Ce&&Be?_({response:Be}):fe?A[ce.protocol.replace(/:$/,"")](se,e,n,{target:he,url:ie,proxyHostname:re,key:ae,requestBody:ye}):yield((e,n,r)=>t(void 0,void 0,void 0,(function*(){var e,t;let s=null,i="https:"===(null===(e=null==r?void 0:r.target)||void 0===e?void 0:e.protocol)&&!n.config.dontUseHttp2Downstream;const l=i?n.mode!==f.PROXY&&(null===(t=null==n?void 0:n.mockConfig)||void 0===t?void 0:t.strict)?null:yield Promise.race([new Promise((e=>{const t=(0,o.connect)(r.target,{timeout:n.config.connectTimeout,sessionTimeout:n.config.socketTimeout,rejectUnauthorized:!1,protocol:r.target.protocol},((n,o)=>{i=i&&!!o.alpnProtocol,e(i?t:null)}));t.on("error",(e=>{s=i?Buffer.from(N(e,n.mode,"connection",r.url,r.target)):null}))})),new Promise((e=>setTimeout((()=>{i=!1,e(null)}),n.config.connectTimeout)))]):null;if(s)throw s;return i?l:null})))(0,e,{target:he,url:ie}).then((t=>t||P(ce,ie,he,ge,n,Ne,ye,be,e.mode))).catch((e=>(Ie=e,null))),je=(null===(D=null===(M=null==qe?void 0:qe.alpnProtocol)||void 0===M?void 0:M.startsWith)||void 0===D?void 0:D.call(M,"h2"))?"HTTP/2":null!==(J=null==qe?void 0:qe.alpnProtocol)&&void 0!==J?J:"HTTP1.1";e.notifyLogsListeners({level:"info",protocol:je,method:n.method,upstreamPath:le,downstreamPath:he.href,randomId:ve,uniqueHash:xe}),Ie instanceof Buffer||(Ie=null);const Pe=!Ie&&(null==qe?void 0:qe.request(Ne,{endStream:e.config.ssl?!(null==we||we):!Oe}));if("object"==typeof Pe&&(null===(K=null==Pe?void 0:Pe.on)||void 0===K||K.call(Pe,"error",(t=>{const n=-505===t.errno;Ie=Buffer.from(N(t,e.mode,"stream"+(n?" (error -505 usually means that the downstream service does not support this http version)":""),ie,he))}))),Ie)return void X(502,r,Ie);Ie=null,we&&Pe&&!be?(n.stream.on("data",(e=>{Pe.write(e)})),n.stream.on("end",(()=>Pe.end()))):Oe&&Pe&&!be?(n.on("data",(e=>{Pe.write(e)})),n.on("end",(()=>Pe.end()))):Pe&&be&&$e&&!Pe.writableEnded&&(Pe.write(ye),Pe.end());const{outboundResponseHeaders:Ae}=yield new Promise((e=>{var t,n;return null!==(n=null===(t=null==Pe?void 0:Pe.on)||void 0===t?void 0:t.call(Pe,"response",(t=>{e({outboundResponseHeaders:t})})))&&void 0!==n?n:e({outboundResponseHeaders:{}})}));let Le=null;try{Ae.location&&(Le=new i.URL(Ae.location.startsWith("/")?`${ce.origin}${Ae.location.replace(/^\/+/,"/")}`:Ae.location.replace(/^file:\/+/,"file:///").replace(/^(http)(s?):\/+/,"$1$2://")))}catch(t){yield e.log([[{text:`${g.ERROR_4} location replacement error ${(null!==(Q=Ae.location)&&void 0!==Q?Q:"").slice(-13)}`,color:m.WARNING}]])}const He=e.config.replaceResponseBodyUrls&&Le?new i.URL(G(Le.href,{direction:h.INBOUND,proxyHostnameAndPort:se,ssl:!!e.config.ssl,mapping:null!==(V=e.config.mapping)&&void 0!==V?V:{}}).replace(new RegExp(`^(${H.join("|")})/+`),"")):Le,Ue=Le?(null==He?void 0:He.origin)!==Le.origin||e.config.dontTranslateLocationHeader?He:`${ie.origin}${He.href.substring(He.origin.length)}`:Le,Me=null!=Ie?Ie:yield new Promise((e=>{var t,n;let o=Buffer.alloc(0);Pe?(null===(t=null==Pe?void 0:Pe.on)||void 0===t||t.call(Pe,"data",(t=>{o=Buffer.concat([o,"string"==typeof t?Buffer.from(t):t]),Re&&e(o)})),null===(n=null==Pe?void 0:Pe.on)||void 0===n||n.call(Pe,"end",(()=>{e(o)}))):e(o)})).then((t=>{var n,o;return e.config.replaceResponseBodyUrls&&t.length?H.some((e=>ce.protocol===e))?t:z(t,Ae,{proxyHostnameAndPort:se,proxyHostname:re,key:ae,direction:h.INBOUND,mapping:null!==(n=e.config.mapping)&&void 0!==n?n:{},port:null!==(o=e.config.port)&&void 0!==o?o:U.port,ssl:!!e.config.ssl}).catch((t=>(X(502,r,Buffer.from(N(t,e.mode,"stream",ie,he))),Buffer.from("")))):t})),We=Object.assign(Object.assign({},Object.entries(Object.assign(Object.assign(Object.assign(Object.assign({},Ae),e.config.replaceResponseBodyUrls&&!Re?{"content-length":`${Me.byteLength}`}:{}),e.config.disableWebSecurity?{"content-security-policy":"report only","access-control-allow-headers":"*","access-control-allow-method":"*","access-control-allow-origin":"*"}:{}),Re?{"cache-control":"no-cache","x-accel-buffering":"no"}:{})).filter((([e])=>!e.startsWith(":")&&!F.includes(e.toLowerCase()))).reduce(((e,[t,n])=>{const o=pe.split("").map(((e,t)=>pe.substring(t).startsWith(".")&&pe.substring(t))).filter((e=>e)),r=[pe].concat(o).reduce(((e,t)=>(Array.isArray(e)?e:[e]).map((e=>"string"==typeof e?e.replace(`Domain=${t}`,`Domain=${ie.hostname}`):e))),n);return e[t]=(e[t]||[]).concat(r),e}),{})),Ue?{location:[Ue]}:{});try{Object.entries(We).forEach((([e,t])=>t&&r.setHeader(e,t)))}catch(e){}const De=null!==(ee=Ae[":status"])&&void 0!==ee?ee:200;try{e.config.ssl?r.writeHead(De,We):r.writeHead(De,"HTTP/2"===je?"":null!==(ne=null===(te=Ae[":statusmessage"])||void 0===te?void 0:te.toString())&&void 0!==ne?ne:"",We)}catch(e){}Re?(r.write(Me),null===(oe=null==Pe?void 0:Pe.on)||void 0===oe||oe.call(Pe,"data",(e=>r.write(e)))):Me?r.end(Me):r.end();const Fe=O(),Je=Ee||Se?Buffer.from(JSON.stringify({body:null==Me?void 0:Me.toString("base64"),headers:Ae,status:De})).toString("base64"):"";e.notifyLogsListeners({randomId:ve,statusCode:De,protocol:je,duration:Math.floor(Number(Fe-Te)/1e6),uniqueHash:xe,response:Je}),!Se||e.config.logAccessInTerminal||fe||(e.mockConfig.mocks.set(xe,Je),u.stdout.moveCursor(0,-1,(()=>u.stdout.clearLine(-1,e.quickStatus))))}))};exports.serve=V;const ee=(e,t)=>{"EACCES"===t.code&&setTimeout((()=>e.log([[{text:`${g.NO} permission denied for this port`,color:m.ERROR}]])),10),"EADDRINUSE"===t.code&&setTimeout((()=>e.log([[{text:`${g.ERROR_6} port is already used. NOT started`,color:m.ERROR}]])),10)};exports.errorListener=ee;const te=e=>ne({config:Object.assign(Object.assign({},U),e)},{server:null});exports.start=te;const ne=(e,n)=>t(void 0,void 0,void 0,(function*(){var s,i,a,d,c,u,p,h,v,y,k,O,w,$,E,S,B,N,q,j,P,A,L,H,U,W;if(0===Object.keys(null!=n?n:{}).length&&e.server)return n;if(null==n?void 0:n.pendingConfigSave)return(0,l.writeFile)(b,JSON.stringify(n.pendingConfigSave,null,2),(t=>{var n,o;t?null===(n=e.log)||void 0===n||n.call(e,[[{text:`${g.ERROR_4} config file NOT saved`,color:m.ERROR}]]):null===(o=e.log)||void 0===o||o.call(e,[[{text:`${g.COLORED} config file saved... will reload`,color:m.INFO}]])})),e;if(null===(null==n?void 0:n.configListeners)&&(yield Promise.all((null!==(s=e.configListeners)&&void 0!==s?s:[]).map((e=>new Promise((t=>e.stream.end(t))))))),null===(null==n?void 0:n.logsListeners)&&(yield Promise.all((null!==(i=e.configListeners)&&void 0!==i?i:[]).map((e=>new Promise((t=>e.stream.end(t))))))),null===(null==n?void 0:n.server)&&e.server){const t=yield Promise.race([new Promise((t=>{var n;return null===(n=e.server)||void 0===n?void 0:n.close(t)})).then((()=>!0)),new Promise((e=>setTimeout(e,5e3))).then((()=>!1))]);t||(yield null===(a=e.log)||void 0===a?void 0:a.call(e,[[{text:`${g.RESTART} error during restart (websockets ?)`,color:m.WARNING}]]))}(null!==(d=e.configListeners)&&void 0!==d?d:[]).concat(null!==(c=e.logsListeners)&&void 0!==c?c:[]).filter((e=>e.stream.errored||e.stream.closed)).forEach((e=>e.stream.destroy()));const D=null!==(u=null==n?void 0:n.config)&&void 0!==u?u:e.config,F=null!==(h=null!==(p=null==n?void 0:n.mode)&&void 0!==p?p:e.mode)&&void 0!==h?h:f.PROXY,J=null!==(O=null!==(y=null===(v=null==n?void 0:n.mockConfig)||void 0===v?void 0:v.autoRecord)&&void 0!==y?y:null===(k=e.mockConfig)||void 0===k?void 0:k.autoRecord)&&void 0!==O&&O,_=null!==(S=null!==($=null===(w=null==n?void 0:n.mockConfig)||void 0===w?void 0:w.strict)&&void 0!==$?$:null===(E=e.mockConfig)||void 0===E?void 0:E.strict)&&void 0!==S&&S,K=null!==(j=null!==(N=null===(B=null==n?void 0:n.mockConfig)||void 0===B?void 0:B.mocks)&&void 0!==N?N:null===(q=e.mockConfig)||void 0===q?void 0:q.mocks)&&void 0!==j?j:new Map,z=(null===(null==n?void 0:n.configListeners)?[]:null!==(A=null!==(P=null==n?void 0:n.configListeners)&&void 0!==P?P:e.configListeners)&&void 0!==A?A:[]).filter((e=>!e.stream.errored&&!e.stream.closed)),G=(null===(null==n?void 0:n.logsListeners)?[]:null!==(H=null!==(L=null==n?void 0:n.logsListeners)&&void 0!==L?L:e.logsListeners)&&void 0!==H?H:[]).filter((e=>!e.stream.errored&&!e.stream.closed)),Y=e;return Object.assign(Y,{config:D,logsListeners:G,configListeners:z,mode:F,mockConfig:{mocks:K,strict:_,autoRecord:J},configFileWatcher:void 0===Y.configFileWatcher?(0,l.watchFile)(b,(e=>t(void 0,void 0,void 0,(function*(){ne(Y,e.isFile()?yield function(e){return t(this,void 0,void 0,(function*(){var t,n,o,r,s;const i=e.config,l=yield M(!1),a=[];if(!l)return{};if(isNaN(null!==(t=null==l?void 0:l.port)&&void 0!==t?t:NaN)||(null!==(n=null==l?void 0:l.port)&&void 0!==n?n:-1)>65535||(null!==(o=null==l?void 0:l.port)&&void 0!==o?o:-1)<0)return yield e.log([[{text:`${g.PORT} port number invalid. Not refreshing`,color:m.ERROR}]]),{};if((null===(r=null==l?void 0:l.mapping)||void 0===r?void 0:r[""])||a.push({text:`${g.ERROR_3} default mapping "" not provided.`,color:m.WARNING}),"object"!=typeof l.mapping)return e.log([[{text:`${g.ERROR_5} mapping should be an object. Aborting`,color:m.ERROR}]]),{};l.replaceRequestBodyUrls!==i.replaceRequestBodyUrls&&a.push({text:`${g.REWRITE} request body url ${l.replaceRequestBodyUrls?"":"NO "}rewriting`,color:m.INFO}),l.replaceResponseBodyUrls!==i.replaceResponseBodyUrls&&a.push({text:`${g.REWRITE} response body url ${l.replaceResponseBodyUrls?"":"NO "}rewriting`,color:m.INFO}),l.dontTranslateLocationHeader!==i.dontTranslateLocationHeader&&a.push({text:`${g.REWRITE} response location header ${l.dontTranslateLocationHeader?"NO ":""}translation`,color:m.INFO}),l.dontUseHttp2Downstream!==i.dontUseHttp2Downstream&&a.push({text:`${g.OUTBOUND} http/2 ${l.dontUseHttp2Downstream?"de":""}activated downstream`,color:m.INFO}),l.disableWebSecurity!==i.disableWebSecurity&&a.push({text:`${g.SHIELD} web security ${l.disableWebSecurity?"de":""}activated`,color:m.INFO}),l.websocket!==i.websocket&&a.push({text:`${g.WEBSOCKET} websocket ${l.websocket?"":"de"}activated`,color:m.INFO}),l.logAccessInTerminal!==i.logAccessInTerminal&&a.push({text:`${g.LOGS} access terminal logging ${l.logAccessInTerminal?"on":"off"}`,color:m.INFO}),l.simpleLogs!==i.simpleLogs&&a.push({text:`${g.COLORED} simple logs ${l.simpleLogs?"on":"off"}`,color:m.INFO}),Object.keys(l.mapping).join("\n")!==Object.keys(null!==(s=i.mapping)&&void 0!==s?s:{}).join("\n")&&a.push({text:`${g.RULES} ${Object.keys(l.mapping).length.toString().padStart(5)} loaded mapping rules`,color:m.INFO}),l.port!==i.port&&a.push({text:`${g.PORT} port changed from ${i.port} to ${l.port}`,color:m.INFO}),l.ssl&&!i.ssl&&a.push({text:`${g.INBOUND} ssl configuration added`,color:m.INFO}),!l.ssl&&i.ssl&&a.push({text:`${g.INBOUND} ssl configuration removed`,color:m.INFO});const d=l.port!==i.port||JSON.stringify(l.ssl)!==JSON.stringify(i.ssl);return d&&a.push({text:`${g.RESTART} restarting server`,color:m.INFO}),setTimeout((()=>{T.apply(Object.assign(Object.assign({},e),{config:l}),[a.map((e=>[e]))])}),1),{config:l,server:d?null:void 0}}))}(Y):{server:null})})))):Y.configFileWatcher,log:R.bind(Y,Y),notifyConfigListeners:x.bind(Y),notifyLogsListeners:C.bind(Y),buildQuickStatus:I.bind(Y),quickStatus:T.bind(Y),server:null!==(null==n?void 0:n.server)||(null!==(W=null===(U=null==n?void 0:n.config)||void 0===U?void 0:U.port)&&void 0!==W?W:0)<0?(null==n?void 0:n.server)?Y.server:null:((null==D?void 0:D.ssl)?o.createSecureServer.bind(null,Object.assign(Object.assign({},D.ssl),{allowHTTP1:!0})):r.createServer)(((e,t)=>V(Y,e,t))).addListener("error",(e=>ee(Y,e))).on("upgrade",((e,t)=>ne(Y,Q(Y,e,t)))).listen(null==D?void 0:D.port)}),Y}));if(exports.update=ne,k){const e=Math.floor(40151+9e3*Math.random()),t=(t,n)=>(0,r.request)({hostname:"localhost",port:e,path:"/config/",method:"GET",headers:{Accept:"text/html"},timeout:500},(e=>n({response:e,state:t}))).on("error",(e=>n({error:e,state:t}))).end();ne({config:Object.assign(Object.assign({},U),{port:e}),configFileWatcher:null},{server:null}).then((e=>new Promise((n=>setTimeout(t.bind(null,e,n),1e3))))).then((({state:e,response:t})=>200!==t.statusCode?Promise.reject("Crash test has failed"):ne(e,{config:{port:-1},server:null}))).then((e=>new Promise((n=>setTimeout(t.bind(null,e,n),1e3))))).then((({error:e})=>"ECONNREFUSED"!==(null==e?void 0:e.code)?Promise.reject("Server should have stopped"):R({config:{simpleLogs:!0}},[[{text:`${g.COLORED} Crash test successful`,color:m.INFO}]]))).then((()=>(0,u.exit)(0))).catch((()=>(0,u.exit)(1)))}!k&&y&&M().then(te).then((e=>e.quickStatus()));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "local-traffic",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"main": "./dist/local-traffic.js",
|
|
5
5
|
"private": false,
|
|
6
6
|
"keywords": [
|
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
"test": "node ./test/tests.spec.mjs"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@types/node": "^20.14.
|
|
33
|
+
"@types/node": "^20.14.10",
|
|
34
34
|
"terser": "^5.31.1",
|
|
35
|
-
"typescript": "^5.
|
|
35
|
+
"typescript": "^5.5.3"
|
|
36
36
|
},
|
|
37
37
|
"bin": {
|
|
38
38
|
"local-traffic": "dist/local-traffic.js"
|