mirror of
https://github.com/YGGverse/YGGo.git
synced 2025-01-24 13:34:25 +00:00
fix snap foreign keys deletion
This commit is contained in:
parent
242e0abd86
commit
5d7f2bf68c
@ -89,36 +89,23 @@ try {
|
||||
|
||||
foreach ($db->getHostPageSnaps($hostPage->hostPageId) as $hostPageSnap) {
|
||||
|
||||
$snapFileLocalExists = (bool) $hostPageSnap->storageLocal;
|
||||
$snapFileMegaExists = (bool) $hostPageSnap->storageMega;
|
||||
if ($hostPageSnap->storageLocal) {
|
||||
|
||||
if ($snapFileLocalExists) {
|
||||
|
||||
if (unlink('../storage/snap/hp/' . $snapFilePath . $hostPageSnap->timeAdded . '.zip')) {
|
||||
|
||||
$snapFileLocalExists = false;
|
||||
}
|
||||
unlink('../storage/snap/hp/' . $snapFilePath . $hostPageSnap->timeAdded . '.zip');
|
||||
}
|
||||
|
||||
if ($snapFileMegaExists) {
|
||||
if ($hostPageSnap->storageMega) {
|
||||
|
||||
$ftp = new Ftp();
|
||||
|
||||
if ($ftp->connect(MEGA_FTP_HOST, MEGA_FTP_PORT, null, null, MEGA_FTP_DIRECTORY)) {
|
||||
|
||||
if ($ftp->delete('hp/' . $snapFilePath . $hostPageSnap->timeAdded . '.zip')) {
|
||||
|
||||
$snapFileMegaExists = false;
|
||||
}
|
||||
$ftp->delete('hp/' . $snapFilePath . $hostPageSnap->timeAdded . '.zip');
|
||||
}
|
||||
}
|
||||
|
||||
if (!$snapFileLocalExists && !$snapFileMegaExists) {
|
||||
$db->deleteHostPageSnapDownloads($hostPageSnap->hostPageSnapId);
|
||||
|
||||
$db->deleteHostPageSnapDownloads($hostPageSnap->hostPageSnapId);
|
||||
|
||||
$hostPagesSnapDeleted += $db->deleteHostPageSnap($hostPageSnap->hostPageSnapId);
|
||||
}
|
||||
$hostPagesSnapDeleted += $db->deleteHostPageSnap($hostPageSnap->hostPageSnapId);
|
||||
}
|
||||
|
||||
// Delete host page
|
||||
@ -145,36 +132,23 @@ try {
|
||||
|
||||
foreach ($db->getHostPageSnaps($hostPage->hostPageId) as $hostPageSnap) {
|
||||
|
||||
$snapFileLocalExists = (bool) $hostPageSnap->storageLocal;
|
||||
$snapFileMegaExists = (bool) $hostPageSnap->storageMega;
|
||||
if ($hostPageSnap->storageLocal) {
|
||||
|
||||
if ($snapFileLocalExists) {
|
||||
|
||||
if (unlink('../storage/snap/hp/' . $snapFilePath . $hostPageSnap->timeAdded . '.zip')) {
|
||||
|
||||
$snapFileLocalExists = false;
|
||||
}
|
||||
unlink('../storage/snap/hp/' . $snapFilePath . $hostPageSnap->timeAdded . '.zip');
|
||||
}
|
||||
|
||||
if ($snapFileMegaExists) {
|
||||
if ($hostPageSnap->storageMega) {
|
||||
|
||||
$ftp = new Ftp();
|
||||
|
||||
if ($ftp->connect(MEGA_FTP_HOST, MEGA_FTP_PORT, null, null, MEGA_FTP_DIRECTORY)) {
|
||||
|
||||
if ($ftp->delete('hp/' . $snapFilePath . $hostPageSnap->timeAdded . '.zip')) {
|
||||
|
||||
$snapFileMegaExists = false;
|
||||
}
|
||||
$ftp->delete('hp/' . $snapFilePath . $hostPageSnap->timeAdded . '.zip');
|
||||
}
|
||||
}
|
||||
|
||||
if (!$snapFileLocalExists && !$snapFileMegaExists) {
|
||||
$db->deleteHostPageSnapDownloads($hostPageSnap->hostPageSnapId);
|
||||
|
||||
$db->deleteHostPageSnapDownloads($hostPageSnap->hostPageSnapId);
|
||||
|
||||
$hostPagesSnapDeleted += $db->deleteHostPageSnap($hostPageSnap->hostPageSnapId);
|
||||
}
|
||||
$hostPagesSnapDeleted += $db->deleteHostPageSnap($hostPageSnap->hostPageSnapId);
|
||||
}
|
||||
|
||||
// Delete host page
|
||||
|
Loading…
x
Reference in New Issue
Block a user