mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-20 21:33:13 -07:00
Updated to same functionality as 9.0
This commit is contained in:
parent
d4a35659a3
commit
17c4adbcf6
1 changed files with 35 additions and 13 deletions
|
@ -164,6 +164,17 @@ if [ "$NZBPP_PARSTATUS" -eq 1 -o "$NZBPP_PARSTATUS" -eq 3 -o "$NZBPP_PARFAILED"
|
||||||
echo "[WARNING] Post-Process: Par-check successful, but Par-repair disabled, exiting"
|
echo "[WARNING] Post-Process: Par-check successful, but Par-repair disabled, exiting"
|
||||||
else
|
else
|
||||||
echo "[WARNING] Post-Process: Par-check failed, exiting"
|
echo "[WARNING] Post-Process: Par-check failed, exiting"
|
||||||
|
# Send notifications to SickBeard or CouchPotato that Par-check failed
|
||||||
|
if [ "$SickBeard" = "yes" -a "$NZBPP_CATEGORY" = "$SickBeardCategory" -a -e "$NzbToSickBeard" ]; then
|
||||||
|
# Call SickBeard's postprocessing script
|
||||||
|
echo "[INFO] Post-Process: Running SickBeard's postprocessing script to notify Par-check failed"
|
||||||
|
$PythonCmd $NzbToSickBeard "$NZBPP_DIRECTORY" "$NZBPP_NZBFILENAME" "1" >/dev/null 2>&1
|
||||||
|
fi
|
||||||
|
if [ "$CouchPotato" = "yes" -a "$NZBPP_CATEGORY" = "$CouchPotatoCategory" -a -e "$NzbToCouchPotato" ]; then
|
||||||
|
# Call CouchPotato's postprocessing script
|
||||||
|
echo "[INFO] Post-Process: Running CouchPotato's postprocessing script to notify Par-check failed"
|
||||||
|
$PythonCmd $NzbToCouchPotato "$NZBPP_DIRECTORY" "$NZBPP_NZBFILENAME" "1" >/dev/null 2>&1
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
exit $POSTPROCESS_ERROR
|
exit $POSTPROCESS_ERROR
|
||||||
fi
|
fi
|
||||||
|
@ -226,6 +237,17 @@ if (ls *.rar >/dev/null 2>&1); then
|
||||||
if (ls *.[pP][aA][rR]2 >/dev/null 2>&1); then
|
if (ls *.[pP][aA][rR]2 >/dev/null 2>&1); then
|
||||||
echo "[INFO] Post-Process: Requesting par-repair"
|
echo "[INFO] Post-Process: Requesting par-repair"
|
||||||
exit $POSTPROCESS_PARCHECK_ALL
|
exit $POSTPROCESS_PARCHECK_ALL
|
||||||
|
# Send notifications to SickBeard or CouchPotato that unrar (second pass) failed
|
||||||
|
if [ "$SickBeard" = "yes" -a "$NZBPP_CATEGORY" = "$SickBeardCategory" -a -e "$NzbToSickBeard" ]; then
|
||||||
|
# Call SickBeard's postprocessing script
|
||||||
|
echo "[INFO] Post-Process: Running SickBeard's postprocessing script to notify unrar (second pass) failed"
|
||||||
|
$PythonCmd $NzbToSickBeard "$NZBPP_DIRECTORY" "$NZBPP_NZBFILENAME" "1">/dev/null 2>&1
|
||||||
|
fi
|
||||||
|
if [ "$CouchPotato" = "yes" -a "$NZBPP_CATEGORY" = "$CouchPotatoCategory" -a -e "$NzbToCouchPotato" ]; then
|
||||||
|
# Call CouchPotato's postprocessing script
|
||||||
|
echo "[INFO] Post-Process: Running CouchPotato's postprocessing script to notify unrar (second pass) failed"
|
||||||
|
$PythonCmd $NzbToCouchPotato "$NZBPP_DIRECTORY" "$NZBPP_NZBFILENAME" "1">/dev/null 2>&1
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
exit $POSTPROCESS_ERROR
|
exit $POSTPROCESS_ERROR
|
||||||
fi
|
fi
|
||||||
|
@ -282,9 +304,9 @@ fi
|
||||||
# Clean up
|
# Clean up
|
||||||
echo "[INFO] Post-Process: Cleaning up"
|
echo "[INFO] Post-Process: Cleaning up"
|
||||||
chmod -R a+rw .
|
chmod -R a+rw .
|
||||||
rm *.nzb >/dev/null 2>&1
|
# Clean up list, space seperated from GUI
|
||||||
rm *.sfv >/dev/null 2>&1
|
rm $FileCleanUp >/dev/null 2>&1
|
||||||
rm *.1 >/dev/null 2>&1
|
# Removed by default
|
||||||
rm _brokenlog.txt >/dev/null 2>&1
|
rm _brokenlog.txt >/dev/null 2>&1
|
||||||
if [ "$Unrared" -eq 1 ]; then
|
if [ "$Unrared" -eq 1 ]; then
|
||||||
# Delete par2-file only if there were files for unpacking.
|
# Delete par2-file only if there were files for unpacking.
|
||||||
|
@ -321,30 +343,30 @@ fi
|
||||||
|
|
||||||
# Move categories to /share/yourdirectory and remove download destination directory
|
# Move categories to /share/yourdirectory and remove download destination directory
|
||||||
if [ "$NZBPP_CATEGORY" = "$SickBeardCategory" ]; then
|
if [ "$NZBPP_CATEGORY" = "$SickBeardCategory" ]; then
|
||||||
echo "[INFO] Post-Process: Moving TV shows to $TV_DL_DIR"
|
echo "[INFO] Post-Process: Moving TV shows to $TvDownloadDir"
|
||||||
cp -R "$NZBPP_DIRECTORY" "$TV_DL_DIR" >/dev/null 2>&1
|
cp -R "$NZBPP_DIRECTORY" "$TvDownloadDir" >/dev/null 2>&1
|
||||||
if [ "$?" -ne 0 ]; then
|
if [ "$?" -ne 0 ]; then
|
||||||
echo "[ERROR] Post-Process: Moving to $TV_DL_DIR"
|
echo "[ERROR] Post-Process: Moving to $TvDownloadDir"
|
||||||
exit $POSTPROCESS_ERROR
|
exit $POSTPROCESS_ERROR
|
||||||
else
|
else
|
||||||
rm -fr *
|
rm -fr *
|
||||||
cd ..
|
cd ..
|
||||||
rmdir "$NZBPP_DIRECTORY"
|
rmdir "$NZBPP_DIRECTORY"
|
||||||
NZBPP_DIRECTORY="$TV_DL_DIR"
|
NZBPP_DIRECTORY="$TvDownloadDir"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$NZBPP_CATEGORY" = "$CouchPotatoCategory" ]; then
|
if [ "$NZBPP_CATEGORY" = "$CouchPotatoCategory" ]; then
|
||||||
echo "[INFO] Post-Process: Moving Movies to $MOVIES_DL_DIR"
|
echo "[INFO] Post-Process: Moving Movies to $MoviesDownloadDir"
|
||||||
cp -R "$NZBPP_DIRECTORY" "$MOVIES_DL_DIR" >/dev/null 2>&1
|
cp -R "$NZBPP_DIRECTORY" "$MoviesDownloadDir" >/dev/null 2>&1
|
||||||
if [ "$?" -ne 0 ]; then
|
if [ "$?" -ne 0 ]; then
|
||||||
echo "[ERROR] Post-Process: Moving to $MOVIES_DL_DIR"
|
echo "[ERROR] Post-Process: Moving to $MoviesDownloadDir"
|
||||||
exit $POSTPROCESS_ERROR
|
exit $POSTPROCESS_ERROR
|
||||||
else
|
else
|
||||||
rm -fr *
|
rm -fr *
|
||||||
cd ..
|
cd ..
|
||||||
rmdir "$NZBPP_DIRECTORY"
|
rmdir "$NZBPP_DIRECTORY"
|
||||||
NZBPP_DIRECTORY="$MOVIES_DL_DIR"
|
NZBPP_DIRECTORY="$MoviesDownloadDir"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -355,13 +377,13 @@ fi
|
||||||
if [ "$SickBeard" = "yes" -a "$NZBPP_CATEGORY" = "$SickBeardCategory" -a -e "$NzbToSickBeard" ]; then
|
if [ "$SickBeard" = "yes" -a "$NZBPP_CATEGORY" = "$SickBeardCategory" -a -e "$NzbToSickBeard" ]; then
|
||||||
# Call SickBeard's postprocessing script
|
# Call SickBeard's postprocessing script
|
||||||
echo "[INFO] Post-Process: Running SickBeard's postprocessing script"
|
echo "[INFO] Post-Process: Running SickBeard's postprocessing script"
|
||||||
$PythonCmd $NzbToSickBeard "$NZBPP_DIRECTORY" "$NZBPP_NZBFILENAME" >/dev/null 2>&1
|
$PythonCmd $NzbToSickBeard "$NZBPP_DIRECTORY" "$NZBPP_NZBFILENAME" "0" >/dev/null 2>&1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$CouchPotato" = "yes" -a "$NZBPP_CATEGORY" = "$CouchPotatoCategory" -a -e "$NzbToCouchPotato" ]; then
|
if [ "$CouchPotato" = "yes" -a "$NZBPP_CATEGORY" = "$CouchPotatoCategory" -a -e "$NzbToCouchPotato" ]; then
|
||||||
# Call CouchPotato's postprocessing script
|
# Call CouchPotato's postprocessing script
|
||||||
echo "[INFO] Post-Process: Running CouchPotato's postprocessing script"
|
echo "[INFO] Post-Process: Running CouchPotato's postprocessing script"
|
||||||
$PythonCmd $NzbToCouchPotato "$NZBPP_DIRECTORY" "$NZBPP_NZBFILENAME" >/dev/null 2>&1
|
$PythonCmd $NzbToCouchPotato "$NZBPP_DIRECTORY" "$NZBPP_NZBFILENAME" "0" >/dev/null 2>&1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Check if destination directory was set in postprocessing parameters
|
# Check if destination directory was set in postprocessing parameters
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue