Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
G
gu imageworks extension
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
joetsuihk
gu imageworks extension
Commits
db752e45
Commit
db752e45
authored
Feb 21, 2022
by
edwin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add back old logic such it can download old sku format
parent
93e6e082
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
3 deletions
+20
-3
fetch.js
fetch/fetch.js
+20
-3
No files found.
fetch/fetch.js
View file @
db752e45
...
...
@@ -154,7 +154,7 @@
(
asset
.
filename
.
match
(
new
RegExp
(
`^goods_[0-9]{2}_
${
SKU
}
$`
))
&&
asset
.
models
.
length
===
0
&&
asset
.
products
.
length
===
1
)
)
{
classes
=
"is-product"
;
}
else
if
(
tagid
.
find
(
x
=>
x
.
includes
(
"Model"
)
||
x
.
includes
(
"Appeal POP"
))
)
{
classes
=
"is-model"
;
}
else
{
...
...
@@ -199,10 +199,19 @@
await
downloadList
(
assetlist
,
`
${
SKU
}
`
);
await
sleep
(
sleepTime
);
let
is_old
=
assetlist
.
length
===
0
;
// &t=datacategory%2Fasset&w=341947&r=north&z=30&c=DEFAULT
currentms
=
new
Date
().
getTime
();
assetlist
=
await
fetchSKU
(
`
${
baseurl
}
api/asset?time=
${
currentms
}
&t=datacategory%2Fasset&w=
${
SKU
}
&r=north&z=
${
fetchNumber
}
&c=DEFAULT`
,
`
${
SKU
}
model image`
);
let
downloadlist
=
filtering
(
assetlist
,
SKU
);
if
(
is_old
){
addDebugMessage
(
`re-attempt download product list`
);
await
downloadList
(
downloadlist
[
"product"
],
`
${
SKU
}
`
);
await
sleep
(
sleepTime
);
}
await
downloadList
(
downloadlist
[
"model"
],
`
${
SKU
}
_model`
);
await
sleep
(
sleepTime
);
}
...
...
@@ -293,11 +302,19 @@
let
tagid
=
item
.
tags
.
map
(
x
=>
x
.
id
);
if
(
item
.
filename
.
includes
(
"GU_"
))
{
if
(
item
.
filename
.
includes
(
`goods_
${
SKU
}
_sub`
)
||
item
.
filename
.
includes
(
`_
${
SKU
}
_chip`
)
||
(
item
.
filename
.
match
(
new
RegExp
(
`^goods_[0-9]{2}_
${
SKU
}
$`
))
&&
item
.
models
.
length
===
0
&&
item
.
products
.
length
===
1
)
// file name include SKU and no model
)
{
arrlist
[
"product"
].
push
(
item
);
}
else
if
(
item
.
filename
.
includes
(
`
${
SKU
}
_I0`
)
||
(
item
.
filename
.
includes
(
"goods"
)
&&
!
item
.
filename
.
includes
(
SKU
))
||
item
.
tags
.
map
(
x
=>
x
.
id
).
includes
(
"assettype/Poster"
)
||
item
.
filename
.
includes
(
"GU_"
)
)
{
// not adding to model
}
else
if
(
tagid
.
find
(
x
=>
x
.
includes
(
"Model"
)
||
x
.
includes
(
"Appeal POP"
))
)
{
}
else
if
(
tagid
.
find
(
x
=>
x
.
includes
(
"Model"
)
||
x
.
includes
(
"Appeal POP"
))
)
{
arrlist
[
"model"
].
push
(
item
);
}
return
arrlist
;
...
...
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