@php-wasm/universal 0.1.39 → 0.1.41

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/index.cjs ADDED
@@ -0,0 +1,40 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});class y{constructor(e,t,r,n="",o=0){this.httpStatusCode=e,this.headers=t,this.bytes=r,this.exitCode=o,this.errors=n}static fromRawData(e){return new y(e.httpStatusCode,e.headers,e.bytes,e.errors,e.exitCode)}toRawData(){return{headers:this.headers,bytes:this.bytes,errors:this.errors,exitCode:this.exitCode,httpStatusCode:this.httpStatusCode}}get json(){return JSON.parse(this.text)}get text(){return new TextDecoder().decode(this.bytes)}}const v=["8.2","8.1","8.0","7.4","7.3","7.2","7.1","7.0","5.6"],$=v[0],B=v;class C{#e;#t;constructor(e,t={}){this.requestHandler=e,this.#e={},this.#t={handleRedirects:!1,maxRedirects:4,...t}}async request(e,t=0){const r=await this.requestHandler.request({...e,headers:{...e.headers,cookie:this.#n()}});if(r.headers["set-cookie"]&&this.#r(r.headers["set-cookie"]),this.#t.handleRedirects&&r.headers.location&&t<this.#t.maxRedirects){const n=new URL(r.headers.location[0],this.requestHandler.absoluteUrl);return this.request({url:n.toString(),method:"GET",headers:{}},t+1)}return r}pathToInternalUrl(e){return this.requestHandler.pathToInternalUrl(e)}internalUrlToPath(e){return this.requestHandler.internalUrlToPath(e)}get absoluteUrl(){return this.requestHandler.absoluteUrl}get documentRoot(){return this.requestHandler.documentRoot}#r(e){for(const t of e)try{if(!t.includes("="))continue;const r=t.indexOf("="),n=t.substring(0,r),o=t.substring(r+1).split(";")[0];this.#e[n]=o}catch(r){console.error(r)}}#n(){const e=[];for(const t in this.#e)e.push(`${t}=${this.#e[t]}`);return e.join("; ")}}class M{constructor({concurrency:e}){this._running=0,this.concurrency=e,this.queue=[]}get running(){return this._running}async acquire(){for(;;)if(this._running>=this.concurrency)await new Promise(e=>this.queue.push(e));else return this._running++,()=>{this._running--,this.queue.length>0&&this.queue.shift()()}}async run(e){const t=await this.acquire();try{return await e()}finally{t()}}}const U="http://example.com";function w(s){return s.toString().substring(s.origin.length)}function P(s,e){return!e||!s.startsWith(e)?s:s.substring(e.length)}function A(s,e){return!e||s.startsWith(e)?s:e+s}class O{#e;#t;#r;#n;#o;#s;#i;#a;#l;constructor(e,t={}){this.#a=new M({concurrency:1});const{documentRoot:r="/www/",absoluteUrl:n=typeof location=="object"?location?.href:"",isStaticFilePath:o=()=>!1}=t;this.php=e,this.#e=r,this.#l=o;const i=new URL(n);this.#r=i.hostname,this.#n=i.port?Number(i.port):i.protocol==="https:"?443:80,this.#t=(i.protocol||"").replace(":","");const l=this.#n!==443&&this.#n!==80;this.#o=[this.#r,l?`:${this.#n}`:""].join(""),this.#s=i.pathname.replace(/\/+$/,""),this.#i=[`${this.#t}://`,this.#o,this.#s].join("")}pathToInternalUrl(e){return`${this.absoluteUrl}${e}`}internalUrlToPath(e){const t=new URL(e);return t.pathname.startsWith(this.#s)&&(t.pathname=t.pathname.slice(this.#s.length)),w(t)}get isRequestRunning(){return this.#a.running>0}get absoluteUrl(){return this.#i}get documentRoot(){return this.#e}async request(e){const t=e.url.startsWith("http://")||e.url.startsWith("https://"),r=new URL(e.url,t?void 0:U),n=P(r.pathname,this.#s);return this.#l(n)?this.#c(n):await this.#h(e,r)}#c(e){const t=`${this.#e}${e}`;if(!this.php.fileExists(t))return new y(404,{},new TextEncoder().encode("404 File not found"));const r=this.php.readFileAsBuffer(t);return new y(200,{"content-length":[`${r.byteLength}`],"content-type":[q(t)],"accept-ranges":["bytes"],"cache-control":["public, max-age=0"]},r)}async#h(e,t){const r=await this.#a.acquire();try{this.php.addServerGlobalEntry("DOCUMENT_ROOT",this.#e),this.php.addServerGlobalEntry("HTTPS",this.#i.startsWith("https://")?"on":"");let n="GET";const o={host:this.#o,...I(e.headers||{})},i=[];if(e.files&&Object.keys(e.files).length){n="POST";for(const c in e.files){const p=e.files[c];i.push({key:c,name:p.name,type:p.type,data:new Uint8Array(await p.arrayBuffer())})}o["content-type"]?.startsWith("multipart/form-data")&&(e.formData=D(e.body||""),o["content-type"]="application/x-www-form-urlencoded",delete e.body)}let l;return e.formData!==void 0?(n="POST",o["content-type"]=o["content-type"]||"application/x-www-form-urlencoded",l=new URLSearchParams(e.formData).toString()):l=e.body,await this.php.run({relativeUri:A(w(t),this.#s),protocol:this.#t,method:e.method||n,body:l,fileInfos:i,scriptPath:this.#u(t.pathname),headers:o})}finally{r()}}#u(e){let t=P(e,this.#s);t.includes(".php")?t=t.split(".php")[0]+".php":(t.endsWith("/")||(t+="/"),t.endsWith("index.php")||(t+="index.php"));const r=`${this.#e}${t}`;return this.php.fileExists(r)?r:`${this.#e}/index.php`}}function D(s){const e={},t=s.match(/--(.*)\r\n/);if(!t)return e;const r=t[1],n=s.split(`--${r}`);return n.shift(),n.pop(),n.forEach(o=>{const i=o.indexOf(`\r
2
+ \r
3
+ `),l=o.substring(0,i).trim(),c=o.substring(i+4).trim(),p=l.match(/name="([^"]+)"/);if(p){const g=p[1];e[g]=c}}),e}function q(s){switch(s.split(".").pop()){case"css":return"text/css";case"js":return"application/javascript";case"png":return"image/png";case"jpg":case"jpeg":return"image/jpeg";case"gif":return"image/gif";case"svg":return"image/svg+xml";case"woff":return"font/woff";case"woff2":return"font/woff2";case"ttf":return"font/ttf";case"otf":return"font/otf";case"eot":return"font/eot";case"ico":return"image/x-icon";case"html":return"text/html";case"json":return"application/json";case"xml":return"application/xml";case"txt":case"md":return"text/plain";default:return"application-octet-stream"}}const S={0:"No error occurred. System call completed successfully.",1:"Argument list too long.",2:"Permission denied.",3:"Address in use.",4:"Address not available.",5:"Address family not supported.",6:"Resource unavailable, or operation would block.",7:"Connection already in progress.",8:"Bad file descriptor.",9:"Bad message.",10:"Device or resource busy.",11:"Operation canceled.",12:"No child processes.",13:"Connection aborted.",14:"Connection refused.",15:"Connection reset.",16:"Resource deadlock would occur.",17:"Destination address required.",18:"Mathematics argument out of domain of function.",19:"Reserved.",20:"File exists.",21:"Bad address.",22:"File too large.",23:"Host is unreachable.",24:"Identifier removed.",25:"Illegal byte sequence.",26:"Operation in progress.",27:"Interrupted function.",28:"Invalid argument.",29:"I/O error.",30:"Socket is connected.",31:"There is a directory under that path.",32:"Too many levels of symbolic links.",33:"File descriptor value too large.",34:"Too many links.",35:"Message too large.",36:"Reserved.",37:"Filename too long.",38:"Network is down.",39:"Connection aborted by network.",40:"Network unreachable.",41:"Too many files open in system.",42:"No buffer space available.",43:"No such device.",44:"There is no such file or directory OR the parent directory does not exist.",45:"Executable file format error.",46:"No locks available.",47:"Reserved.",48:"Not enough space.",49:"No message of the desired type.",50:"Protocol not available.",51:"No space left on device.",52:"Function not supported.",53:"The socket is not connected.",54:"Not a directory or a symbolic link to a directory.",55:"Directory not empty.",56:"State not recoverable.",57:"Not a socket.",58:"Not supported, or operation not supported on socket.",59:"Inappropriate I/O control operation.",60:"No such device or address.",61:"Value too large to be stored in data type.",62:"Previous owner died.",63:"Operation not permitted.",64:"Broken pipe.",65:"Protocol error.",66:"Protocol not supported.",67:"Protocol wrong type for socket.",68:"Result too large.",69:"Read-only file system.",70:"Invalid seek.",71:"No such process.",72:"Reserved.",73:"Connection timed out.",74:"Text file busy.",75:"Cross-device link.",76:"Extension: Capabilities insufficient."};function d(s=""){return function(t,r,n){const o=n.value;n.value=function(...i){try{return o.apply(this,i)}catch(l){const c=typeof l=="object"?l?.errno:null;if(c in S){const p=S[c],g=typeof i[0]=="string"?i[0]:null,L=g!==null?s.replaceAll("{path}",g):s;throw new Error(`${L}: ${p}`,{cause:l})}throw l}}}}async function W(s,e={},t=[]){let r,n;const o=new Promise(c=>{n=c}),i=new Promise(c=>{r=c}),l=s.init(z,{onAbort(c){console.error("WASM aborted: "),console.error(c)},ENV:{},locateFile:c=>c,...e,noInitialRun:!0,onRuntimeInitialized(){e.onRuntimeInitialized&&e.onRuntimeInitialized(),r()},monitorRunDependencies(c){c===0&&(delete l.monitorRunDependencies,n())}});for(const{default:c}of t)c(l);return t.length||n(),await o,await i,b.push(l),b.length-1}const b=[];function j(s){return b[s]}const z=function(){return typeof process<"u"&&process.release?.name==="node"?"NODE":typeof window<"u"?"WEB":typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope?"WORKER":"NODE"}(),E=Symbol("error"),x=Symbol("message");class R extends Event{constructor(e,t={}){super(e),this[E]=t.error===void 0?null:t.error,this[x]=t.message===void 0?"":t.message}get error(){return this[E]}get message(){return this[x]}}Object.defineProperty(R.prototype,"error",{enumerable:!0});Object.defineProperty(R.prototype,"message",{enumerable:!0});const G=typeof globalThis.ErrorEvent=="function"?globalThis.ErrorEvent:R;class V extends EventTarget{constructor(){super(...arguments),this.listenersCount=0}addEventListener(e,t){++this.listenersCount,super.addEventListener(e,t)}removeEventListener(e,t){--this.listenersCount,super.removeEventListener(e,t)}hasListeners(){return this.listenersCount>0}}function Y(s){s.asm={...s.asm};const e=new V;for(const t in s.asm)if(typeof s.asm[t]=="function"){const r=s.asm[t];s.asm[t]=function(...n){try{return r(...n)}catch(o){if(!(o instanceof Error))throw o;if("exitCode"in o&&o?.exitCode===0)return;const i=K(o,s.lastAsyncifyStackSource?.stack);if(s.lastAsyncifyStackSource&&(o.cause=s.lastAsyncifyStackSource),!e.hasListeners())throw Z(i),o;e.dispatchEvent(new G("error",{error:o,message:i}))}}}return e}let _=[];function J(){return _}function K(s,e){if(s.message==="unreachable"){let t=Q;e||(t+=`
4
+
5
+ This stack trace is lacking. For a better one initialize
6
+ the PHP runtime with { debug: true }, e.g. PHPNode.load('8.1', { debug: true }).
7
+
8
+ `),_=ee(e||s.stack||"");for(const r of _)t+=` * ${r}
9
+ `;return t}return s.message}const Q=`
10
+ "unreachable" WASM instruction executed.
11
+
12
+ The typical reason is a PHP function missing from the ASYNCIFY_ONLY
13
+ list when building PHP.wasm.
14
+
15
+ You will need to file a new issue in the WordPress Playground repository
16
+ and paste this error message there:
17
+
18
+ https://github.com/WordPress/wordpress-playground/issues/new
19
+
20
+ If you're a core developer, the typical fix is to:
21
+
22
+ * Isolate a minimal reproduction of the error
23
+ * Add a reproduction of the error to php-asyncify.spec.ts in the WordPress Playground repository
24
+ * Run 'npm run fix-asyncify'
25
+ * Commit the changes, push to the repo, release updated NPM packages
26
+
27
+ Below is a list of all the PHP functions found in the stack trace to
28
+ help with the minimal reproduction. If they're all already listed in
29
+ the Dockerfile, you'll need to trigger this error again with long stack
30
+ traces enabled. In node.js, you can do it using the --stack-trace-limit=100
31
+ CLI option:
32
+
33
+ `,H="\x1B[41m",X="\x1B[1m",T="\x1B[0m",k="\x1B[K";let F=!1;function Z(s){if(!F){F=!0,console.log(`${H}
34
+ ${k}
35
+ ${X} WASM ERROR${T}${H}`);for(const e of s.split(`
36
+ `))console.log(`${k} ${e} `);console.log(`${T}`)}}function ee(s){try{const e=s.split(`
37
+ `).slice(1).map(t=>{const r=t.trim().substring(3).split(" ");return{fn:r.length>=2?r[0]:"<unknown>",isWasm:t.includes("wasm://")}}).filter(({fn:t,isWasm:r})=>r&&!t.startsWith("dynCall_")&&!t.startsWith("invoke_")).map(({fn:t})=>t);return Array.from(new Set(e))}catch{return[]}}var te=Object.defineProperty,re=Object.getOwnPropertyDescriptor,f=(s,e,t,r)=>{for(var n=r>1?void 0:r?re(e,t):e,o=s.length-1,i;o>=0;o--)(i=s[o])&&(n=(r?i(e,t,n):i(n))||n);return r&&n&&te(e,t,n),n};const h="string",m="number",a=Symbol("__private__dont__use");class u{constructor(e,t){this.#e=[],this.#t=!1,this.#r=null,e!==void 0&&this.initializeRuntime(e),t&&(this.requestHandler=new C(new O(this,t)))}#e;#t;#r;get absoluteUrl(){return this.requestHandler.requestHandler.absoluteUrl}get documentRoot(){return this.requestHandler.requestHandler.documentRoot}pathToInternalUrl(e){return this.requestHandler.requestHandler.pathToInternalUrl(e)}internalUrlToPath(e){return this.requestHandler.requestHandler.internalUrlToPath(e)}initializeRuntime(e){if(this[a])throw new Error("PHP runtime already initialized.");const t=j(e);if(!t)throw new Error("Invalid PHP runtime id.");this[a]=t,this.#r=Y(t)}setPhpIniPath(e){if(this.#t)throw new Error("Cannot set PHP ini path after calling run().");this[a].ccall("wasm_set_phpini_path",null,["string"],[e])}setPhpIniEntry(e,t){if(this.#t)throw new Error("Cannot set PHP ini entries after calling run().");this.#e.push([e,t])}chdir(e){this[a].FS.chdir(e)}async request(e,t){if(!this.requestHandler)throw new Error("No request handler available.");return this.requestHandler.request(e,t)}async run(e){this.#t||(this.#n(),this.#t=!0),this.#h(e.scriptPath||""),this.#s(e.relativeUri||""),this.#a(e.method||"GET");const{host:t,...r}={host:"example.com:443",...I(e.headers||{})};if(this.#i(t,e.protocol||"http"),this.#l(r),e.body&&this.#c(e.body),e.fileInfos)for(const n of e.fileInfos)this.#u(n);return e.code&&this.#d(" ?>"+e.code),await this.#p()}#n(){if(this.#e.length>0){const e=this.#e.map(([t,r])=>`${t}=${r}`).join(`
38
+ `)+`
39
+
40
+ `;this[a].ccall("wasm_set_phpini_entries",null,[h],[e])}this[a].ccall("php_wasm_init",null,[],[])}#o(){const e="/tmp/headers.json";if(!this.fileExists(e))throw new Error("SAPI Error: Could not find response headers file.");const t=JSON.parse(this.readFileAsText(e)),r={};for(const n of t.headers){if(!n.includes(": "))continue;const o=n.indexOf(": "),i=n.substring(0,o).toLowerCase(),l=n.substring(o+2);i in r||(r[i]=[]),r[i].push(l)}return{headers:r,httpStatusCode:t.status}}#s(e){if(this[a].ccall("wasm_set_request_uri",null,[h],[e]),e.includes("?")){const t=e.substring(e.indexOf("?")+1);this[a].ccall("wasm_set_query_string",null,[h],[t])}}#i(e,t){this[a].ccall("wasm_set_request_host",null,[h],[e]);let r;try{r=parseInt(new URL(e).port,10)}catch{}(!r||isNaN(r)||r===80)&&(r=t==="https"?443:80),this[a].ccall("wasm_set_request_port",null,[m],[r]),(t==="https"||!t&&r===443)&&this.addServerGlobalEntry("HTTPS","on")}#a(e){this[a].ccall("wasm_set_request_method",null,[h],[e])}#l(e){e.cookie&&this[a].ccall("wasm_set_cookies",null,[h],[e.cookie]),e["content-type"]&&this[a].ccall("wasm_set_content_type",null,[h],[e["content-type"]]),e["content-length"]&&this[a].ccall("wasm_set_content_length",null,[m],[parseInt(e["content-length"],10)]);for(const t in e)this.addServerGlobalEntry(`HTTP_${t.toUpperCase().replace(/-/g,"_")}`,e[t])}#c(e){this[a].ccall("wasm_set_request_body",null,[h],[e]),this[a].ccall("wasm_set_content_length",null,[m],[new TextEncoder().encode(e).length])}#h(e){this[a].ccall("wasm_set_path_translated",null,[h],[e])}addServerGlobalEntry(e,t){this[a].ccall("wasm_add_SERVER_entry",null,[h,h],[e,t])}#u(e){const{key:t,name:r,type:n,data:o}=e,i=`/tmp/${Math.random().toFixed(20)}`;this.writeFile(i,o);const l=0;this[a].ccall("wasm_add_uploaded_file",null,[h,h,h,h,m,m],[t,r,n,i,l,o.byteLength])}#d(e){this[a].ccall("wasm_set_php_code",null,[h],[e])}async#p(){let e,t;try{e=await new Promise(async(o,i)=>{t=l=>{const c=new Error("Rethrown");c.cause=l.error,c.betterMessage=l.message,i(c)},this.#r?.addEventListener("error",t);try{o(await await this[a].ccall("wasm_sapi_handle_request",m,[],[]))}catch(l){i(l)}})}catch(o){for(const p in this)typeof this[p]=="function"&&(this[p]=()=>{throw new Error("PHP runtime has crashed – see the earlier error for details.")});this.functionsMaybeMissingFromAsyncify=J();const i=o,l="betterMessage"in i?i.betterMessage:i.message,c=new Error(l);throw c.cause=i,c}finally{this.#r?.removeEventListener("error",t)}const{headers:r,httpStatusCode:n}=this.#o();return new y(n,r,this.readFileAsBuffer("/tmp/stdout"),this.readFileAsText("/tmp/stderr"),e)}mkdir(e){this[a].FS.mkdirTree(e)}mkdirTree(e){this.mkdir(e)}readFileAsText(e){return new TextDecoder().decode(this.readFileAsBuffer(e))}readFileAsBuffer(e){return this[a].FS.readFile(e)}writeFile(e,t){this[a].FS.writeFile(e,t)}unlink(e){this[a].FS.unlink(e)}mv(e,t){this[a].FS.mv(e,t)}rmdir(e,t={recursive:!0}){t?.recursive&&this.listFiles(e).forEach(r=>{const n=`${e}/${r}`;this.isDir(n)?this.rmdir(n,t):this.unlink(n)}),this[a].FS.rmdir(e)}listFiles(e){if(!this.fileExists(e))return[];try{return this[a].FS.readdir(e).filter(t=>t!=="."&&t!=="..")}catch(t){return console.error(t,{path:e}),[]}}isDir(e){return this.fileExists(e)?this[a].FS.isDir(this[a].FS.lookupPath(e).node.mode):!1}fileExists(e){try{return this[a].FS.lookupPath(e),!0}catch{return!1}}}f([d('Could not create directory "{path}"')],u.prototype,"mkdir",1);f([d('Could not create directory "{path}"')],u.prototype,"mkdirTree",1);f([d('Could not read "{path}"')],u.prototype,"readFileAsText",1);f([d('Could not read "{path}"')],u.prototype,"readFileAsBuffer",1);f([d('Could not write to "{path}"')],u.prototype,"writeFile",1);f([d('Could not unlink "{path}"')],u.prototype,"unlink",1);f([d('Could not move "{path}"')],u.prototype,"mv",1);f([d('Could not remove directory "{path}"')],u.prototype,"rmdir",1);f([d('Could not list files in "{path}"')],u.prototype,"listFiles",1);f([d('Could not stat "{path}"')],u.prototype,"isDir",1);f([d('Could not stat "{path}"')],u.prototype,"fileExists",1);function I(s){const e={};for(const t in s)e[t.toLowerCase()]=s[t];return e}function N(s){return!(s instanceof u)}function se(s){return!N(s)}exports.BasePHP=u;exports.DEFAULT_BASE_URL=U;exports.LatestSupportedPHPVersion=$;exports.PHPBrowser=C;exports.PHPRequestHandler=O;exports.PHPResponse=y;exports.SupportedPHPVersions=v;exports.SupportedPHPVersionsList=B;exports.__private__dont__use=a;exports.ensurePathPrefix=A;exports.isLocalPHP=N;exports.isRemotePHP=se;exports.loadPHPRuntime=W;exports.removePathPrefix=P;exports.rethrowFileSystemError=d;exports.toRelativeUrl=w;