Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
M
mycard
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
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
syntax_j
mycard
Commits
c4768d23
Commit
c4768d23
authored
Aug 21, 2021
by
nanahira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
change url
parent
47f3b906
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
13 deletions
+27
-13
app/app.ts
app/app.ts
+22
-9
app/apps.service.ts
app/apps.service.ts
+5
-4
No files found.
app/app.ts
View file @
c4768d23
...
...
@@ -94,34 +94,47 @@ export class App {
background
:
string
;
price
:
{
[
currency
:
string
]:
string
};
key
?:
string
;
key
?:
string
static
getQuerySuffix
(
platform
:
string
,
locale
:
string
,
arch
:
string
)
{
const
params
=
new
URLSearchParams
();
params
.
set
(
'
platform
'
,
platform
);
params
.
set
(
'
locale
'
,
locale
);
params
.
set
(
'
platform
'
,
arch
);
return
params
.
toString
();
}
static
downloadUrl
(
app
:
App
,
platform
:
string
,
locale
:
string
):
string
{
static
downloadUrl
(
app
:
App
,
platform
:
string
,
locale
:
string
,
arch
:
string
):
string
{
/*
if (app.id === 'ygopro') {
return `https://sthief.moecube.com:444/metalinks/${app.id}-${process.platform}-${locale}/${app.version}`;
} else if (app.id === 'desmume') {
return `https://sthief.moecube.com:444/metalinks/${app.id}-${process.platform}/${app.version}`;
}
return `https://sthief.moecube.com:444/metalinks/${app.id}/${app.version}`;
*/
return
`https://sapi.moecube.com:444/release/update/metalinks/
${
app
.
id
}
/
${
app
.
version
}
?
${
this
.
getQuerySuffix
(
platform
,
locale
,
arch
)}
`
;
}
static
checksumUrl
(
app
:
App
,
platform
:
string
,
locale
:
string
):
string
{
if
(
app
.
id
===
'
ygopro
'
)
{
static
checksumUrl
(
app
:
App
,
platform
:
string
,
locale
:
string
,
arch
:
string
):
string
{
/*
if (app.id === 'ygopro') {
return `https://sthief.moecube.com:444/checksums/${app.id}-${platform}-${locale}/${app.version}`;
} else if (app.id === 'desmume') {
return `https://sthief.moecube.com:444/checksums/${app.id}-${platform}/${app.version}`;
}
return
`https://sthief.moecube.com:444/checksums/
${
app
.
id
}
/
${
app
.
version
}
`
;
return `https://sthief.moecube.com:444/checksums/${app.id}/${app.version}`;*/
return
`https://sapi.moecube.com:444/release/update/checksums/
${
app
.
id
}
/
${
app
.
version
}
?
${
this
.
getQuerySuffix
(
platform
,
locale
,
arch
)}
`
;
}
static
updateUrl
(
app
:
App
,
platform
:
string
,
locale
:
string
):
string
{
if
(
app
.
id
===
'
ygopro
'
)
{
static
updateUrl
(
app
:
App
,
platform
:
string
,
locale
:
string
,
arch
:
string
):
string
{
/*
if (app.id === 'ygopro') {
return `https://sthief.moecube.com:444/update/${app.id}-${platform}-${locale}/${app.version}`;
} else if (app.id === 'desmume') {
return `https://sthief.moecube.com:444/update/${app.id}-${platform}/${app.version}`;
}
return
`https://s
thief.moecube.com:444/update/
${
app
.
id
}
/
${
app
.
version
}
`
;
}
*/
return
`https://s
api.moecube.com:444/release/update/update/
${
app
.
id
}
/
${
app
.
version
}
?
${
this
.
getQuerySuffix
(
platform
,
locale
,
arch
)
}
`
;
}
isBought
():
Boolean
{
...
...
app/apps.service.ts
View file @
c4768d23
...
...
@@ -21,6 +21,7 @@ import {ComparableSet} from './shared/ComparableSet';
import
{
AppsJson
}
from
'
./apps-json-type
'
;
import
Timer
=
NodeJS
.
Timer
;
import
ReadableStream
=
NodeJS
.
ReadableStream
;
import
*
as
os
from
'
os
'
;
const
Logger
=
{
info
:
(...
message
:
any
[])
=>
{
...
...
@@ -81,7 +82,7 @@ export class AppsService {
}
async
loadApps
()
{
let
appsURL
=
'
https://sapi.moecube.com:444/apps.json
'
;
let
appsURL
=
'
https://sapi.moecube.com:444/
release/update/
apps.json
'
;
let
keysURL
=
'
https://sapi.moecube.com:444/keys
'
;
try
{
let
data
=
await
this
.
http
.
get
(
appsURL
)
...
...
@@ -640,7 +641,7 @@ export class AppsService {
if
(
!
[
'
zh-CN
'
,
'
en-US
'
,
'
ja-JP
'
].
includes
(
locale
))
{
locale
=
'
en-US
'
;
}
let
updateUrl
=
App
.
updateUrl
(
app
,
process
.
platform
,
locale
);
let
updateUrl
=
App
.
updateUrl
(
app
,
process
.
platform
,
locale
,
os
.
arch
()
);
let
metalink
=
await
this
.
http
.
post
(
updateUrl
,
changedFiles
).
map
((
response
)
=>
response
.
text
()).
toPromise
();
let
downloadDir
=
path
.
join
(
path
.
dirname
(
app
.
local
!
.
path
),
'
downloading
'
);
let
downloadId
=
await
this
.
downloadService
.
addMetalink
(
metalink
,
downloadDir
);
...
...
@@ -698,7 +699,7 @@ export class AppsService {
if
(
!
[
'
zh-CN
'
,
'
en-US
'
,
'
ja-JP
'
].
includes
(
locale
))
{
locale
=
'
en-US
'
;
}
let
metalinkUrl
=
App
.
downloadUrl
(
_app
,
process
.
platform
,
locale
);
let
metalinkUrl
=
App
.
downloadUrl
(
_app
,
process
.
platform
,
locale
,
os
.
arch
()
);
_app
.
status
.
status
=
'
downloading
'
;
let
metalink
=
await
this
.
http
.
get
(
metalinkUrl
).
map
((
response
)
=>
response
.
text
()).
toPromise
();
let
downloadId
=
await
this
.
downloadService
.
addMetalink
(
metalink
,
dir
);
...
...
@@ -1096,7 +1097,7 @@ export class AppsService {
locale
=
'
en-US
'
;
}
let
checksumUrl
=
App
.
checksumUrl
(
app
,
process
.
platform
,
locale
);
let
checksumUrl
=
App
.
checksumUrl
(
app
,
process
.
platform
,
locale
,
os
.
arch
()
);
return
this
.
http
.
get
(
checksumUrl
)
.
map
((
response
)
=>
{
let
map
=
new
Map
<
string
,
string
>
();
...
...
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