Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
N
Neos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MyCard
Neos
Commits
b0857ffd
Commit
b0857ffd
authored
Oct 09, 2024
by
Chunchi Che
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add env 408 cdb
parent
4d3a42d2
Pipeline
#30286
failed with stages
in 9 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
99 additions
and
114 deletions
+99
-114
neos.config.json
neos.config.json
+4
-0
neos.config.prod.json
neos.config.prod.json
+4
-0
src/container/impl.ts
src/container/impl.ts
+4
-1
src/middleware/sqlite/index.ts
src/middleware/sqlite/index.ts
+87
-113
No files found.
neos.config.json
View file @
b0857ffd
...
...
@@ -39,6 +39,10 @@
"lflist"
:
"https://cdn02.moecube.com:444/ygopro-database/zh-CN/lflist.conf"
,
"config"
:
"https://cdn02.moecube.com:444/ygopro-super-pre/data/test-release-v2.json"
},
"env408Resource"
:
{
"cdb"
:
"https://cdn02.moecube.com:444/cn-database/env408-zh-CN/expansions/env408.cdb"
,
"lflist"
:
"https://cdn02.moecube.com:444/cn-database/env408-zh-CN/expansions/lflist.conf"
},
"stringsUrl"
:
"https://cdn02.moecube.com:444/ygopro-database/zh-CN/strings.conf"
,
"replayUrl"
:
"replay.neos.moe"
,
"loginUrl"
:
"https://accounts.moecube.com/signin"
,
...
...
neos.config.prod.json
View file @
b0857ffd
...
...
@@ -39,6 +39,10 @@
"lflist"
:
"https://cdn02.moecube.com:444/ygopro-database/zh-CN/lflist.conf"
,
"config"
:
"https://cdn02.moecube.com:444/ygopro-super-pre/data/test-release-v2.json"
},
"env408Resource"
:
{
"cdb"
:
"https://cdn02.moecube.com:444/cn-database/env408-zh-CN/expansions/env408.cdb"
,
"lflist"
:
"https://cdn02.moecube.com:444/cn-database/env408-zh-CN/expansions/lflist.conf"
},
"stringsUrl"
:
"https://cdn02.moecube.com:444/ygopro-database/zh-CN/strings.conf"
,
"replayUrl"
:
"replay.neos.moe"
,
"loginUrl"
:
"https://accounts.moecube.com/signin"
,
...
...
src/container/impl.ts
View file @
b0857ffd
import
{
WebSocketStream
}
from
"
@/infra
"
;
import
{
Context
}
from
"
./context
"
;
import
{
YgoCdb
}
from
"
@/middleware/sqlite
"
;
export
class
Container
{
public
context
:
Context
;
public
conn
:
WebSocketStream
;
public
cdb
:
YgoCdb
;
// ref: https://yugioh.fandom.com/wiki/Kuriboh
private
enableKuriboh
:
boolean
=
false
;
constructor
(
context
:
Context
,
conn
:
WebSocketStream
)
{
constructor
(
context
:
Context
,
conn
:
WebSocketStream
,
cdb
:
YgoCdb
)
{
this
.
context
=
context
;
this
.
conn
=
conn
;
this
.
cdb
=
cdb
;
}
public
setEnableKuriboh
(
value
:
boolean
)
{
...
...
src/middleware/sqlite/index.ts
View file @
b0857ffd
...
...
@@ -39,6 +39,13 @@ export interface sqliteAction<T extends sqliteCmd> {
};
}
interface
CdbInitInfo
{
main
:
string
;
sub
?:
string
;
i18n
:
boolean
;
progressCallback
?:
(
progress
:
number
)
=>
void
;
// 用于获取读取进度
}
export
interface
sqliteResult
{
selectResult
?:
CardMeta
;
ftsResult
?:
CardMeta
[];
...
...
@@ -48,23 +55,88 @@ const sqlPromise = initSqlJs({
locateFile
:
(
file
)
=>
`
${
NeosConfig
.
assetsPath
}
/
${
file
}
`
,
});
export
default
function
<
T
extends
sqliteCmd
>
(
action
:
sqliteAction
<
T
>
,
):
T
extends
sqliteCmd
.
INIT
?
Promise
<
void
>
:
sqliteResult
{
return
helper
(
action
)
as
any
;
}
export
class
YgoCdb
{
private
main
?:
Database
;
private
sub
?:
Database
;
// TODO: may defining a class be better?
interface
YgoDbs
{
release
:
Database
|
null
;
preRelease
:
Database
|
null
;
}
constructor
()
{}
public
async
init
(
info
:
CdbInitInfo
):
Promise
<
void
>
{
if
(
info
.
i18n
)
{
const
language
=
localStorage
.
getItem
(
"
language
"
)
??
"
cn
"
;
// Update URLs based on the language
updateDbUrls
(
info
,
language
);
}
const
promises
=
[
pfetch
(
info
.
main
,
{
progressCallback
:
info
.
progressCallback
,
}).
then
((
res
)
=>
res
.
arrayBuffer
())];
if
(
info
.
sub
!==
undefined
)
{
promises
.
push
(
pfetch
(
info
.
sub
,
{
progressCallback
:
info
.
progressCallback
,
}).
then
((
res
)
=>
res
.
arrayBuffer
()));
}
const
sql
=
await
sqlPromise
;
let
YGODBS
:
YgoDbs
=
{
release
:
null
,
preRelease
:
null
};
return
Promise
.
all
(
promises
).
then
(([
mainBuffer
,
subBuffer
])
=>
{
this
.
main
=
new
sql
.
Database
(
new
Uint8Array
(
mainBuffer
));
this
.
sub
=
new
sql
.
Database
(
new
Uint8Array
(
subBuffer
),
);
console
.
log
(
"
YGODB inited!
"
);
});
}
public
select
(
code
:
number
):
sqliteResult
{
if
(
this
.
main
)
{
const
db
=
isSuperReleaseCard
(
code
)
?
this
.
sub
!
// must be initialized when `isSuperReleaseCard` return true
:
this
.
main
;
const
dataStmt
=
db
.
prepare
(
"
SELECT * FROM datas WHERE ID = $id
"
);
const
dataResult
=
dataStmt
.
getAsObject
({
$id
:
code
});
const
textStmt
=
db
.
prepare
(
"
SELECT * FROM texts WHERE ID = $id
"
);
const
textResult
=
textStmt
.
getAsObject
({
$id
:
code
});
return
{
selectResult
:
constructCardMeta
(
code
,
dataResult
,
textResult
),
};
}
else
{
console
.
warn
(
"
ygo cdb not init!
"
);
return
{};
}
}
public
fts
(
params
:
FtsParams
):
sqliteResult
{
if
(
this
.
main
)
{
let
metas
=
invokeFts
(
this
.
main
,
params
,
);
if
(
this
.
sub
!==
undefined
)
{
metas
=
metas
.
concat
(
invokeFts
(
this
.
sub
,
params
));
}
return
{
ftsResult
:
metas
};
}
else
{
console
.
warn
(
"
ygo db not init!
"
);
return
{};
}
}
}
//It currently only supports en-US, es-ES, ja-JP, ko-KR, zh-CN
// Function to update URLs based on the language
function
updateDbUrls
(
info
:
any
,
language
:
string
):
void
{
//
// Note: it currently only supports en-US, es-ES, ja-JP, ko-KR, zh-CN for main cdb
function
updateDbUrls
(
info
:
CdbInitInfo
,
language
:
string
):
void
{
const
languageMap
:
{
[
key
:
string
]:
string
}
=
{
en
:
"
en-US
"
,
br
:
"
en-US
"
,
...
...
@@ -75,106 +147,8 @@ function updateDbUrls(info: any, language: string): void {
es
:
"
es-ES
"
,
};
const
locale
=
languageMap
[
language
]
||
"
zh-CN
"
;
info
.
releaseDbUrl
=
info
.
releaseDbUrl
.
replace
(
"
zh-CN
"
,
locale
);
info
.
preReleaseDbUrl
=
info
.
preReleaseDbUrl
.
replace
(
"
zh-CN
"
,
locale
);
}
// FIXME: 应该有个返回值,告诉业务方本次请求的结果,比如初始化DB失败
function
helper
<
T
extends
sqliteCmd
>
(
action
:
sqliteAction
<
T
>
)
{
switch
(
action
.
cmd
)
{
case
sqliteCmd
.
INIT
:
{
const
info
=
action
.
initInfo
;
if
(
info
)
{
const
language
=
localStorage
.
getItem
(
"
language
"
)
||
"
cn
"
;
// Update URLs based on the language
updateDbUrls
(
info
,
language
);
const
releasePromise
=
pfetch
(
info
.
releaseDbUrl
,
{
progressCallback
:
action
.
initInfo
?.
progressCallback
,
}).
then
((
res
)
=>
res
.
arrayBuffer
());
// TODO: i18n
const
preReleasePromise
=
pfetch
(
info
.
preReleaseDbUrl
,
{
progressCallback
:
action
.
initInfo
?.
progressCallback
,
}).
then
((
res
)
=>
res
.
arrayBuffer
());
return
Promise
.
all
([
sqlPromise
,
releasePromise
,
preReleasePromise
,
]).
then
(([
SQL
,
releaseBuffer
,
preReleaseBuffer
])
=>
{
YGODBS
.
release
=
new
SQL
.
Database
(
new
Uint8Array
(
releaseBuffer
));
YGODBS
.
preRelease
=
new
SQL
.
Database
(
new
Uint8Array
(
preReleaseBuffer
),
);
console
.
log
(
"
YGODB inited!
"
);
});
}
else
{
console
.
warn
(
"
init YGODB action without initInfo
"
);
return
{};
}
}
case
sqliteCmd
.
SELECT
:
{
if
(
YGODBS
.
release
&&
YGODBS
.
preRelease
&&
action
.
payload
&&
action
.
payload
.
id
)
{
const
code
=
action
.
payload
.
id
;
const
db
=
isSuperReleaseCard
(
code
)
?
YGODBS
.
preRelease
:
YGODBS
.
release
;
const
dataStmt
=
db
.
prepare
(
"
SELECT * FROM datas WHERE ID = $id
"
);
const
dataResult
=
dataStmt
.
getAsObject
({
$id
:
code
});
const
textStmt
=
db
.
prepare
(
"
SELECT * FROM texts WHERE ID = $id
"
);
const
textResult
=
textStmt
.
getAsObject
({
$id
:
code
});
return
{
selectResult
:
constructCardMeta
(
code
,
dataResult
,
textResult
),
};
}
else
{
if
(
action
.
payload
?.
id
!==
0
)
{
// 0是无效的卡片ID,不需要报错,返回空即可
console
.
warn
(
"
ygo db not init or id not provied!
"
);
}
}
return
{};
}
case
sqliteCmd
.
FTS
:
{
if
(
YGODBS
.
release
&&
YGODBS
.
preRelease
&&
action
.
payload
&&
action
.
payload
.
ftsParams
)
{
const
releaseMetas
=
invokeFts
(
YGODBS
.
release
,
action
.
payload
.
ftsParams
,
);
const
preReleaseMetas
=
invokeFts
(
YGODBS
.
preRelease
,
action
.
payload
.
ftsParams
,
);
const
metas
=
releaseMetas
.
concat
(
preReleaseMetas
);
return
{
ftsResult
:
metas
};
}
else
{
console
.
warn
(
"
ygo db not init or query not provied!
"
);
}
return
{};
}
default
:
{
console
.
warn
(
`Unhandled sqlite command:
${
action
.
cmd
}
`
);
return
{};
}
}
const
locale
=
languageMap
[
language
]
??
"
zh-CN
"
;
info
.
main
=
info
.
main
.
replace
(
"
zh-CN
"
,
locale
);
}
export
function
constructCardMeta
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment