Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
PortWINE
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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Mikhail Tergoev
PortWINE
Commits
bca5c389
Commit
bca5c389
authored
Nov 03, 2024
by
Alex Smith
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
переписал скрипт загрузки изображений
parent
8f160515
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
62 additions
and
0 deletions
+62
-0
get_images.sh
data_from_portwine/scripts/get_images.sh
+61
-0
var
data_from_portwine/scripts/var
+1
-0
No files found.
data_from_portwine/scripts/get_images.sh
0 → 100755
View file @
bca5c389
#!/bin/bash
# AppName= AppId= SteamAppId= SteamGridDBId= SGGRIDDIR= ./get_images.sh
if
[[
-z
"
${
SGDBAPIKEY
}
"
||
-z
"
${
BASESTEAMGRIDDBAPI
}
"
]]
;
then
source
"
${
PORT_SCRIPTS_PATH
:-$(
dirname
"
$(
readlink
--canonicalize-existing
"
$0
"
)
"
)}
/var"
fi
function
downloadImage
{
local
path
=
"
${
SGGRIDDIR
:-${
PWD
}}
"
local
url
=
"
$1
"
local
files
=
"
$2
"
local
cur
=
''
;
if
[[
-n
"
${
url
}
"
&&
-n
"
${
files
}
"
]]
;
then
for
file
in
${
files
[@]
}
;
do
if
[[
-z
"
$cur
"
]]
;
then
curl
-Lf
# -o "${path}/${file}" "${url}"
else
cp
"
${
path
}
/
${
cur
}
"
"
${
path
}
/
${
file
}
"
fi
cur
=
"
${
file
}
"
done
fi
}
function
downloadImageSteam
{
downloadImage
"https://cdn.cloudflare.steamstatic.com/steam/apps/
$1
"
"
$2
"
}
function
downloadImageSteamgriddb
{
SGDBIMGRES
=
$(
curl
-Ls
-H
"Authorization: Bearer
${
SGDBAPIKEY
}
"
"
${
BASESTEAMGRIDDBAPI
}
/
$1
&limit=1"
)
if
jq
-e
".success == true and (.data | length > 0)"
<<<
"
${
SGDBIMGRES
}
"
>
/dev/null 2>&1
;
then
SGDBIMGURL
=
$(
jq
-r
'.data[0].url'
<<<
"
${
SGDBIMGRES
}
"
)
downloadImage
"
${
SGDBIMGURL
}
"
"
$2
"
fi
}
if
[[
-z
"
${
SteamAppId
}
"
&&
-z
"
${
SteamGridDBId
}
"
&&
-n
"
${
AppName
}
"
&&
-n
"
${
SGDBAPIKEY
}
"
]]
;
then
SGDBRES
=
$(
curl
-Ls
-H
"Authorization: Bearer
${
SGDBAPIKEY
}
"
"
${
BASESTEAMGRIDDBAPI
}
/search/autocomplete/
${
AppName
// /_
}
"
)
if
jq
-e
".success == true and (.data | length > 0)"
<<<
"
${
SGDBRES
}
"
>
/dev/null 2>&1
;
then
export
SteamGridDBId
=
"
$(
jq
'.data[0].id'
<<<
"
${
SGDBRES
}
"
)
"
if
jq
-e
'.data[0].types | contains(["steam"])'
<<<
"
${
SGDBRES
}
"
>
/dev/null
;
then
SRES
=
$(
curl
-Ls
-e
"https://www.steamgriddb.com/game/
${
SteamGridDBId
}
"
"https://www.steamgriddb.com/api/public/game/
${
SteamGridDBId
}
"
)
if
jq
-e
".success == true"
<<<
"
${
SRES
}
"
>
/dev/null 2>&1
;
then
export
SteamAppId
=
"
$(
jq
-r
'.data.platforms.steam.id'
<<<
"
${
SRES
}
"
)
"
fi
fi
fi
fi
if
[[
-n
"
${
SteamAppId
}
"
]]
;
then
downloadImageSteam
"
${
SteamAppId
}
/header.jpg"
"
${
AppId
:-
0
}
.jpg"
downloadImageSteam
"
${
SteamAppId
}
/library_600x900_2x.jpg"
"
${
AppId
:-
0
}
p.jpg"
downloadImageSteam
"
${
SteamAppId
}
/library_hero.jpg"
"
${
AppId
:-
0
}
_hero.jpg"
downloadImageSteam
"
${
SteamAppId
}
/logo.png"
"
${
AppId
:-
0
}
_logo.png"
elif
[[
-n
"
${
SteamGridDBId
}
"
&&
-n
"
${
SGDBAPIKEY
}
"
]]
;
then
downloadImageSteamgriddb
"grids/game/
${
SteamGridDBId
}
?mimes=image/jpeg"
"
${
AppId
:-
0
}
.jpg
${
AppId
:-
0
}
p.jpg"
downloadImageSteamgriddb
"heroes/game/
${
SteamGridDBId
}
?mimes=image/jpeg"
"
${
AppId
:-
0
}
_hero.jpg"
downloadImageSteamgriddb
"logos/game/
${
SteamGridDBId
}
?mimes=image/png"
"
${
AppId
:-
0
}
_logo.png"
else
echo
"Game is not found"
fi
data_from_portwine/scripts/var
View file @
bca5c389
...
...
@@ -137,6 +137,7 @@ export DEFPFX_VER="v1"
export
PW_MUST_WINEDLLOVERRIDES
=
"steam_api,steam_api64,steamclient,steamclient64=n;dotnetfx35.exe,dotnetfx35setup.exe=b;winemenubuilder.exe="
#################################################################
# Get our APi on https://www.steamgriddb.com/profile/preferences/api/
export
BASESTEAMGRIDDBAPI
=
"https://www.steamgriddb.com/api/v2"
export
SGDBAPIKEY
=
"4a022f8848eaaa8e9c30067cd6676129"
#################################################################
export
DXVK_CONFIG_FILE
=
"
${
PORT_WINE_PATH
}
/data/dxvk.conf"
...
...
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