1
0
Fork 0
mirror of synced 2024-08-02 03:52:01 +12:00
appwrite/app/workers/builds.php

465 lines
20 KiB
PHP
Raw Normal View History

2022-01-24 11:25:46 +13:00
<?php
2023-06-13 18:26:36 +12:00
use Swoole\Coroutine as Co;
2022-04-19 04:21:45 +12:00
use Appwrite\Event\Event;
2022-11-16 07:13:17 +13:00
use Appwrite\Event\Func;
2022-03-01 00:50:27 +13:00
use Appwrite\Messaging\Adapter\Realtime;
2022-01-24 11:25:46 +13:00
use Appwrite\Resque\Worker;
2022-04-19 04:21:45 +12:00
use Appwrite\Utopia\Response\Model\Deployment;
2022-02-04 14:29:40 +13:00
use Executor\Executor;
2022-08-09 18:28:38 +12:00
use Appwrite\Usage\Stats;
use Appwrite\Vcs\Comment;
use Utopia\Database\DateTime;
2022-01-24 11:25:46 +13:00
use Utopia\App;
use Utopia\CLI\Console;
2022-08-15 02:22:38 +12:00
use Utopia\Database\ID;
2022-11-18 01:50:17 +13:00
use Utopia\DSN\DSN;
2022-01-24 11:25:46 +13:00
use Utopia\Database\Document;
use Utopia\Config\Config;
use Utopia\Database\Database;
2022-11-18 06:43:59 +13:00
use Utopia\Storage\Storage;
use Utopia\Database\Validator\Authorization;
use Utopia\VCS\Adapter\Git\GitHub;
2022-01-24 11:25:46 +13:00
2022-04-20 01:13:55 +12:00
require_once __DIR__ . '/../init.php';
2022-01-24 11:25:46 +13:00
Console::title('Builds V1 Worker');
2022-04-20 01:13:55 +12:00
Console::success(APP_NAME . ' build worker v1 has started');
2022-01-24 11:25:46 +13:00
2022-01-25 09:06:29 +13:00
// TODO: Executor should return appropriate response codes.
2022-01-24 11:25:46 +13:00
class BuildsV1 extends Worker
{
2022-04-20 01:13:55 +12:00
private ?Executor $executor = null;
2022-01-24 11:25:46 +13:00
2022-04-20 01:13:55 +12:00
public function getName(): string
2022-01-26 12:45:41 +13:00
{
2022-01-24 11:25:46 +13:00
return "builds";
}
2022-05-10 00:36:29 +12:00
public function init(): void
{
$this->executor = new Executor(App::getEnv('_APP_EXECUTOR_HOST'));
2022-02-04 14:29:40 +13:00
}
2022-01-24 11:25:46 +13:00
public function run(): void
{
$type = $this->args['type'] ?? '';
2022-04-20 01:13:55 +12:00
$project = new Document($this->args['project'] ?? []);
$resource = new Document($this->args['resource'] ?? []);
$deployment = new Document($this->args['deployment'] ?? []);
2023-06-18 00:12:21 +12:00
$template = new Document($this->args['template'] ?? []);
$SHA = $this->args['SHA'] ?? '';
$targetUrl = $this->args['targetUrl'] ?? '';
2022-01-24 11:25:46 +13:00
switch ($type) {
case BUILD_TYPE_DEPLOYMENT:
2022-02-17 09:06:22 +13:00
case BUILD_TYPE_RETRY:
2022-04-20 01:13:55 +12:00
Console::info('Creating build for deployment: ' . $deployment->getId());
2023-05-26 20:44:08 +12:00
$github = new GitHub($this->getCache());
2023-06-18 00:12:21 +12:00
$this->buildDeployment($github, $project, $resource, $deployment, $template, $SHA, $targetUrl);
2022-01-24 11:25:46 +13:00
break;
2022-01-24 11:25:46 +13:00
default:
throw new \Exception('Invalid build type');
2022-01-24 11:25:46 +13:00
break;
}
}
2023-06-18 00:12:21 +12:00
protected function buildDeployment(GitHub $github, Document $project, Document $function, Document $deployment, Document $template, string $SHA = '', string $targetUrl = '')
2022-01-24 11:25:46 +13:00
{
2023-06-18 00:12:21 +12:00
$templateRepositoryNmae = $template->getAttribute('templateRepositoryName');
$templateOwnerName = $template->getAttribute('templateOwnerName');
2022-11-17 01:19:29 +13:00
global $register;
2022-08-13 19:57:04 +12:00
$dbForProject = $this->getProjectDB($project);
$dbForConsole = $this->getConsoleDB();
2022-04-20 01:13:55 +12:00
$function = $dbForProject->getDocument('functions', $function->getId());
2022-01-24 11:25:46 +13:00
if ($function->isEmpty()) {
throw new Exception('Function not found', 404);
}
2022-04-20 01:13:55 +12:00
$deployment = $dbForProject->getDocument('deployments', $deployment->getId());
if ($deployment->isEmpty()) {
throw new Exception('Deployment not found', 404);
2022-01-24 11:25:46 +13:00
}
$runtimes = Config::getParam('runtimes', []);
$key = $function->getAttribute('runtime');
$runtime = isset($runtimes[$key]) ? $runtimes[$key] : null;
if (\is_null($runtime)) {
throw new Exception('Runtime "' . $function->getAttribute('runtime', '') . '" is not supported');
}
$connection = App::getEnv('_APP_CONNECTIONS_STORAGE', '');
/** @TODO : move this to the registry or someplace else */
2022-11-18 06:43:59 +13:00
$device = Storage::DEVICE_LOCAL;
2022-11-17 20:44:54 +13:00
try {
$dsn = new DSN($connection);
$device = $dsn->getScheme();
} catch (\Exception $e) {
2022-11-18 06:46:49 +13:00
Console::error($e->getMessage() . 'Invalid DSN. Defaulting to Local device.');
2022-11-17 20:44:54 +13:00
}
$buildId = $deployment->getAttribute('buildId', '');
2022-07-14 02:02:49 +12:00
$startTime = DateTime::now();
2023-03-29 02:21:42 +13:00
$durationStart = \microtime(true);
2022-01-24 11:25:46 +13:00
if (empty($buildId)) {
2022-08-15 02:22:38 +12:00
$buildId = ID::unique();
2023-05-22 23:29:35 +12:00
$vcsInstallationId = $deployment->getAttribute('vcsInstallationId', '');
2023-06-17 22:07:30 +12:00
$repositoryId = $deployment->getAttribute('vcsRepositoryId', '');
$isVcsEnabled = $repositoryId ? true : false;
if ($isVcsEnabled) {
2023-06-17 22:07:30 +12:00
\var_dump("Will clone");
$vcsInstallations = Authorization::skip(fn () => $dbForConsole->getDocument('vcsInstallations', $vcsInstallationId));
$installationId = $vcsInstallations->getAttribute('installationId');
$privateKey = App::getEnv('VCS_GITHUB_PRIVATE_KEY');
$githubAppId = App::getEnv('VCS_GITHUB_APP_ID');
$tmpDirectory = '/tmp/builds/' . $buildId . '/code';
$rootDirectory = $function->getAttribute('vcsRootDirectory', '');
$rootDirectory = \rtrim($rootDirectory, '/');
$rootDirectory = \ltrim($rootDirectory, '.');
$rootDirectory = \ltrim($rootDirectory, '/');
$github->initialiseVariables($installationId, $privateKey, $githubAppId);
2023-05-23 01:02:55 +12:00
$owner = $github->getOwnerName($installationId);
$repositoryName = $github->getRepositoryName($repositoryId);
$branchName = $deployment->getAttribute('vcsBranch');
$gitCloneCommand = $github->generateGitCloneCommand($owner, $repositoryId, $branchName, $tmpDirectory, $rootDirectory);
2023-06-17 22:07:30 +12:00
\var_dump($gitCloneCommand);
$stdout = '';
$stderr = '';
Console::execute('mkdir -p /tmp/builds/' . $buildId, '', $stdout, $stderr);
Console::execute($gitCloneCommand, '', $stdout, $stderr);
Console::execute('tar --exclude code.tar.gz -czf /tmp/builds/' . $buildId . '/code.tar.gz -C /tmp/builds/' . $buildId . '/code' . (empty($rootDirectory) ? '' : '/' . $rootDirectory) . ' .', '', $stdout, $stderr);
$deviceFunctions = $this->getFunctionsDevice($project->getId());
$fileName = 'code.tar.gz';
$fileTmpName = '/tmp/builds/' . $buildId . '/code.tar.gz';
$deploymentId = $deployment->getId();
$path = $deviceFunctions->getPath($deploymentId . '.' . \pathinfo($fileName, PATHINFO_EXTENSION));
$result = $deviceFunctions->move($fileTmpName, $path);
if (!$result) {
throw new \Exception("Unable to move file");
}
Console::execute('rm -rf /tmp/builds/' . $buildId, '', $stdout, $stderr);
$build = $dbForProject->createDocument('builds', new Document([
'$id' => $buildId,
'$permissions' => [],
'startTime' => $startTime,
'deploymentId' => $deployment->getId(),
'status' => 'processing',
2023-05-22 23:29:35 +12:00
'path' => '',
'runtime' => $function->getAttribute('runtime'),
'source' => $path,
'sourceType' => strtolower(App::getEnv('_APP_STORAGE_DEVICE', Storage::DEVICE_LOCAL)),
'stdout' => '',
'stderr' => '',
'endTime' => null,
'duration' => 0
]));
if ($isVcsEnabled) {
$this->runGitAction('processing', $github, $SHA, $owner, $repositoryName, $targetUrl, $project, $function, $deployment->getId(), $dbForProject);
}
} else {
$build = $dbForProject->createDocument('builds', new Document([
'$id' => $buildId,
'$permissions' => [],
'startTime' => $startTime,
2023-05-22 23:29:35 +12:00
'deploymentInternalId' => $deployment->getInternalId(),
'deploymentId' => $deployment->getId(),
'status' => 'processing',
2023-05-22 23:29:35 +12:00
'path' => '',
'runtime' => $function->getAttribute('runtime'),
'source' => $deployment->getAttribute('path'),
2023-05-22 23:29:35 +12:00
'sourceType' => $device,
'stdout' => '',
'stderr' => '',
'endTime' => null,
2023-05-22 23:29:35 +12:00
'duration' => 0,
'size' => 0
]));
}
2022-12-26 00:06:25 +13:00
$deployment->setAttribute('buildId', $build->getId());
$deployment->setAttribute('buildInternalId', $build->getInternalId());
2022-04-20 01:13:55 +12:00
$deployment = $dbForProject->updateDocument('deployments', $deployment->getId(), $deployment);
} else {
$build = $dbForProject->getDocument('builds', $buildId);
}
/** Request the executor to build the code... */
$build->setAttribute('status', 'building');
$build = $dbForProject->updateDocument('builds', $buildId, $build);
if ($isVcsEnabled) {
$this->runGitAction('building', $github, $SHA, $owner, $repositoryName, $targetUrl, $project, $function, $deployment->getId(), $dbForProject);
}
2022-04-19 04:21:45 +12:00
/** Trigger Webhook */
$deploymentModel = new Deployment();
2022-09-16 21:54:59 +12:00
2022-04-19 04:21:45 +12:00
$deploymentUpdate = new Event(Event::WEBHOOK_QUEUE_NAME, Event::WEBHOOK_CLASS_NAME);
$deploymentUpdate
->setProject($project)
->setEvent('functions.[functionId].deployments.[deploymentId].update')
->setParam('functionId', $function->getId())
->setParam('deploymentId', $deployment->getId())
->setPayload($deployment->getArrayCopy(array_keys($deploymentModel->getRules())))
->trigger();
/** Trigger Functions */
2022-11-16 07:13:17 +13:00
$pools = $register->get('pools');
$connection = $pools->get('queue')->pop();
2022-11-17 06:55:26 +13:00
2022-11-16 07:13:17 +13:00
$functions = new Func($connection->getResource());
$functions
2022-11-17 02:34:11 +13:00
->from($deploymentUpdate)
2022-04-19 04:21:45 +12:00
->trigger();
2022-11-16 07:13:17 +13:00
$connection->reclaim();
2022-04-19 04:21:45 +12:00
/** Trigger Realtime */
$allEvents = Event::generateEvents('functions.[functionId].deployments.[deploymentId].update', [
'functionId' => $function->getId(),
'deploymentId' => $deployment->getId()
]);
2022-05-10 00:36:29 +12:00
$target = Realtime::fromPayload(
// Pass first, most verbose event pattern
event: $allEvents[0],
payload: $build,
project: $project
);
2022-03-01 00:50:27 +13:00
Realtime::send(
projectId: 'console',
payload: $build->getArrayCopy(),
2022-04-19 04:21:45 +12:00
events: $allEvents,
2022-03-01 00:50:27 +13:00
channels: $target['channels'],
roles: $target['roles']
);
2022-02-14 10:26:36 +13:00
$source = $deployment->getAttribute('path');
2022-08-10 21:32:48 +12:00
if ($isVcsEnabled) {
2023-06-17 22:07:30 +12:00
\var_dump("Changing source");
$source = $path;
}
2022-11-16 23:33:11 +13:00
$vars = array_reduce($function->getAttribute('vars', []), function (array $carry, Document $var) {
2022-08-31 00:30:52 +12:00
$carry[$var->getAttribute('key')] = $var->getAttribute('value');
return $carry;
}, []);
2022-08-10 21:32:48 +12:00
2022-02-14 10:26:36 +13:00
try {
2023-03-29 02:21:42 +13:00
$command = '';
2023-05-12 08:52:48 +12:00
if (!empty($deployment->getAttribute('installCommand', ''))) {
2023-03-29 02:21:42 +13:00
$command .= $deployment->getAttribute('installCommand', '');
}
2023-05-12 08:52:48 +12:00
if (!empty($deployment->getAttribute('buildCommand', ''))) {
2023-03-29 02:21:42 +13:00
$separator = empty($command) ? '' : ' && ';
$command .= $separator . $deployment->getAttribute('buildCommand', '');
}
$command = \str_replace('"', '\\"', $command);
2023-06-13 18:26:36 +12:00
$response = null;
2023-06-17 22:07:30 +12:00
// TODO: Remove run() wrapper when switching to new utopia queue. That should be done on Swoole adapter in the libary
2023-06-14 20:57:30 +12:00
Co\run(function () use ($project, $deployment, &$response, $source, $function, $runtime, $vars, $command, &$build, $dbForProject, $allEvents) {
2023-06-13 18:26:36 +12:00
Co::join([
2023-06-14 20:57:30 +12:00
Co\go(function () use ($project, $deployment, &$response, &$build, $dbForProject, $allEvents) {
2023-06-13 18:26:36 +12:00
$this->executor->getLogs(
projectId: $project->getId(),
deploymentId: $deployment->getId(),
2023-06-14 20:57:30 +12:00
callback: function ($logs) use (&$response, &$build, $dbForProject, $allEvents, $project) {
if ($response === null) {
2023-06-13 18:26:36 +12:00
$build = $build->setAttribute('stdout', $build->getAttribute('stdout', '') . $logs);
$build = $dbForProject->updateDocument('builds', $build->getId(), $build);
2023-06-14 20:57:30 +12:00
/**
* Send realtime Event
*/
$target = Realtime::fromPayload(
// Pass first, most verbose event pattern
event: $allEvents[0],
payload: $build,
project: $project
);
Realtime::send(
projectId: 'console',
payload: $build->getArrayCopy(),
events: $allEvents,
channels: $target['channels'],
roles: $target['roles']
);
2023-06-13 18:26:36 +12:00
}
}
);
}),
Co\go(function () use (&$response, $project, $deployment, $source, $function, $runtime, $vars, $command) {
$response = $this->executor->createRuntime(
projectId: $project->getId(),
deploymentId: $deployment->getId(),
source: $source,
version: $function->getAttribute('version'),
image: $runtime['image'],
remove: true,
entrypoint: $deployment->getAttribute('entrypoint'),
destination: APP_STORAGE_BUILDS . "/app-{$project->getId()}",
variables: $vars,
command: 'tar -zxf /tmp/code.tar.gz -C /mnt/code && helpers/build.sh "' . $command . '"'
);
2023-06-13 23:13:02 +12:00
}),
2023-06-13 18:26:36 +12:00
]);
});
2023-03-15 21:20:25 +13:00
$endTime = DateTime::now();
2022-12-21 01:56:56 +13:00
2022-02-14 10:26:36 +13:00
/** Update the build document */
2022-12-18 20:35:16 +13:00
$build->setAttribute('startTime', DateTime::format((new \DateTime())->setTimestamp($response['startTime'])));
2023-03-15 21:20:25 +13:00
$build->setAttribute('endTime', $endTime);
2023-03-11 01:20:24 +13:00
$build->setAttribute('duration', \intval(\ceil($response['duration'])));
2023-02-03 08:21:00 +13:00
$build->setAttribute('status', 'ready');
2023-03-15 21:20:25 +13:00
$build->setAttribute('path', $response['path']);
2022-12-18 20:20:50 +13:00
$build->setAttribute('size', $response['size']);
2022-02-14 10:26:36 +13:00
$build->setAttribute('stderr', $response['stderr']);
$build->setAttribute('stdout', $response['stdout']);
2022-02-17 00:43:21 +13:00
if ($isVcsEnabled) {
$this->runGitAction('ready', $github, $SHA, $owner, $repositoryName, $targetUrl, $project, $function, $deployment->getId(), $dbForProject);
}
2022-10-19 14:43:40 +13:00
/* Also update the deployment buildTime */
2022-10-19 14:50:48 +13:00
$deployment->setAttribute('buildTime', $response['duration']);
2022-10-19 14:43:40 +13:00
2022-02-17 00:43:21 +13:00
Console::success("Build id: $buildId created");
/** Set auto deploy */
if ($deployment->getAttribute('activate') === true) {
2022-12-26 01:07:54 +13:00
$function->setAttribute('deploymentInternalId', $deployment->getInternalId());
2022-02-17 00:43:21 +13:00
$function->setAttribute('deployment', $deployment->getId());
2022-08-19 22:26:09 +12:00
$function = $dbForProject->updateDocument('functions', $function->getId(), $function);
2022-02-17 00:43:21 +13:00
}
/** Update function schedule */
2022-11-17 01:19:29 +13:00
$dbForConsole = $this->getConsoleDB();
2022-11-16 23:33:11 +13:00
$schedule = $dbForConsole->getDocument('schedules', $function->getAttribute('scheduleId'));
2023-03-19 22:43:57 +13:00
$schedule->setAttribute('resourceUpdatedAt', DateTime::now());
2022-11-16 23:33:11 +13:00
$schedule
->setAttribute('schedule', $function->getAttribute('schedule'))
->setAttribute('active', !empty($function->getAttribute('schedule')) && !empty($function->getAttribute('deployment')));
2022-11-16 23:54:21 +13:00
2022-11-16 23:33:11 +13:00
Authorization::skip(fn () => $dbForConsole->updateDocument('schedules', $schedule->getId(), $schedule));
2022-02-14 10:26:36 +13:00
} catch (\Throwable $th) {
2022-09-03 02:19:36 +12:00
$endTime = DateTime::now();
2023-03-29 02:21:42 +13:00
$durationEnd = \microtime(true);
2022-12-21 01:56:56 +13:00
$build->setAttribute('endTime', $endTime);
2023-03-29 02:21:42 +13:00
$build->setAttribute('duration', \intval(\ceil($durationEnd - $durationStart)));
2022-02-14 10:26:36 +13:00
$build->setAttribute('status', 'failed');
$build->setAttribute('stderr', $th->getMessage());
Console::error($th->getMessage());
2023-05-23 16:37:25 +12:00
if ($isVcsEnabled) {
$this->runGitAction('failed', $github, $SHA, $owner, $repositoryName, $targetUrl, $project, $function, $deployment->getId(), $dbForProject);
2023-05-23 16:37:25 +12:00
}
2022-02-17 00:43:21 +13:00
} finally {
$build = $dbForProject->updateDocument('builds', $buildId, $build);
2022-03-01 00:50:27 +13:00
2022-05-24 02:54:50 +12:00
/**
* Send realtime Event
2022-03-01 00:50:27 +13:00
*/
2022-05-10 00:36:29 +12:00
$target = Realtime::fromPayload(
// Pass first, most verbose event pattern
event: $allEvents[0],
payload: $build,
project: $project
);
2022-03-01 00:50:27 +13:00
Realtime::send(
projectId: 'console',
payload: $build->getArrayCopy(),
2022-04-19 04:21:45 +12:00
events: $allEvents,
2022-03-01 00:50:27 +13:00
channels: $target['channels'],
roles: $target['roles']
);
2022-06-29 18:30:24 +12:00
/** Update usage stats */
if (App::getEnv('_APP_USAGE_STATS', 'enabled') === 'enabled') {
$statsd = $register->get('statsd');
$usage = new Stats($statsd);
$usage
2022-11-23 04:50:41 +13:00
->setParam('projectInternalId', $project->getInternalId())
2022-06-29 18:30:24 +12:00
->setParam('projectId', $project->getId())
->setParam('functionId', $function->getId())
->setParam('builds.{scope}.compute', 1)
->setParam('buildStatus', $build->getAttribute('status', ''))
2022-08-11 18:49:20 +12:00
->setParam('buildTime', $build->getAttribute('duration'))
2022-06-29 18:30:24 +12:00
->setParam('networkRequestSize', 0)
->setParam('networkResponseSize', 0)
->submit();
}
2022-02-14 10:26:36 +13:00
}
2022-01-24 11:25:46 +13:00
}
protected function runGitAction(string $status, GitHub $github, string $SHA, string $owner, string $repositoryName, string $targetUrl, Document $project, Document $function, string $deploymentId, Database $dbForProject)
{
if ($function->getAttribute('vcsSilentMode', false) === true) {
return;
}
$deployment = $dbForProject->getDocument('deployments', $deploymentId);
$commentId = $deployment->getAttribute('vcsCommentId', '');
if (!empty($SHA)) {
$message = match ($status) {
'ready' => 'Build succeeded.',
'failed' => 'Build failed.',
'processing' => 'Building...',
default => $status
};
$state = match ($status) {
'ready' => 'success',
'failed' => 'failure',
'processing' => 'pending',
default => $status
};
$functionName = $function->getAttribute('name');
$projectName = $project->getAttribute('name');
$name = "{$functionName} ({$projectName})";
$github->updateCommitStatus($repositoryName, $SHA, $owner, $state, $message, $targetUrl, $name);
}
2023-06-17 22:07:30 +12:00
// TODO: Fix race condition
2023-06-13 18:26:36 +12:00
if (!empty($commentId)) {
$comment = new Comment();
$comment->parseComment($github->getComment($owner, $repositoryName, $commentId));
2023-06-17 22:07:30 +12:00
\sleep(5);
2023-06-13 18:26:36 +12:00
$comment->addBuild($project, $function, $status, $deployment->getId());
$github->updateComment($owner, $repositoryName, $commentId, $comment->generateComment());
}
}
2022-04-20 01:13:55 +12:00
public function shutdown(): void
{
}
2022-01-24 11:25:46 +13:00
}