appwrite/src/Appwrite/Platform/Workers/Deletes.php

1148 lines
42 KiB
PHP
Raw Normal View History

<?php
2023-06-05 16:13:00 +00:00
namespace Appwrite\Platform\Workers;
2022-11-21 14:24:52 +00:00
use Appwrite\Auth\Auth;
2024-11-20 10:10:57 +00:00
use Appwrite\Certificates\Adapter as CertificatesAdapter;
use Appwrite\Extend\Exception;
2023-08-23 20:19:22 +00:00
use Executor\Executor;
2023-10-01 08:04:12 +00:00
use Throwable;
2023-06-05 16:13:00 +00:00
use Utopia\Audit\Audit;
use Utopia\Cache\Adapter\Filesystem;
use Utopia\Cache\Cache;
use Utopia\CLI\Console;
2024-05-09 04:52:53 +00:00
use Utopia\Config\Config;
2024-03-06 17:34:21 +00:00
use Utopia\Database\Database;
2022-11-21 14:24:52 +00:00
use Utopia\Database\DateTime;
2023-06-05 16:13:00 +00:00
use Utopia\Database\Document;
2024-03-06 17:34:21 +00:00
use Utopia\Database\Exception as DatabaseException;
2023-06-05 16:13:00 +00:00
use Utopia\Database\Exception\Authorization;
2023-10-01 08:04:12 +00:00
use Utopia\Database\Exception\Conflict;
use Utopia\Database\Exception\Restricted;
use Utopia\Database\Exception\Structure;
2023-06-05 16:13:00 +00:00
use Utopia\Database\Query;
2024-05-09 04:52:53 +00:00
use Utopia\DSN\DSN;
use Utopia\Logger\Log;
2023-06-05 16:13:00 +00:00
use Utopia\Platform\Action;
use Utopia\Queue\Message;
use Utopia\Storage\Device;
2024-04-01 11:02:47 +00:00
use Utopia\System\System;
2023-06-05 16:13:00 +00:00
class Deletes extends Action
{
2023-06-05 16:13:00 +00:00
public static function getName(): string
2022-05-16 09:58:17 +00:00
{
2023-06-05 16:13:00 +00:00
return 'deletes';
}
2023-06-05 16:13:00 +00:00
/**
* @throws Exception
*/
public function __construct()
{
2023-06-05 16:13:00 +00:00
$this
->desc('Deletes worker')
->inject('message')
2025-01-16 06:05:22 +00:00
->inject('project')
->inject('dbForPlatform')
2023-06-05 16:13:00 +00:00
->inject('getProjectDB')
2024-12-20 14:44:50 +00:00
->inject('timelimit')
2024-02-20 14:10:51 +00:00
->inject('deviceForFiles')
->inject('deviceForFunctions')
->inject('deviceForBuilds')
->inject('deviceForCache')
2024-11-20 10:10:57 +00:00
->inject('certificates')
2023-12-12 11:26:44 +00:00
->inject('executionRetention')
->inject('auditRetention')
->inject('log')
->callback(
2025-01-16 06:05:22 +00:00
fn ($message, Document $project, Database $dbForPlatform, callable $getProjectDB, callable $timelimit, Device $deviceForFiles, Device $deviceForFunctions, Device $deviceForBuilds, Device $deviceForCache, CertificatesAdapter $certificates, string $executionRetention, string $auditRetention, Log $log) =>
$this->action($message, $project, $dbForPlatform, $getProjectDB, $timelimit, $deviceForFiles, $deviceForFunctions, $deviceForBuilds, $deviceForCache, $certificates, $executionRetention, $auditRetention, $log)
);
}
2023-06-05 16:13:00 +00:00
/**
* @throws Exception
2023-10-01 08:04:12 +00:00
* @throws Throwable
2023-06-05 16:13:00 +00:00
*/
2025-01-16 06:05:22 +00:00
public function action(Message $message, Document $project, Database $dbForPlatform, callable $getProjectDB, callable $timelimit, Device $deviceForFiles, Device $deviceForFunctions, Device $deviceForBuilds, Device $deviceForCache, CertificatesAdapter $certificates, string $executionRetention, string $auditRetention, Log $log): void
{
2023-06-05 16:13:00 +00:00
$payload = $message->getPayload() ?? [];
if (empty($payload)) {
throw new Exception('Missing payload');
}
$type = $payload['type'] ?? '';
$datetime = $payload['datetime'] ?? null;
$hourlyUsageRetentionDatetime = $payload['hourlyUsageRetentionDatetime'] ?? null;
$resource = $payload['resource'] ?? null;
$resourceType = $payload['resourceType'] ?? null;
2023-06-05 16:13:00 +00:00
$document = new Document($payload['document'] ?? []);
$log->addTag('projectId', $project->getId());
$log->addTag('type', $type);
2025-01-17 17:23:31 +00:00
var_dump("--------------------------------");
var_dump($type);
2024-01-02 13:02:11 +00:00
switch (\strval($type)) {
2020-12-18 14:05:15 +00:00
case DELETE_TYPE_DOCUMENT:
2021-06-12 10:07:26 +00:00
switch ($document->getCollection()) {
2021-10-26 00:14:55 +00:00
case DELETE_TYPE_PROJECTS:
$this->deleteProject($dbForPlatform, $getProjectDB, $deviceForFiles, $deviceForFunctions, $deviceForBuilds, $deviceForCache, $certificates, $document);
break;
2021-10-26 00:14:55 +00:00
case DELETE_TYPE_FUNCTIONS:
$this->deleteFunction($dbForPlatform, $getProjectDB, $deviceForFunctions, $deviceForBuilds, $certificates, $document, $project);
break;
case DELETE_TYPE_DEPLOYMENTS:
2024-02-20 14:10:51 +00:00
$this->deleteDeployment($getProjectDB, $deviceForFunctions, $deviceForBuilds, $document, $project);
break;
2021-10-26 00:14:55 +00:00
case DELETE_TYPE_USERS:
2023-06-05 16:13:00 +00:00
$this->deleteUser($getProjectDB, $document, $project);
break;
2021-11-07 05:54:28 +00:00
case DELETE_TYPE_BUCKETS:
2024-02-20 14:10:51 +00:00
$this->deleteBucket($getProjectDB, $deviceForFiles, $document, $project);
break;
case DELETE_TYPE_INSTALLATIONS:
$this->deleteInstallation($dbForPlatform, $getProjectDB, $document, $project);
break;
2023-03-10 07:42:52 +00:00
case DELETE_TYPE_RULES:
$this->deleteRule($dbForPlatform, $document, $certificates);
2021-07-28 10:09:29 +00:00
break;
default:
2021-09-01 09:13:23 +00:00
Console::error('No lazy delete operation available for document of type: ' . $document->getCollection());
break;
}
2020-12-14 21:26:37 +00:00
break;
2024-06-27 22:27:04 +00:00
case DELETE_TYPE_TEAM_PROJECTS:
$this->deleteProjectsByTeam($dbForPlatform, $getProjectDB, $certificates, $document);
2024-06-27 22:27:04 +00:00
break;
2020-12-27 17:57:35 +00:00
case DELETE_TYPE_EXECUTIONS:
2023-12-12 11:26:44 +00:00
$this->deleteExecutionLogs($project, $getProjectDB, $executionRetention);
2020-12-21 18:15:52 +00:00
break;
2020-12-18 14:05:15 +00:00
case DELETE_TYPE_AUDIT:
2023-12-12 11:26:44 +00:00
if (!$project->isEmpty()) {
$this->deleteAuditLogs($project, $getProjectDB, $auditRetention);
}
break;
case DELETE_TYPE_REALTIME:
$this->deleteRealtimeUsage($dbForPlatform, $datetime);
break;
case DELETE_TYPE_SESSIONS:
2023-12-12 11:26:44 +00:00
$this->deleteExpiredSessions($project, $getProjectDB);
break;
case DELETE_TYPE_USAGE:
2023-12-12 11:26:44 +00:00
$this->deleteUsageStats($project, $getProjectDB, $hourlyUsageRetentionDatetime);
2021-09-06 09:39:36 +00:00
break;
2022-08-15 09:05:41 +00:00
case DELETE_TYPE_CACHE_BY_RESOURCE:
$this->deleteCacheByResource($project, $getProjectDB, $resource, $resourceType);
2022-08-15 09:05:41 +00:00
break;
case DELETE_TYPE_CACHE_BY_TIMESTAMP:
2023-10-01 08:04:12 +00:00
$this->deleteCacheByDate($project, $getProjectDB, $datetime);
2022-07-03 09:36:59 +00:00
break;
2022-11-16 12:51:43 +00:00
case DELETE_TYPE_SCHEDULES:
$this->deleteSchedules($dbForPlatform, $getProjectDB, $datetime);
2022-11-16 12:51:43 +00:00
break;
2023-10-25 17:33:23 +00:00
case DELETE_TYPE_TOPIC:
$this->deleteTopic($project, $getProjectDB, $document);
2023-10-17 17:23:26 +00:00
break;
case DELETE_TYPE_TARGET:
$this->deleteTargetSubscribers($project, $getProjectDB, $document);
break;
2024-01-19 04:23:44 +00:00
case DELETE_TYPE_EXPIRED_TARGETS:
$this->deleteExpiredTargets($project, $getProjectDB);
break;
case DELETE_TYPE_SESSION_TARGETS:
$this->deleteSessionTargets($project, $getProjectDB, $document);
break;
2025-01-16 07:44:47 +00:00
case DELETE_TYPE_MAINTENANCE:
2025-01-16 11:29:30 +00:00
$this->deleteExpiredTargets($project, $getProjectDB);
$this->deleteExecutionLogs($project, $getProjectDB, $executionRetention);
$this->deleteAuditLogs($project, $getProjectDB, $auditRetention);
$this->deleteUsageStats($project, $getProjectDB, $hourlyUsageRetentionDatetime);
$this->deleteExpiredSessions($project, $getProjectDB);
2025-01-16 07:44:47 +00:00
break;
2020-12-19 08:08:03 +00:00
default:
2024-01-02 13:02:11 +00:00
throw new \Exception('No delete operation for type: ' . \strval($type));
2021-09-01 09:13:23 +00:00
}
}
2022-11-16 12:51:43 +00:00
/**
* @param Database $dbForPlatform
2023-06-05 16:13:00 +00:00
* @param callable $getProjectDB
* @param string $datetime
2024-01-15 05:26:30 +00:00
* @param Document|null $document
2023-06-05 16:13:00 +00:00
* @return void
* @throws Authorization
2024-01-15 05:26:30 +00:00
* @throws Conflict
* @throws Restricted
* @throws Structure
* @throws DatabaseException
2022-11-16 12:51:43 +00:00
*/
private function deleteSchedules(Database $dbForPlatform, callable $getProjectDB, string $datetime): void
2022-11-16 12:51:43 +00:00
{
2022-12-14 08:44:40 +00:00
$this->listByGroup(
2022-11-16 14:31:49 +00:00
'schedules',
[
2024-04-01 11:02:47 +00:00
Query::equal('region', [System::getEnv('_APP_REGION', 'default')]),
2022-11-16 12:51:43 +00:00
Query::lessThanEqual('resourceUpdatedAt', $datetime),
Query::equal('active', [false]),
2022-11-16 14:31:49 +00:00
],
$dbForPlatform,
function (Document $document) use ($dbForPlatform, $getProjectDB) {
$project = $dbForPlatform->getDocument('projects', $document->getAttribute('projectId'));
2022-11-16 12:51:43 +00:00
if ($project->isEmpty()) {
$dbForPlatform->deleteDocument('schedules', $document->getId());
Console::success('Deleted schedule for deleted project ' . $document->getAttribute('projectId'));
2022-11-16 14:31:49 +00:00
return;
2022-11-16 12:51:43 +00:00
}
2024-02-20 14:25:01 +00:00
$collectionId = match ($document->getAttribute('resourceType')) {
'function' => 'functions',
'message' => 'messages'
};
2024-01-15 06:00:41 +00:00
$resource = $getProjectDB($project)->getDocument(
2024-02-20 14:25:01 +00:00
$collectionId,
2024-01-15 06:00:41 +00:00
$document->getAttribute('resourceId')
);
2022-11-16 12:51:43 +00:00
2024-01-15 06:00:41 +00:00
$delete = true;
switch ($document->getAttribute('resourceType')) {
case 'function':
$delete = $resource->isEmpty();
break;
}
2022-11-16 12:51:43 +00:00
2024-01-15 06:00:41 +00:00
if ($delete) {
$dbForPlatform->deleteDocument('schedules', $document->getId());
2024-01-15 06:00:41 +00:00
Console::success('Deleting schedule for ' . $document->getAttribute('resourceType') . ' ' . $document->getAttribute('resourceId'));
2022-11-16 12:51:43 +00:00
}
}
2022-11-16 14:31:49 +00:00
);
2022-11-16 12:51:43 +00:00
}
2023-10-17 17:23:26 +00:00
/**
* @param Document $project
* @param callable $getProjectDB
2023-10-17 17:23:26 +00:00
* @param Document $topic
* @throws Exception
*/
private function deleteTopic(Document $project, callable $getProjectDB, Document $topic)
2023-10-17 17:23:26 +00:00
{
if ($topic->isEmpty()) {
Console::error('Failed to delete subscribers. Topic not found');
return;
}
$this->deleteByGroup(
'subscribers',
[
Query::equal('topicInternalId', [$topic->getInternalId()])
],
$getProjectDB($project)
);
2023-10-17 17:23:26 +00:00
}
/**
* @param Document $project
* @param callable $getProjectDB
* @param Document $target
* @throws Exception
*/
private function deleteTargetSubscribers(Document $project, callable $getProjectDB, Document $target): void
{
/** @var Database */
$dbForProject = $getProjectDB($project);
// Delete subscribers and decrement topic counts
$this->deleteByGroup(
'subscribers',
[
Query::equal('targetInternalId', [$target->getInternalId()])
],
$dbForProject,
function (Document $subscriber) use ($dbForProject, $target) {
$topicId = $subscriber->getAttribute('topicId');
$topicInternalId = $subscriber->getAttribute('topicInternalId');
$topic = $dbForProject->getDocument('topics', $topicId);
if (!$topic->isEmpty() && $topic->getInternalId() === $topicInternalId) {
$totalAttribute = match ($target->getAttribute('providerType')) {
MESSAGE_TYPE_EMAIL => 'emailTotal',
MESSAGE_TYPE_SMS => 'smsTotal',
MESSAGE_TYPE_PUSH => 'pushTotal',
2024-11-20 10:10:57 +00:00
default => throw new Exception('Invalid target CertificatesAdapter type'),
};
$dbForProject->decreaseDocumentAttribute(
'topics',
$topicId,
$totalAttribute,
min: 0
);
}
}
);
}
2024-01-19 04:23:44 +00:00
/**
* @param Document $project
* @param callable $getProjectDB
* @param Document $target
* @return void
* @throws Exception
*/
private function deleteExpiredTargets(Document $project, callable $getProjectDB): void
2024-01-19 04:23:44 +00:00
{
$this->deleteByGroup(
'targets',
[
Query::equal('expired', [true])
],
$getProjectDB($project),
function (Document $target) use ($getProjectDB, $project) {
$this->deleteTargetSubscribers($project, $getProjectDB, $target);
2024-01-19 04:23:44 +00:00
}
);
}
private function deleteSessionTargets(Document $project, callable $getProjectDB, Document $session): void
{
$this->deleteByGroup(
'targets',
[
Query::equal('sessionInternalId', [$session->getInternalId()])
],
$getProjectDB($project),
function (Document $target) use ($getProjectDB, $project) {
$this->deleteTargetSubscribers($project, $getProjectDB, $target);
}
);
}
2022-07-03 09:36:59 +00:00
/**
2023-06-13 08:15:38 +00:00
* @param Document $project
2023-06-05 16:13:00 +00:00
* @param callable $getProjectDB
* @param string $resource
2023-10-01 17:39:26 +00:00
* @return void
2023-10-01 08:04:12 +00:00
* @throws Authorization
* @param string|null $resourceType
* @throws Exception
2022-07-03 09:36:59 +00:00
*/
private function deleteCacheByResource(Document $project, callable $getProjectDB, string $resource, string $resourceType = null): void
2022-08-15 09:05:41 +00:00
{
2023-06-13 08:15:38 +00:00
$projectId = $project->getId();
2023-10-01 08:04:12 +00:00
$dbForProject = $getProjectDB($project);
$cache = new Cache(
new Filesystem(APP_STORAGE_CACHE . DIRECTORY_SEPARATOR . 'app-' . $projectId)
);
$query[] = Query::equal('resource', [$resource]);
if (!empty($resourceType)) {
$query[] = Query::equal('resourceType', [$resourceType]);
}
$this->deleteByGroup(
'cache',
$query,
$dbForProject,
function (Document $document) use ($cache, $projectId) {
$path = APP_STORAGE_CACHE . DIRECTORY_SEPARATOR . 'app-' . $projectId . DIRECTORY_SEPARATOR . $document->getId();
if ($cache->purge($document->getId())) {
Console::success('Deleting cache file: ' . $path);
} else {
Console::error('Failed to delete cache file: ' . $path);
}
}
);
2022-08-15 09:05:41 +00:00
}
2023-06-13 08:15:38 +00:00
/**
2023-10-01 08:04:12 +00:00
* Document $project
* @param Document $project
* @param callable $getProjectDB
2023-06-13 08:15:38 +00:00
* @param string $datetime
2023-10-01 08:04:12 +00:00
* @return void
2023-06-13 08:15:38 +00:00
* @throws Exception
*/
2023-10-17 18:32:38 +00:00
private function deleteCacheByDate(Document $project, callable $getProjectDB, string $datetime): void
2022-07-03 09:36:59 +00:00
{
2023-10-01 08:04:12 +00:00
$projectId = $project->getId();
$dbForProject = $getProjectDB($project);
2022-07-03 09:36:59 +00:00
2023-10-01 08:04:12 +00:00
$cache = new Cache(
new Filesystem(APP_STORAGE_CACHE . DIRECTORY_SEPARATOR . 'app-' . $projectId)
);
2023-06-13 08:15:38 +00:00
2023-10-01 08:04:12 +00:00
$query = [
Query::lessThan('accessedAt', $datetime),
];
2023-10-01 08:04:12 +00:00
$this->deleteByGroup(
'cache',
$query,
$dbForProject,
function (Document $document) use ($cache, $projectId) {
$path = APP_STORAGE_CACHE . DIRECTORY_SEPARATOR . 'app-' . $projectId . DIRECTORY_SEPARATOR . $document->getId();
if ($cache->purge($document->getId())) {
Console::success('Deleting cache file: ' . $path);
} else {
Console::error('Failed to delete cache file: ' . $path);
2022-07-05 07:37:46 +00:00
}
2023-10-01 08:04:12 +00:00
}
);
2022-07-03 09:36:59 +00:00
}
2021-08-27 11:37:52 +00:00
/**
* @param Database $dbForPlatform
2023-06-05 16:13:00 +00:00
* @param callable $getProjectDB
2022-10-28 08:40:04 +00:00
* @param string $hourlyUsageRetentionDatetime
2023-10-01 17:39:26 +00:00
* @return void
* @throws Exception
2021-08-27 11:37:52 +00:00
*/
2023-12-12 11:26:44 +00:00
private function deleteUsageStats(Document $project, callable $getProjectDB, string $hourlyUsageRetentionDatetime): void
2021-09-01 09:13:23 +00:00
{
2023-12-12 11:26:44 +00:00
$dbForProject = $getProjectDB($project);
// Delete Usage stats
2024-03-05 09:36:23 +00:00
$this->deleteByGroup('stats', [
2023-12-12 11:26:44 +00:00
Query::lessThan('time', $hourlyUsageRetentionDatetime),
Query::equal('period', ['1h']),
], $dbForProject);
2021-08-27 11:37:52 +00:00
}
2021-07-13 19:24:52 +00:00
/**
2023-06-05 16:13:00 +00:00
* @param callable $getProjectDB
2021-07-13 19:24:52 +00:00
* @param Document $document teams document
2022-08-13 07:57:04 +00:00
* @param Document $project
2023-10-01 17:39:26 +00:00
* @return void
2023-06-05 16:13:00 +00:00
* @throws Exception
2021-07-13 19:24:52 +00:00
*/
2024-06-27 22:27:04 +00:00
public function deleteMemberships(callable $getProjectDB, Document $document, Document $project): void
2021-08-27 04:37:15 +00:00
{
2023-10-01 08:04:12 +00:00
$dbForProject = $getProjectDB($project);
2023-06-23 11:52:19 +00:00
$teamInternalId = $document->getInternalId();
// Delete Memberships
$this->deleteByGroup(
'memberships',
[
Query::equal('teamInternalId', [$teamInternalId])
],
$dbForProject,
function (Document $membership) use ($dbForProject) {
$userId = $membership->getAttribute('userId');
2023-12-14 13:32:06 +00:00
$dbForProject->purgeCachedDocument('users', $userId);
}
);
}
/**
* @param Database $dbForPlatform
2023-10-01 08:04:12 +00:00
* @param Document $document
* @return void
2023-06-05 16:13:00 +00:00
* @throws Authorization
* @throws DatabaseException
2023-10-01 08:04:12 +00:00
* @throws Conflict
* @throws Restricted
* @throws Structure
2024-05-29 19:52:22 +00:00
* @throws Exception
*/
private function deleteProjectsByTeam(Database $dbForPlatform, callable $getProjectDB, CertificatesAdapter $certificates, Document $document): void
{
2023-10-25 07:39:59 +00:00
$projects = $dbForPlatform->find('projects', [
Query::equal('teamInternalId', [$document->getInternalId()])
]);
2024-05-29 19:52:22 +00:00
foreach ($projects as $project) {
2024-05-29 19:52:22 +00:00
$deviceForFiles = getDevice(APP_STORAGE_UPLOADS . '/app-' . $project->getId());
$deviceForFunctions = getDevice(APP_STORAGE_FUNCTIONS . '/app-' . $project->getId());
$deviceForBuilds = getDevice(APP_STORAGE_BUILDS . '/app-' . $project->getId());
$deviceForCache = getDevice(APP_STORAGE_CACHE . '/app-' . $project->getId());
$this->deleteProject($dbForPlatform, $getProjectDB, $deviceForFiles, $deviceForFunctions, $deviceForBuilds, $deviceForCache, $certificates, $project);
$dbForPlatform->deleteDocument('projects', $project->getId());
}
}
2021-07-13 19:24:52 +00:00
/**
* @param Database $dbForPlatform
2023-10-01 08:04:12 +00:00
* @param callable $getProjectDB
2024-02-20 14:10:51 +00:00
* @param Device $deviceForFiles
* @param Device $deviceForFunctions
* @param Device $deviceForBuilds
* @param Device $deviceForCache
2023-10-01 08:04:12 +00:00
* @param Document $document
2023-10-01 17:39:26 +00:00
* @return void
* @throws Exception
2023-10-01 17:39:26 +00:00
* @throws Authorization
* @throws DatabaseException
2021-07-13 19:24:52 +00:00
*/
private function deleteProject(Database $dbForPlatform, callable $getProjectDB, Device $deviceForFiles, Device $deviceForFunctions, Device $deviceForBuilds, Device $deviceForCache, CertificatesAdapter $certificates, Document $document): void
{
2023-04-27 15:37:14 +00:00
$projectInternalId = $document->getInternalId();
2024-09-25 13:49:49 +00:00
$projectId = $document->getId();
2024-05-09 04:52:53 +00:00
try {
$dsn = new DSN($document->getAttribute('database', 'console'));
} catch (\InvalidArgumentException) {
// TODO: Temporary until all projects are using shared tables
$dsn = new DSN('mysql://' . $document->getAttribute('database', 'console'));
}
2023-06-11 10:29:04 +00:00
$dbForProject = $getProjectDB($document);
$projectCollectionIds = [
...\array_keys(Config::getParam('collections', [])['projects']),
2024-12-20 14:44:50 +00:00
Audit::COLLECTION
];
2024-09-26 07:38:36 +00:00
2024-05-09 04:52:53 +00:00
$limit = \count($projectCollectionIds) + 25;
2024-11-21 03:49:49 +00:00
$sharedTables = \explode(',', System::getEnv('_APP_DATABASE_SHARED_TABLES', ''));
2024-11-21 03:49:49 +00:00
$sharedTablesV1 = \explode(',', System::getEnv('_APP_DATABASE_SHARED_TABLES_V1', ''));
$projectTables = !\in_array($dsn->getHost(), $sharedTables);
$sharedTablesV1 = \in_array($dsn->getHost(), $sharedTablesV1);
$sharedTablesV2 = !$projectTables && !$sharedTablesV1;
$sharedTables = $sharedTablesV1 || $sharedTablesV2;
while (true) {
2024-05-09 04:52:53 +00:00
$collections = $dbForProject->listCollections($limit);
foreach ($collections as $collection) {
try {
2024-11-21 03:49:49 +00:00
if ($projectTables || !\in_array($collection->getId(), $projectCollectionIds)) {
2024-09-30 20:07:37 +00:00
$dbForProject->deleteCollection($collection->getId());
} else {
$this->deleteByGroup($collection->getId(), [], database: $dbForProject);
2024-09-30 20:07:37 +00:00
}
} catch (Throwable $e) {
Console::error('Error deleting '.$collection->getId().' '.$e->getMessage());
2024-05-09 04:52:53 +00:00
}
}
2024-11-21 03:49:49 +00:00
if ($sharedTables) {
$collectionsIds = \array_map(fn ($collection) => $collection->getId(), $collections);
if (empty(\array_diff($collectionsIds, $projectCollectionIds))) {
break;
}
} elseif (empty($collections)) {
break;
}
}
2023-04-27 15:37:14 +00:00
// Delete Platforms
$this->deleteByGroup('platforms', [
Query::equal('projectInternalId', [$projectInternalId])
], $dbForPlatform);
2023-04-27 15:37:14 +00:00
// Delete project and function rules
$this->deleteByGroup('rules', [
2023-04-27 15:37:14 +00:00
Query::equal('projectInternalId', [$projectInternalId])
], $dbForPlatform, function (Document $document) use ($dbForPlatform, $certificates) {
$this->deleteRule($dbForPlatform, $document, $certificates);
});
2023-04-27 15:37:14 +00:00
// Delete Keys
$this->deleteByGroup('keys', [
Query::equal('projectInternalId', [$projectInternalId])
], $dbForPlatform);
// Delete Webhooks
$this->deleteByGroup('webhooks', [
Query::equal('projectInternalId', [$projectInternalId])
], $dbForPlatform);
2023-04-27 15:37:14 +00:00
2023-11-03 09:24:51 +00:00
// Delete VCS Installations
$this->deleteByGroup('installations', [
Query::equal('projectInternalId', [$projectInternalId])
], $dbForPlatform);
2023-11-03 09:24:51 +00:00
2023-11-08 21:59:29 +00:00
// Delete VCS Repositories
2023-11-03 09:24:51 +00:00
$this->deleteByGroup('repositories', [
2023-11-03 10:02:50 +00:00
Query::equal('projectInternalId', [$projectInternalId]),
], $dbForPlatform);
2023-11-08 21:59:29 +00:00
2024-05-09 04:52:53 +00:00
// Delete VCS comments
2023-11-08 21:59:29 +00:00
$this->deleteByGroup('vcsComments', [
Query::equal('projectInternalId', [$projectInternalId]),
], $dbForPlatform);
2024-09-25 13:49:49 +00:00
// Delete Schedules (No projectInternalId in this collection)
2024-09-25 13:39:31 +00:00
$this->deleteByGroup('schedules', [
2024-09-25 13:49:49 +00:00
Query::equal('projectId', [$projectId]),
], $dbForPlatform);
2024-09-25 13:39:31 +00:00
2024-05-09 04:52:53 +00:00
// Delete metadata table
2024-11-21 03:49:49 +00:00
if ($projectTables) {
$dbForProject->deleteCollection(Database::METADATA);
2024-11-21 03:49:49 +00:00
} elseif ($sharedTablesV1) {
$this->deleteByGroup(Database::METADATA, [], $dbForProject);
2024-11-21 03:49:49 +00:00
} elseif ($sharedTablesV2) {
$queries = \array_map(
fn ($id) => Query::notEqual('$id', $id),
$projectCollectionIds
);
$this->deleteByGroup(Database::METADATA, $queries, $dbForProject);
}
2021-07-13 18:44:45 +00:00
// Delete all storage directories
2024-02-20 14:10:51 +00:00
$deviceForFiles->delete($deviceForFiles->getRoot(), true);
$deviceForFunctions->delete($deviceForFunctions->getRoot(), true);
$deviceForBuilds->delete($deviceForBuilds->getRoot(), true);
$deviceForCache->delete($deviceForCache->getRoot(), true);
}
2021-07-13 19:24:52 +00:00
/**
2023-06-05 16:13:00 +00:00
* @param callable $getProjectDB
2021-07-13 19:24:52 +00:00
* @param Document $document user document
2022-08-13 07:57:04 +00:00
* @param Document $project
2023-10-01 17:39:26 +00:00
* @return void
2023-06-05 16:13:00 +00:00
* @throws Exception
2021-07-13 19:24:52 +00:00
*/
2023-10-17 18:32:38 +00:00
private function deleteUser(callable $getProjectDB, Document $document, Document $project): void
{
2021-07-12 21:57:37 +00:00
$userId = $document->getId();
2023-06-23 11:52:19 +00:00
$userInternalId = $document->getInternalId();
2023-06-05 16:13:00 +00:00
$dbForProject = $getProjectDB($project);
2022-11-16 19:39:35 +00:00
// Delete all sessions of this user from the sessions table and update the sessions field of the user record
$this->deleteByGroup('sessions', [
2023-06-23 11:52:19 +00:00
Query::equal('userInternalId', [$userInternalId])
2022-11-16 19:39:35 +00:00
], $dbForProject);
2023-12-14 13:32:06 +00:00
$dbForProject->purgeCachedDocument('users', $userId);
// Delete Memberships and decrement team membership counts
2021-07-13 19:24:52 +00:00
$this->deleteByGroup('memberships', [
2023-06-23 11:52:19 +00:00
Query::equal('userInternalId', [$userInternalId])
2022-11-16 19:39:35 +00:00
], $dbForProject, function (Document $document) use ($dbForProject) {
if ($document->getAttribute('confirm')) { // Count only confirmed members
$teamId = $document->getAttribute('teamId');
2022-11-16 19:39:35 +00:00
$team = $dbForProject->getDocument('teams', $teamId);
2021-09-01 09:13:23 +00:00
if (!$team->isEmpty()) {
2024-02-12 01:18:19 +00:00
$dbForProject->decreaseDocumentAttribute('teams', $teamId, 'total', 1, 0);
}
}
});
2022-04-27 11:06:53 +00:00
// Delete tokens
$this->deleteByGroup('tokens', [
2023-06-23 11:52:19 +00:00
Query::equal('userInternalId', [$userInternalId])
2022-11-16 19:39:35 +00:00
], $dbForProject);
// Delete identities
$this->deleteByGroup('identities', [
Query::equal('userInternalId', [$userInternalId])
], $dbForProject);
// Delete targets
$this->deleteByGroup(
'targets',
[
Query::equal('userInternalId', [$userInternalId])
],
$dbForProject,
function (Document $target) use ($getProjectDB, $project) {
$this->deleteTargetSubscribers($project, $getProjectDB, $target);
}
);
}
2021-07-13 19:24:52 +00:00
/**
* @param database $dbForPlatform
2023-06-05 16:13:00 +00:00
* @param callable $getProjectDB
2022-07-11 15:12:41 +00:00
* @param string $datetime
2023-10-01 17:39:26 +00:00
* @return void
* @throws Exception
2021-07-13 19:24:52 +00:00
*/
2023-12-20 11:26:57 +00:00
private function deleteExecutionLogs(Document $project, callable $getProjectDB, string $datetime): void
2020-12-14 21:26:37 +00:00
{
2023-12-12 11:26:44 +00:00
$dbForProject = $getProjectDB($project);
// Delete Executions
$this->deleteByGroup('executions', [
Query::lessThan('$createdAt', $datetime)
], $dbForProject);
2020-12-14 21:26:37 +00:00
}
2023-06-05 16:13:00 +00:00
/**
* @param Database $dbForPlatform
2023-06-05 16:13:00 +00:00
* @param callable $getProjectDB
* @return void
2023-10-01 08:04:12 +00:00
* @throws Exception|Throwable
2023-06-05 16:13:00 +00:00
*/
2023-12-12 11:26:44 +00:00
private function deleteExpiredSessions(Document $project, callable $getProjectDB): void
{
2023-12-12 11:26:44 +00:00
$dbForProject = $getProjectDB($project);
$duration = $project->getAttribute('auths', [])['duration'] ?? Auth::TOKEN_EXPIRATION_LOGIN_LONG;
$expired = DateTime::addSeconds(new \DateTime(), -1 * $duration);
2022-12-14 08:44:40 +00:00
2023-12-12 11:26:44 +00:00
// Delete Sessions
$this->deleteByGroup('sessions', [
Query::lessThan('$createdAt', $expired)
], $dbForProject);
}
/**
* @param Database $dbForPlatform
2022-07-11 15:12:41 +00:00
* @param string $datetime
2023-10-01 17:39:26 +00:00
* @return void
* @throws Exception
*/
private function deleteRealtimeUsage(Database $dbForPlatform, string $datetime): void
{
2023-10-17 18:32:38 +00:00
// Delete Dead Realtime Logs
$this->deleteByGroup('realtime', [
Query::lessThan('timestamp', $datetime)
], $dbForPlatform);
}
2021-07-13 19:24:52 +00:00
/**
* @param Database $dbForPlatform
2023-06-05 16:13:00 +00:00
* @param callable $getProjectDB
2022-07-11 15:12:41 +00:00
* @param string $datetime
2023-10-01 17:39:26 +00:00
* @return void
2022-07-11 15:12:41 +00:00
* @throws Exception
2021-07-13 19:24:52 +00:00
*/
2023-12-12 11:26:44 +00:00
private function deleteAuditLogs(Document $project, callable $getProjectDB, string $auditRetention): void
{
2023-12-12 11:26:44 +00:00
$projectId = $project->getId();
$dbForProject = $getProjectDB($project);
$audit = new Audit($dbForProject);
2024-05-17 04:38:40 +00:00
try {
$audit->cleanup($auditRetention);
} catch (DatabaseException $e) {
Console::error('Failed to delete audit logs for project ' . $projectId . ': ' . $e->getMessage());
2020-12-18 14:05:15 +00:00
}
}
2021-07-13 19:24:52 +00:00
/**
2023-06-05 16:13:00 +00:00
* @param callable $getProjectDB
2024-02-20 14:10:51 +00:00
* @param Device $deviceForFunctions
* @param Device $deviceForBuilds
2021-07-13 19:24:52 +00:00
* @param Document $document function document
2022-08-13 07:57:04 +00:00
* @param Document $project
2023-10-01 17:39:26 +00:00
* @return void
2023-06-05 16:13:00 +00:00
* @throws Exception
2021-07-13 19:24:52 +00:00
*/
private function deleteFunction(Database $dbForPlatform, callable $getProjectDB, Device $deviceForFunctions, Device $deviceForBuilds, CertificatesAdapter $certificates, Document $document, Document $project): void
{
2022-08-13 07:57:04 +00:00
$projectId = $project->getId();
2023-06-05 16:13:00 +00:00
$dbForProject = $getProjectDB($project);
2022-02-12 22:34:16 +00:00
$functionId = $document->getId();
2023-06-23 11:52:19 +00:00
$functionInternalId = $document->getInternalId();
2022-01-28 00:25:28 +00:00
2023-02-22 15:07:34 +00:00
/**
2023-07-31 06:47:47 +00:00
* Delete rules
2023-02-22 15:07:34 +00:00
*/
2023-07-31 06:47:47 +00:00
Console::info("Deleting rules for function " . $functionId);
2023-03-08 18:30:01 +00:00
$this->deleteByGroup('rules', [
2023-02-22 15:07:34 +00:00
Query::equal('resourceType', ['function']),
2023-06-23 11:52:19 +00:00
Query::equal('resourceInternalId', [$functionInternalId]),
2023-02-22 15:07:34 +00:00
Query::equal('projectInternalId', [$project->getInternalId()])
], $dbForPlatform, function (Document $document) use ($project, $dbForPlatform, $certificates) {
$this->deleteRule($dbForPlatform, $document, $certificates);
2023-03-10 12:20:24 +00:00
});
2023-02-22 15:07:34 +00:00
2022-09-19 11:53:34 +00:00
/**
* Delete Variables
*/
Console::info("Deleting variables for function " . $functionId);
$this->deleteByGroup('variables', [
2023-03-11 16:06:02 +00:00
Query::equal('resourceType', ['function']),
2023-06-23 11:52:19 +00:00
Query::equal('resourceInternalId', [$functionInternalId])
2022-09-19 11:53:34 +00:00
], $dbForProject);
/**
* Delete Deployments
*/
2022-02-12 22:34:16 +00:00
Console::info("Deleting deployments for function " . $functionId);
2024-02-20 11:40:55 +00:00
2023-06-23 11:52:19 +00:00
$deploymentInternalIds = [];
$this->deleteByGroup('deployments', [
2023-06-23 11:52:19 +00:00
Query::equal('resourceInternalId', [$functionInternalId])
2024-02-20 14:10:51 +00:00
], $dbForProject, function (Document $document) use ($deviceForFunctions, &$deploymentInternalIds) {
2023-06-23 11:52:19 +00:00
$deploymentInternalIds[] = $document->getInternalId();
2024-02-20 14:10:51 +00:00
$this->deleteDeploymentFiles($deviceForFunctions, $document);
});
/**
* Delete builds
*/
2022-02-12 22:34:16 +00:00
Console::info("Deleting builds for function " . $functionId);
2024-02-20 11:40:55 +00:00
2023-06-23 11:52:19 +00:00
foreach ($deploymentInternalIds as $deploymentInternalId) {
2022-01-29 00:52:06 +00:00
$this->deleteByGroup('builds', [
2023-06-23 11:52:19 +00:00
Query::equal('deploymentInternalId', [$deploymentInternalId])
2024-02-20 14:10:51 +00:00
], $dbForProject, function (Document $document) use ($deviceForBuilds) {
$this->deleteBuildFiles($deviceForBuilds, $document);
2022-01-29 00:52:06 +00:00
});
}
2022-05-23 14:54:50 +00:00
/**
2022-02-12 22:34:16 +00:00
* Delete Executions
2022-05-16 09:58:17 +00:00
*/
2022-02-12 22:34:16 +00:00
Console::info("Deleting executions for function " . $functionId);
$this->deleteByGroup('executions', [
2023-06-23 11:52:19 +00:00
Query::equal('functionInternalId', [$functionInternalId])
], $dbForProject);
/**
* Delete VCS Repositories and VCS Comments
*/
Console::info("Deleting VCS repositories and comments linked to function " . $functionId);
$this->deleteByGroup('repositories', [
2023-11-14 11:38:09 +00:00
Query::equal('projectInternalId', [$project->getInternalId()]),
Query::equal('resourceInternalId', [$functionInternalId]),
Query::equal('resourceType', ['function']),
], $dbForPlatform, function (Document $document) use ($dbForPlatform) {
$providerRepositoryId = $document->getAttribute('providerRepositoryId', '');
2023-11-14 13:11:54 +00:00
$projectInternalId = $document->getAttribute('projectInternalId', '');
$this->deleteByGroup('vcsComments', [
Query::equal('providerRepositoryId', [$providerRepositoryId]),
2023-11-14 13:11:54 +00:00
Query::equal('projectInternalId', [$projectInternalId]),
], $dbForPlatform);
});
2023-03-14 11:13:03 +00:00
/**
* Request executor to delete all deployment containers
*/
Console::info("Requesting executor to delete all deployment containers for function " . $functionId);
2023-10-02 14:02:48 +00:00
$this->deleteRuntimes($getProjectDB, $document, $project);
}
2023-10-17 18:32:38 +00:00
/**
* @param Device $device
* @param Document $deployment
* @return void
*/
private function deleteDeploymentFiles(Device $device, Document $deployment): void
{
$deploymentId = $deployment->getId();
$deploymentPath = $deployment->getAttribute('path', '');
if (empty($deploymentPath)) {
Console::info("No deployment files for deployment " . $deploymentId);
return;
}
Console::info("Deleting deployment files for deployment " . $deploymentId);
try {
if ($device->delete($deploymentPath, true)) {
Console::success('Deleted deployment files: ' . $deploymentPath);
} else {
Console::error('Failed to delete deployment files: ' . $deploymentPath);
}
} catch (\Throwable $th) {
Console::error('Failed to delete deployment files: ' . $deploymentPath);
Console::error('[Error] Type: ' . get_class($th));
Console::error('[Error] Message: ' . $th->getMessage());
Console::error('[Error] File: ' . $th->getFile());
Console::error('[Error] Line: ' . $th->getLine());
}
}
2023-10-17 18:32:38 +00:00
/**
* @param Device $device
* @param Document $build
* @return void
*/
private function deleteBuildFiles(Device $device, Document $build): void
{
$buildId = $build->getId();
$buildPath = $build->getAttribute('path', '');
if (empty($buildPath)) {
Console::info("No build files for build " . $buildId);
return;
}
try {
if ($device->delete($buildPath, true)) {
Console::success('Deleted build files: ' . $buildPath);
} else {
Console::error('Failed to delete build files: ' . $buildPath);
}
} catch (\Throwable $th) {
Console::error('Failed to delete deployment files: ' . $buildPath);
Console::error('[Error] Type: ' . get_class($th));
Console::error('[Error] Message: ' . $th->getMessage());
Console::error('[Error] File: ' . $th->getFile());
Console::error('[Error] Line: ' . $th->getLine());
}
}
/**
2023-06-05 16:13:00 +00:00
* @param callable $getProjectDB
2024-02-20 14:10:51 +00:00
* @param Device $deviceForFunctions
* @param Device $deviceForBuilds
2023-10-01 08:04:12 +00:00
* @param Document $document
2022-08-13 07:57:04 +00:00
* @param Document $project
2023-10-01 17:39:26 +00:00
* @return void
2023-06-05 16:13:00 +00:00
* @throws Exception
*/
2024-02-20 14:10:51 +00:00
private function deleteDeployment(callable $getProjectDB, Device $deviceForFunctions, Device $deviceForBuilds, Document $document, Document $project): void
{
2022-08-13 07:57:04 +00:00
$projectId = $project->getId();
2023-06-05 16:13:00 +00:00
$dbForProject = $getProjectDB($project);
$deploymentId = $document->getId();
2023-06-23 11:52:19 +00:00
$deploymentInternalId = $document->getInternalId();
/**
2022-01-29 00:00:25 +00:00
* Delete deployment files
*/
2024-02-20 14:10:51 +00:00
$this->deleteDeploymentFiles($deviceForFunctions, $document);
/**
* Delete builds
*/
2022-02-12 22:34:16 +00:00
Console::info("Deleting builds for deployment " . $deploymentId);
2024-02-20 11:40:55 +00:00
$this->deleteByGroup('builds', [
2023-06-23 11:52:19 +00:00
Query::equal('deploymentInternalId', [$deploymentInternalId])
2024-02-20 14:10:51 +00:00
], $dbForProject, function (Document $document) use ($deviceForBuilds) {
$this->deleteBuildFiles($deviceForBuilds, $document);
});
2023-03-14 11:13:03 +00:00
/**
* Request executor to delete all deployment containers
*/
Console::info("Requesting executor to delete deployment container for deployment " . $deploymentId);
2023-10-01 17:39:26 +00:00
$this->deleteRuntimes($getProjectDB, $document, $project);
}
2021-07-13 19:24:52 +00:00
/**
* @param Document $document to be deleted
* @param Database $database to delete it from
* @param callable|null $callback to perform after document is deleted
2023-10-17 18:32:38 +00:00
* @return void
2021-07-13 19:24:52 +00:00
*/
2023-10-17 18:32:38 +00:00
private function deleteById(Document $document, Database $database, callable $callback = null): void
{
if ($database->deleteDocument($document->getCollection(), $document->getId())) {
2021-09-01 09:13:23 +00:00
Console::success('Deleted document "' . $document->getId() . '" successfully');
2021-09-01 09:13:23 +00:00
if (is_callable($callback)) {
$callback($document);
}
2021-09-01 09:13:23 +00:00
} else {
Console::error('Failed to delete document: ' . $document->getId());
}
}
/**
* @param string $collection collectionID
* @param array $queries
* @param Database $database
* @param callable|null $callback
2023-10-01 17:39:26 +00:00
* @return void
* @throws Exception
*/
2024-08-12 14:44:05 +00:00
protected function deleteByGroup(string $collection, array $queries, Database $database, callable $callback = null): void
{
$count = 0;
$chunk = 0;
$limit = 50;
$sum = $limit;
$executionStart = \microtime(true);
2023-06-05 16:13:00 +00:00
while ($sum === $limit) {
$chunk++;
2024-05-17 04:38:40 +00:00
try {
$results = $database->find($collection, [Query::limit($limit), ...$queries]);
} catch (DatabaseException $e) {
Console::error('Failed to find documents for collection ' . $collection . ': ' . $e->getMessage());
return;
}
2023-06-05 16:13:00 +00:00
$sum = count($results);
2023-06-05 16:13:00 +00:00
Console::info('Deleting chunk #' . $chunk . '. Found ' . $sum . ' documents');
2023-06-05 16:13:00 +00:00
foreach ($results as $document) {
$this->deleteById($document, $database, $callback);
$count++;
}
}
$executionEnd = \microtime(true);
Console::info("Deleted {$count} document by group in " . ($executionEnd - $executionStart) . " seconds");
}
2021-07-12 21:57:37 +00:00
/**
* @param string $collection collectionID
* @param Query[] $queries
2021-07-13 19:24:52 +00:00
* @param Database $database
2023-06-05 16:13:00 +00:00
* @param callable|null $callback
2023-10-01 17:39:26 +00:00
* @return void
2023-06-05 16:13:00 +00:00
* @throws Exception
2021-07-12 21:57:37 +00:00
*/
2024-08-12 14:44:05 +00:00
protected function listByGroup(string $collection, array $queries, Database $database, callable $callback = null): void
{
$count = 0;
$chunk = 0;
$limit = 50;
$results = [];
$sum = $limit;
$cursor = null;
$executionStart = \microtime(true);
2021-09-01 09:13:23 +00:00
while ($sum === $limit) {
$chunk++;
$mergedQueries = \array_merge([Query::limit($limit)], $queries);
if ($cursor instanceof Document) {
$mergedQueries[] = Query::cursorAfter($cursor);
}
$results = $database->find($collection, $mergedQueries);
2022-01-29 00:52:06 +00:00
$sum = count($results);
if ($sum > 0) {
$cursor = $results[$sum - 1];
}
foreach ($results as $document) {
2022-12-14 08:44:40 +00:00
if (is_callable($callback)) {
$callback($document);
}
$count++;
}
}
$executionEnd = \microtime(true);
2022-12-14 08:44:40 +00:00
Console::info("Listed {$count} document by group in " . ($executionEnd - $executionStart) . " seconds");
}
2021-07-13 19:24:52 +00:00
/**
* @param Database $dbForPlatform
2023-03-10 07:42:52 +00:00
* @param Document $document rule document
2023-10-01 17:39:26 +00:00
* @return void
2021-07-13 19:24:52 +00:00
*/
private function deleteRule(Database $dbForPlatform, Document $document, CertificatesAdapter $certificates): void
2021-02-05 09:05:26 +00:00
{
2021-02-05 10:57:43 +00:00
$domain = $document->getAttribute('domain');
2024-11-20 10:10:57 +00:00
$certificates->deleteCertificate($domain);
2023-03-10 07:42:52 +00:00
// Delete certificate document, so Appwrite is aware of change
if (isset($document['certificateId'])) {
$dbForPlatform->deleteDocument('certificates', $document['certificateId']);
2023-03-10 07:42:52 +00:00
}
2021-02-05 09:05:26 +00:00
}
2021-07-18 07:03:48 +00:00
2023-06-05 16:13:00 +00:00
/**
* @param callable $getProjectDB
2024-02-20 14:10:51 +00:00
* @param Device $deviceForFiles
2023-06-05 16:13:00 +00:00
* @param Document $document
* @param Document $project
* @return void
*/
2024-02-20 14:10:51 +00:00
private function deleteBucket(callable $getProjectDB, Device $deviceForFiles, Document $document, Document $project): void
2021-07-18 07:03:48 +00:00
{
2023-06-05 16:13:00 +00:00
$dbForProject = $getProjectDB($project);
2022-02-18 01:36:25 +00:00
$dbForProject->deleteCollection('bucket_' . $document->getInternalId());
2021-07-28 10:14:47 +00:00
2024-02-20 14:10:51 +00:00
$deviceForFiles->deletePath($document->getId());
2021-07-18 07:03:48 +00:00
}
2023-03-14 11:13:03 +00:00
2023-10-01 08:04:12 +00:00
/**
* @param Database $dbForPlatform
2023-10-01 08:04:12 +00:00
* @param callable $getProjectDB
* @param Document $document
* @param Document $project
* @return void
2023-10-01 17:39:26 +00:00
* @throws Exception
2023-10-01 08:04:12 +00:00
*/
private function deleteInstallation(Database $dbForPlatform, callable $getProjectDB, Document $document, Document $project): void
{
2023-10-01 08:04:12 +00:00
$dbForProject = $getProjectDB($project);
$this->listByGroup('functions', [
Query::equal('installationInternalId', [$document->getInternalId()])
], $dbForProject, function ($function) use ($dbForProject, $dbForPlatform) {
$dbForPlatform->deleteDocument('repositories', $function->getAttribute('repositoryId'));
$function = $function
->setAttribute('installationId', '')
->setAttribute('installationInternalId', '')
->setAttribute('providerRepositoryId', '')
->setAttribute('providerBranch', '')
->setAttribute('providerSilentMode', false)
->setAttribute('providerRootDirectory', '')
->setAttribute('repositoryId', '')
->setAttribute('repositoryInternalId', '');
$dbForProject->updateDocument('functions', $function->getId(), $function);
});
}
2023-10-01 08:04:12 +00:00
/**
* @param callable $getProjectDB
* @param ?Document $function
* @param Document $project
2023-10-01 17:39:26 +00:00
* @return void
2023-10-01 08:04:12 +00:00
* @throws Exception
*/
2023-10-17 18:32:38 +00:00
private function deleteRuntimes(callable $getProjectDB, ?Document $function, Document $project): void
2023-03-14 19:31:23 +00:00
{
2024-04-01 11:02:47 +00:00
$executor = new Executor(System::getEnv('_APP_EXECUTOR_HOST'));
2023-03-14 11:13:03 +00:00
2023-10-01 08:04:12 +00:00
$deleteByFunction = function (Document $function) use ($getProjectDB, $project, $executor) {
2023-03-14 11:13:03 +00:00
$this->listByGroup(
'deployments',
[
Query::equal('resourceInternalId', [$function->getInternalId()]),
Query::equal('resourceType', ['functions']),
],
2023-10-01 08:04:12 +00:00
$getProjectDB($project),
2023-03-14 11:13:03 +00:00
function (Document $deployment) use ($project, $executor) {
$deploymentId = $deployment->getId();
try {
$executor->deleteRuntime($project->getId(), $deploymentId);
Console::info("Runtime for deployment {$deploymentId} deleted.");
} catch (Throwable $th) {
Console::warning("Runtime for deployment {$deploymentId} skipped:");
Console::error('[Error] Type: ' . get_class($th));
Console::error('[Error] Message: ' . $th->getMessage());
Console::error('[Error] File: ' . $th->getFile());
Console::error('[Error] Line: ' . $th->getLine());
}
}
);
};
2023-03-14 19:31:23 +00:00
if ($function !== null) {
2023-03-14 11:13:03 +00:00
// Delete function runtimes
$deleteByFunction($function);
} else {
// Delete all project runtimes
$this->listByGroup(
'functions',
[],
2023-10-01 08:04:12 +00:00
$getProjectDB($project),
2023-03-14 11:13:03 +00:00
function (Document $function) use ($deleteByFunction) {
$deleteByFunction($function);
}
);
}
}
2021-09-01 09:13:23 +00:00
}