github-actions[bot]
Update from GitHub Actions
f8f5b35
import{e,f as t,j as n,h as s,$ as a,i}from"../nitro/nitro.mjs";import o from"node:fs";import c from"node:path";const l=c.join(process.env.CONFIG_PATH||"","config.json"),u=c.join(process.env.CONFIG_PATH||"","conversation.json");function loadConfig(e){try{const t=o.readFileSync(e,"utf8");return JSON.parse(t)}catch(t){console.error("Error loading config file:",e,t.message)}return null}const g=loadConfig(l),d=loadConfig(u);function getKVBinding(t="STORAGE"){return function(t){let n="[binding]";if("string"==typeof t&&(n=t,t=globalThis[n]||globalThis.__env__?.[n]),!t)throw e("cloudflare",`Invalid binding \`${n}\`: \`${t}\``);for(const s of["get","put","delete"])if(!(s in t))throw e("cloudflare",`Invalid binding \`${n}\`: \`${s}\` key is missing`);return t}(t)}const m=t((e=>{const r=(t="")=>e.base?n(e.base,t):t;async function getKeys(t=""){t=r(t);const n=getKVBinding(e.binding),s=[];let a;do{const e=await n.list({prefix:t||void 0,cursor:a});s.push(...e.keys),a=e.list_complete?void 0:e.cursor}while(a);return s.map((e=>e.name))}return{name:"cloudflare-kv-binding",options:e,getInstance:()=>getKVBinding(e.binding),async hasItem(t){t=r(t);const n=getKVBinding(e.binding);return null!==await n.get(t)},getItem(t){t=r(t);return getKVBinding(e.binding).get(t)},setItem(t,n,s){t=r(t);return getKVBinding(e.binding).put(t,n,s?{expirationTtl:s?.ttl?Math.max(s.ttl,e.minTTL??60):void 0,...s}:void 0)},removeItem(t){t=r(t);return getKVBinding(e.binding).delete(t)},getKeys:t=>getKeys(t).then((t=>t.map((t=>e.base?t.slice(e.base.length):t)))),async clear(t){const n=getKVBinding(e.binding),s=await getKeys(t);await Promise.all(s.map((e=>n.delete(e))))}}})),p=t((()=>{const e=new Map;return{name:"memory",getInstance:()=>e,hasItem:t=>e.has(t),getItem:t=>e.get(t)??null,getItemRaw:t=>e.get(t)??null,setItem(t,n){e.set(t,n)},setItemRaw(t,n){e.set(t,n)},removeItem(t){e.delete(t)},getKeys:()=>[...e.keys()],clear(){e.clear()},dispose(){e.clear()}}})),h="cloudflare-kv-http",f=t((t=>{if(!t.accountId)throw s(h,"accountId");if(!t.namespaceId)throw s(h,"namespaceId");let i;if("apiToken"in t)i={Authorization:`Bearer ${t.apiToken}`};else if("userServiceKey"in t)i={"X-Auth-User-Service-Key":t.userServiceKey};else{if(!t.email||!t.apiKey)throw e(h,"One of the `apiToken`, `userServiceKey`, or a combination of `email` and `apiKey` is required.");i={"X-Auth-Email":t.email,"X-Auth-Key":t.apiKey}}const o=`${t.apiURL||"https://api.cloudflare.com"}/client/v4/accounts/${t.accountId}/storage/kv/namespaces/${t.namespaceId}`,c=a.create({baseURL:o,headers:i}),r=(e="")=>t.base?n(t.base,e):e,getKeys=async e=>{const n=[],s={};(e||t.base)&&(s.prefix=r(e));const a=await c("/keys",{params:s});for(const e of a.result)n.push(e.name);const i=a.result_info.cursor;for(i&&(s.cursor=i);s.cursor;){const e=await c("/keys",{params:s});for(const t of e.result)n.push(t.name);const t=e.result_info.cursor;s.cursor=t||void 0}return n};return{name:h,options:t,hasItem:async e=>{try{const t=await c(`/metadata/${r(e)}`);return!0===t?.success}catch(e){if(!e?.response)throw e;if(404===e?.response?.status)return!1;throw e}},getItem:async e=>{try{return await c(`/values/${r(e)}`).then((e=>e.text()))}catch(e){if(!e?.response)throw e;if(404===e?.response?.status)return null;throw e}},setItem:async(e,n,s)=>await c(`/values/${r(e)}`,{method:"PUT",body:n,query:s?.ttl?{expiration_ttl:Math.max(s?.ttl,t.minTTL||60)}:void 0}),removeItem:async e=>await c(`/values/${r(e)}`,{method:"DELETE"}),getKeys:e=>getKeys(e).then((e=>e.map((e=>t.base?e.slice(t.base.length):e)))),clear:async()=>{const e=(await getKeys()).reduce(((e,t,n)=>(n%1e4==0&&e.push([]),e[e.length-1].push(t),e)),[[]]);await Promise.all(e.map((e=>{if(e.length>0)return c("/bulk/delete",{method:"POST",body:e})})))}}}));var v=Object.defineProperty,__publicField=(e,t,n)=>((e,t,n)=>t in e?v(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n)(e,t+"",n);function createStorageDriver(e,t){if("cloudflareKVHTTP"===e){const e=t;return i({driver:f({apiURL:e.apiURL,accountId:e.accountId,namespaceId:e.namespaceId,apiToken:e.apiToken})})}}const I=i({driver:p()});class AppStorage{constructor(){__publicField(this,"storage"),this.init()}init(){if(!this.storage)if(process.env&&process.env.STORAGE)this.storage=i({driver:m({binding:process.env.STORAGE})});else if(process.env&&process.env.STORAGE_DRIVER){const e=process.env.STORAGE_DRIVER,t={apiURL:process.env.STORAGE_API_URL,accountId:process.env.STORAGE_ACCOUNT_ID,namespaceId:process.env.STORAGE_NAMESPACE_ID,apiToken:process.env.STORAGE_API_TOKEN};this.storage=createStorageDriver(e,t)}else if(null!=g){const e=g.setting.drivers.currentDriver,t=g.setting.drivers[e];this.storage=createStorageDriver(e,t)}else this.storage=I}async getItem(e,t){return this.init(),await this.storage.getItem(e,t)}async setItem(e,t,n){this.init(),await this.storage.setItem(e,t,n)}async removeItem(e,t){this.init(),await this.storage.removeItem(e,t)}async setCache(e,t,n){const s={value:t,expiry:Date.now()+n};await this.setItem(e,s)}async getCache(e){const t=await this.getItem(e);return t?Date.now()>t.expiry?(await this.removeItem(e),null):t.value:null}async deleteCache(e){await this.removeItem(e)}}const y="device_id",w="google_code";let b=null;const getStorage=()=>b||(b=new AppStorage,b);export{y as D,w as G,createStorageDriver as a,d as c,getStorage as g};