1
0
Fork 0
mirror of synced 2024-06-03 11:24:48 +12:00
appwrite/app/workers/functions.php

67 lines
1.4 KiB
PHP
Raw Normal View History

2020-05-05 01:34:31 +12:00
<?php
2020-05-10 10:12:00 +12:00
use Utopia\CLI\Console;
2020-05-05 01:34:31 +12:00
use Utopia\Config\Config;
use Appwrite\Database\Database;
use Appwrite\Database\Validator\Authorization;
2020-05-09 18:26:18 +12:00
2020-05-10 04:39:50 +12:00
require_once __DIR__.'/../init.php';
cli_set_process_title('Functions V1 Worker');
Console::success(APP_NAME.' functions worker v1 has started');
2020-05-10 10:12:00 +12:00
$environments = Config::getParam('environments');
2020-05-09 18:26:18 +12:00
2020-05-10 10:12:00 +12:00
foreach($environments as $environment) {
2020-05-09 18:26:18 +12:00
$stdout = '';
$stderr = '';
2020-05-10 22:30:07 +12:00
Console::info('Warming up '.$environment['name'].' environment');
2020-05-10 10:12:00 +12:00
Console::execute('docker pull '.$environment['image'], null, $stdout, $stderr);
2020-05-09 18:26:18 +12:00
2020-05-10 10:12:00 +12:00
if(!empty($stdout)) {
Console::success($stdout);
}
if(!empty($stderr)) {
Console::error($stderr);
}
2020-05-09 18:26:18 +12:00
}
2020-05-05 01:34:31 +12:00
class FunctionsV1
{
public $args = [];
public function setUp()
{
}
public function perform()
{
2020-05-10 22:30:07 +12:00
global $environments;
/**
* 1. Get event args
* 2. Unpackage code in an isolated folder
* 3. Execute in container with timeout
* 4. Update execution status
* 5. Update execution stdout & stderr
* 6. Trigger audit log
* 7. Trigger usage log
*/
// docker run --rm -v $(pwd):/app -w /app php:7.4-cli php tests/languages/php/test.php
2020-05-05 01:34:31 +12:00
}
public function tearDown()
{
2020-05-10 22:30:07 +12:00
$stdout = '';
$stderr = '';
$image = '';
Console::execute('docker pull '.$image, null, $stdout, $stderr);
2020-05-05 01:34:31 +12:00
}
}