-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
26 changed files
with
618 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "chatgpt-web-midjourney-proxy", | ||
"version": "2.21.5", | ||
"version": "2.21.6", | ||
"private": false, | ||
"description": "ChatGPT Web Midjourney Proxy", | ||
"author": "Dooy <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
import { gptServerStore, homeStore, useAuthStore } from "@/store"; | ||
import { mlog } from "./mjapi"; | ||
import { sleep } from "./suno"; | ||
import { RunwayTask, runwayStore } from "./runwayStore"; | ||
import { PikaTask, pikaStore } from "./pikaStore"; | ||
|
||
function getHeaderAuthorization(){ | ||
let headers={} | ||
if( homeStore.myData.vtoken ){ | ||
const vtokenh={ 'x-vtoken': homeStore.myData.vtoken ,'x-ctoken': homeStore.myData.ctoken}; | ||
headers= {...headers, ...vtokenh} | ||
} | ||
if(!gptServerStore.myData.RUNWAY_KEY){ | ||
const authStore = useAuthStore() | ||
if( authStore.token ) { | ||
const bmi= { 'x-ptoken': authStore.token }; | ||
headers= {...headers, ...bmi } | ||
return headers; | ||
} | ||
return headers | ||
} | ||
const bmi={ | ||
'Authorization': 'Bearer ' +gptServerStore.myData.PIKA_KEY | ||
} | ||
headers= {...headers, ...bmi } | ||
return headers | ||
} | ||
|
||
export const getUrl=(url:string)=>{ | ||
if(url.indexOf('http')==0) return url; | ||
|
||
const pro_prefix= url.indexOf('/pro')>-1?'/pro':'';//homeStore.myData.is_luma_pro?'/pro':'' | ||
url= url.replaceAll('/pro','') | ||
if(gptServerStore.myData.PIKA_SERVER ){ | ||
if(gptServerStore.myData.PIKA_SERVER.indexOf('/pro')>0){ | ||
return `${ gptServerStore.myData.PIKA_SERVER}/pika${url}`; | ||
} | ||
return `${ gptServerStore.myData.PIKA_SERVER}${pro_prefix}/pika${url}`; | ||
} | ||
return `${pro_prefix}/pika${url}`; | ||
} | ||
|
||
|
||
export const pikaFetch=(url:string,data?:any,opt2?:any )=>{ | ||
mlog('pikaFetch', url ); | ||
let headers= opt2?.upFile?{}: {'Content-Type':'application/json'} | ||
|
||
if(opt2 && opt2.headers ) headers= opt2.headers; | ||
|
||
headers={...headers,...getHeaderAuthorization()} | ||
|
||
return new Promise<any>((resolve, reject) => { | ||
let opt:RequestInit ={method:'GET'}; | ||
|
||
opt.headers= headers ; | ||
if(opt2?.upFile ){ | ||
opt.method='POST'; | ||
opt.body=data as FormData ; | ||
} | ||
else if(data) { | ||
opt.body= JSON.stringify(data) ; | ||
opt.method='POST'; | ||
} | ||
fetch(getUrl(url), opt ) | ||
.then( async (d) =>{ | ||
if (!d.ok) { | ||
let msg = '发生错误: '+ d.status | ||
try{ | ||
let bjson:any = await d.json(); | ||
msg = '('+ d.status+')发生错误: '+(bjson?.error?.message??'' ) | ||
}catch( e ){ | ||
} | ||
homeStore.myData.ms && homeStore.myData.ms.error(msg ) | ||
throw new Error( msg ); | ||
} | ||
|
||
d.json().then(d=> resolve(d)).catch(e=>{ | ||
|
||
homeStore.myData.ms && homeStore.myData.ms.error('发生错误'+ e ) | ||
reject(e) | ||
} | ||
)}) | ||
.catch(e=>{ | ||
if (e.name === 'TypeError' && e.message === 'Failed to fetch') { | ||
homeStore.myData.ms && homeStore.myData.ms.error('跨域|CORS error' ) | ||
} | ||
else homeStore.myData.ms && homeStore.myData.ms.error('发生错误:'+e ) | ||
mlog('e', e.stat ) | ||
reject(e) | ||
}) | ||
}) | ||
|
||
} | ||
|
||
export const pikaFeed= async(id:string)=>{ | ||
const sunoS = new pikaStore(); | ||
for(let i=0; i<200;i++){ | ||
try{ | ||
let a= await pikaFetch('/feed/' +id ) | ||
let task= a as PikaTask; | ||
mlog("task",a ) | ||
if(!task.videos || task.videos.length==0) continue; | ||
task.last_feed=new Date().getTime() | ||
|
||
|
||
sunoS.save( task ) | ||
homeStore.setMyData({act:'PikaFeed'}); | ||
if( task.videos[0].status=='error' || 'finished'== task.videos[0].status ){ | ||
break; | ||
} | ||
}catch(e){ | ||
} | ||
await sleep(5200) | ||
} | ||
|
||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
import { ss } from "@/utils/storage"; | ||
interface Video { | ||
id: string; | ||
status: string; | ||
seed: number; | ||
resultUrl: string; | ||
sharingUrl: string; | ||
videoPoster: string; | ||
imageThumb: string; | ||
duration: number; | ||
error: string; | ||
progress: number; | ||
} | ||
|
||
// 定义主结构体接口 | ||
export interface PikaTask { | ||
id: string; | ||
promptText: string; | ||
videos: Video[]; | ||
last_feed?:number; | ||
} | ||
|
||
export class pikaStore{ | ||
//private id: string; | ||
private localKey='pika-store'; | ||
public save(obj:PikaTask ){ | ||
if(!obj.id ) throw "taskID must"; | ||
let arr= this.getObjs(); | ||
let i= arr.findIndex( v=>v.id==obj.id ); | ||
if(i>-1) arr[i]= obj; | ||
else arr.push(obj); | ||
ss.set(this.localKey, arr ); | ||
return this; | ||
} | ||
public findIndex(id:string){ | ||
return this.getObjs().findIndex( v=>v.id== id ) | ||
} | ||
|
||
public getObjs():PikaTask[]{ | ||
const obj = ss.get( this.localKey ) as undefined| PikaTask[]; | ||
if(!obj) return []; | ||
return obj; | ||
} | ||
public getOneById(id:string):PikaTask|null{ | ||
const i= this.findIndex(id) | ||
if(i<0) return null; | ||
let arr= this.getObjs(); | ||
return arr[i] | ||
} | ||
public delete( obj:PikaTask ){ | ||
if(!obj.id ) throw "id must"; | ||
let arr= this.getObjs(); | ||
let i= arr.findIndex( v=>v.id==obj.id ); | ||
if(i<0) return false | ||
arr.splice(i, 1); | ||
ss.set(this.localKey, arr ); | ||
return true; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.