forked from sigmaboy/nopaystation_scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nps_psm.sh
executable file
·122 lines (105 loc) · 3.45 KB
/
nps_psm.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
#!/bin/sh
# AUTHOR sigmaboy <[email protected]>
# return codes:
# 1 user errors
# 3 game is only available physically
# 4 link or key missing.
# 5 game archive already exists
# get directory where the scripts are located
SCRIPT_DIR="$(dirname "$(readlink -f "$(which "${0}")")")"
# source shared functions
. "${SCRIPT_DIR}/functions.sh"
my_usage() {
echo ""
echo "Usage:"
echo "${0} \"/path/to/PSM.tsv\" \"PCSE00986\""
}
MY_BINARIES="pkg2zip sed grep file t7z"
sha256_choose; downloader_choose
check_binaries "${MY_BINARIES}"
# Get variables from script parameters
TSV_FILE="${1}"
TITLE_ID="${2}"
if [ ! -f "${TSV_FILE}" ]
then
echo "No TSV file found."
my_usage
exit 1
fi
if [ -z "${TITLE_ID}" ]
then
echo "No game ID found."
my_usage
exit 1
fi
check_valid_psm_id "${TITLE_ID}"
# check if MEDIA ID is found in download list
if ! grep "^${TITLE_ID}" "${TSV_FILE}" > /dev/null
then
echo "ERROR:"
echo "Title ID is not found in your *.tsv file"
echo "Check your input for a valid media ID"
echo "Search on: \"https://renascene.com/psv/\" for"
echo "Media IDs or simple open the *.tsv with your Office Suite."
exit 1
fi
# get link, encryption key and sha256sum
LIST=$(grep "^${TITLE_ID}" "${TSV_FILE}" | tr -d '\r' | cut -f"4,5,9")
# save those in separete variables
LINK=$(echo "${LIST}" | cut -f1)
KEY=$(echo "${LIST}" | cut -f2)
LIST_SHA256=$(echo "${LIST}" | cut -f3)
if [ "${LINK}" = "MISSING" ] && [ "${KEY}" = "MISSING" ]
then
echo "Download link and zRIF key of \"${TITLE_ID}\" are missing."
echo "Cannot proceed."
exit 4
elif [ "${LINK}" = "MISSING" ]
then
echo "Download link of \"${TITLE_ID}\" is missing."
echo "Cannot proceed."
exit 4
elif [ "${KEY}" = "MISSING" ]
then
echo "zrif key of \"${TITLE_ID}\" is missing."
echo "Cannot proceed."
exit 4
elif [ "${LINK}" = "CART ONLY" ]
then
echo "\"${GANE_ID}\" is only available via cartridge"
exit 3
else
if find . -maxdepth 1 -type f -name "*[${TITLE_ID}]*.${ext}" | grep -q -E "\[${TITLE_ID}\].*\.${ext}"
then
FOUND_FILE=$(find . -maxdepth 1 -type f -name "*[${TITLE_ID}]*.${ext}" | grep -E "\[${TITLE_ID}\].*\.${ext}" | sed 's@\./@@g')
# write package name into txt file for depending steps like downloading dlc and update
echo "${FOUND_FILE}" | sed "s/\.${ext}//g" > "${TITLE_ID}.txt"
# test if archive is a ${ext} file
if [ "$(file -b --mime-type "${FOUND_FILE}")" = "${mime_type}" ]
then
# print this to stderr
>&2 echo "File \"${FOUND_FILE}\" already exists."
exit 5
else
# print this to stderr
>&2 echo "File \"${FOUND_FILE}\" already exists."
>&2 echo "But it doesn't seem to be a valid ${ext} file"
exit 5
fi
else
my_download_file "${LINK}" "${TITLE_ID}.pkg"
FILE_SHA256="$(my_sha256 "${TITLE_ID}.pkg")"
compare_checksum "${LIST_SHA256}" "${FILE_SHA256}"
# get file name and modify it
pkg2zip -l "${TITLE_ID}.pkg" | sed 's/.zip//g' > "${TITLE_ID}.txt"
MY_FILE_NAME="$(cat "${TITLE_ID}.txt")"
MY_FILE_NAME="$(region_rename "${MY_FILE_NAME}")"
test -d "psm/" && rm -rf "psm/"
pkg2zip -x "${TITLE_ID}.pkg" "${KEY}"
# add the -rs parameter until a bug on the t7z port for FreeBSD is fixed
t7z -ba -rs a "${MY_FILE_NAME}.${ext}" "psm/"
rm -rf "psm/"
rm "${TITLE_ID}.pkg"
fi
fi
exit 0