1
0
Fork 0
mirror of synced 2024-06-01 10:29:48 +12:00
appwrite/app/init.php

451 lines
18 KiB
PHP
Raw Normal View History

2019-05-09 18:54:39 +12:00
<?php
2020-03-25 17:34:06 +13:00
/**
* Init
*
2020-09-25 10:32:39 +12:00
* Initializes both Appwrite API entry point, queue workers, and CLI tasks.
2020-12-27 00:56:29 +13:00
* Set configuration, framework resources & app constants
2020-03-25 17:34:06 +13:00
*
*/
2020-06-20 23:20:49 +12:00
if (\file_exists(__DIR__.'/../vendor/autoload.php')) {
2019-10-01 17:57:41 +13:00
require_once __DIR__.'/../vendor/autoload.php';
2019-08-01 08:35:42 +12:00
}
2019-05-09 18:54:39 +12:00
2020-07-01 06:08:02 +12:00
use Appwrite\Auth\Auth;
use Appwrite\Database\Database;
use Appwrite\Database\Adapter\MySQL as MySQLAdapter;
use Appwrite\Database\Adapter\Redis as RedisAdapter;
2020-06-30 16:34:13 +12:00
use Appwrite\Database\Document;
2020-07-01 06:08:02 +12:00
use Appwrite\Database\Validator\Authorization;
2020-06-28 07:42:38 +12:00
use Appwrite\Event\Event;
2020-07-02 10:34:05 +12:00
use Appwrite\Extend\PDO;
2020-05-13 10:00:00 +12:00
use Appwrite\OpenSSL\OpenSSL;
2020-07-02 10:34:05 +12:00
use Utopia\App;
2020-06-30 16:34:13 +12:00
use Utopia\View;
2020-07-02 10:34:05 +12:00
use Utopia\Config\Config;
use Utopia\Locale\Locale;
use Utopia\Registry\Registry;
use MaxMind\Db\Reader;
2020-07-02 10:34:05 +12:00
use PHPMailer\PHPMailer\PHPMailer;
use PDO as PDONative;
2019-05-09 18:54:39 +12:00
2019-10-01 17:57:41 +13:00
const APP_NAME = 'Appwrite';
const APP_DOMAIN = 'appwrite.io';
2020-03-02 11:10:52 +13:00
const APP_EMAIL_TEAM = 'team@localhost.test'; // Default email address
const APP_EMAIL_SECURITY = 'security@localhost.test'; // Default security email address
2020-03-02 06:05:51 +13:00
const APP_USERAGENT = APP_NAME.'-Server v%s. Please report abuse at %s';
2020-11-19 11:08:45 +13:00
const APP_MODE_DEFAULT = 'default';
2019-10-01 17:57:41 +13:00
const APP_MODE_ADMIN = 'admin';
2020-07-20 02:43:34 +12:00
const APP_PAGING_LIMIT = 12;
2020-12-26 01:55:25 +13:00
const APP_CACHE_BUSTER = 142;
2020-07-21 23:58:41 +12:00
const APP_VERSION_STABLE = '0.7.0';
2020-02-20 01:41:23 +13:00
const APP_STORAGE_UPLOADS = '/storage/uploads';
2020-07-15 09:20:46 +12:00
const APP_STORAGE_FUNCTIONS = '/storage/functions';
2020-02-20 01:41:23 +13:00
const APP_STORAGE_CACHE = '/storage/cache';
const APP_STORAGE_CERTIFICATES = '/storage/certificates';
2020-02-25 23:04:12 +13:00
const APP_STORAGE_CONFIG = '/storage/config';
2020-02-21 09:43:06 +13:00
const APP_SOCIAL_TWITTER = 'https://twitter.com/appwrite_io';
const APP_SOCIAL_TWITTER_HANDLE = 'appwrite_io';
const APP_SOCIAL_FACEBOOK = 'https://www.facebook.com/appwrite.io';
const APP_SOCIAL_LINKEDIN = 'https://www.linkedin.com/company/appwrite';
const APP_SOCIAL_INSTAGRAM = 'https://www.instagram.com/appwrite.io';
const APP_SOCIAL_GITHUB = 'https://github.com/appwrite';
2020-07-20 15:59:04 +12:00
const APP_SOCIAL_DISCORD = 'https://appwrite.io/discord';
2020-05-18 03:57:42 +12:00
const APP_SOCIAL_DEV = 'https://dev.to/appwrite';
2020-08-26 21:43:11 +12:00
const APP_SOCIAL_STACKSHARE = 'https://stackshare.io/appwrite';
2019-05-09 18:54:39 +12:00
2019-10-01 17:57:41 +13:00
$register = new Registry();
2020-06-19 12:04:09 +12:00
2020-06-29 05:31:21 +12:00
App::setMode(App::getEnv('_APP_ENV', App::MODE_TYPE_PRODUCTION));
2019-05-09 18:54:39 +12:00
2019-10-01 17:57:41 +13:00
/*
2019-05-09 18:54:39 +12:00
* ENV vars
*/
Config::load('events', __DIR__.'/config/events.php');
Config::load('providers', __DIR__.'/config/providers.php');
Config::load('platforms', __DIR__.'/config/platforms.php');
Config::load('collections', __DIR__.'/config/collections.php');
2020-07-15 04:13:18 +12:00
Config::load('environments', __DIR__.'/config/environments.php');
Config::load('roles', __DIR__.'/config/roles.php'); // User roles and scopes
Config::load('scopes', __DIR__.'/config/scopes.php'); // User roles and scopes
Config::load('services', __DIR__.'/config/services.php'); // List of services
2020-07-29 16:03:28 +12:00
Config::load('variables', __DIR__.'/config/variables.php'); // List of env variables
Config::load('avatar-browsers', __DIR__.'/config/avatars/browsers.php');
Config::load('avatar-credit-cards', __DIR__.'/config/avatars/credit-cards.php');
Config::load('avatar-flags', __DIR__.'/config/avatars/flags.php');
Config::load('locale-codes', __DIR__.'/config/locale/codes.php');
Config::load('locale-currencies', __DIR__.'/config/locale/currencies.php');
Config::load('locale-eu', __DIR__.'/config/locale/eu.php');
Config::load('locale-languages', __DIR__.'/config/locale/languages.php');
Config::load('locale-phones', __DIR__.'/config/locale/phones.php');
Config::load('storage-logos', __DIR__.'/config/storage/logos.php');
Config::load('storage-mimes', __DIR__.'/config/storage/mimes.php');
Config::load('storage-inputs', __DIR__.'/config/storage/inputs.php');
Config::load('storage-outputs', __DIR__.'/config/storage/outputs.php');
2020-03-29 01:42:16 +13:00
2020-06-29 05:31:21 +12:00
Resque::setBackend(App::getEnv('_APP_REDIS_HOST', '')
.':'.App::getEnv('_APP_REDIS_PORT', ''));
2019-05-09 18:54:39 +12:00
/**
* DB Filters
*/
Database::addFilter('json',
function($value) {
if(!is_array($value)) {
return $value;
}
return json_encode($value);
},
function($value) {
return json_decode($value, true);
}
);
Database::addFilter('encrypt',
2020-07-13 09:18:52 +12:00
function($value) {
$key = App::getEnv('_APP_OPENSSL_KEY_V1');
$iv = OpenSSL::randomPseudoBytes(OpenSSL::cipherIVLength(OpenSSL::CIPHER_AES_128_GCM));
$tag = null;
return json_encode([
'data' => OpenSSL::encrypt($value, OpenSSL::CIPHER_AES_128_GCM, $key, 0, $iv, $tag),
'method' => OpenSSL::CIPHER_AES_128_GCM,
'iv' => bin2hex($iv),
'tag' => bin2hex($tag),
'version' => '1',
]);
},
2020-07-13 09:18:52 +12:00
function($value) {
$value = json_decode($value, true);
2020-07-13 09:18:52 +12:00
$key = App::getEnv('_APP_OPENSSL_KEY_V'.$value['version']);
return OpenSSL::decrypt($value['data'], $value['method'], $key, 0, hex2bin($value['iv']), hex2bin($value['tag']));
}
);
2019-05-09 18:54:39 +12:00
2019-10-01 17:57:41 +13:00
/*
2019-05-09 18:54:39 +12:00
* Registry
*/
2020-06-29 08:45:36 +12:00
$register->set('db', function () { // Register DB connection
2020-06-29 05:31:21 +12:00
$dbHost = App::getEnv('_APP_DB_HOST', '');
$dbUser = App::getEnv('_APP_DB_USER', '');
$dbPass = App::getEnv('_APP_DB_PASS', '');
$dbScheme = App::getEnv('_APP_DB_SCHEMA', '');
2019-05-09 18:54:39 +12:00
2019-07-10 02:01:08 +12:00
$pdo = new PDO("mysql:host={$dbHost};dbname={$dbScheme};charset=utf8mb4", $dbUser, $dbPass, array(
2020-07-02 10:34:05 +12:00
PDONative::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8mb4',
2020-07-05 00:30:53 +12:00
PDONative::ATTR_TIMEOUT => 3, // Seconds
PDONative::ATTR_PERSISTENT => true
2019-05-09 18:54:39 +12:00
));
// Connection settings
2020-07-02 10:34:05 +12:00
$pdo->setAttribute(PDONative::ATTR_DEFAULT_FETCH_MODE, PDONative::FETCH_ASSOC); // Return arrays
$pdo->setAttribute(PDONative::ATTR_ERRMODE, PDONative::ERRMODE_EXCEPTION); // Handle all errors with exceptions
2019-05-09 18:54:39 +12:00
return $pdo;
});
2020-06-29 08:45:36 +12:00
$register->set('influxdb', function () { // Register DB connection
2020-06-29 05:31:21 +12:00
$host = App::getEnv('_APP_INFLUXDB_HOST', '');
$port = App::getEnv('_APP_INFLUXDB_PORT', '');
if (empty($host) || empty($port)) {
2019-10-01 17:57:41 +13:00
return;
}
2019-05-09 18:54:39 +12:00
$client = new InfluxDB\Client($host, $port, '', '', false, false, 5);
return $client;
});
2020-06-29 08:45:36 +12:00
$register->set('statsd', function () { // Register DB connection
2020-06-29 05:31:21 +12:00
$host = App::getEnv('_APP_STATSD_HOST', 'telegraf');
$port = App::getEnv('_APP_STATSD_PORT', 8125);
2019-05-09 18:54:39 +12:00
$connection = new \Domnikl\Statsd\Connection\UdpSocket($host, $port);
$statsd = new \Domnikl\Statsd\Client($connection);
return $statsd;
});
2020-06-29 08:45:36 +12:00
$register->set('cache', function () { // Register cache connection
2019-05-09 18:54:39 +12:00
$redis = new Redis();
2020-10-22 07:52:52 +13:00
$redis->pconnect(App::getEnv('_APP_REDIS_HOST', ''), App::getEnv('_APP_REDIS_PORT', ''));
$redis->setOption(Redis::OPT_READ_TIMEOUT, -1);
2019-10-01 17:57:41 +13:00
2019-05-09 18:54:39 +12:00
return $redis;
});
2020-06-29 08:45:36 +12:00
$register->set('smtp', function () {
2019-08-09 09:49:46 +12:00
$mail = new PHPMailer(true);
2019-05-09 18:54:39 +12:00
2019-08-09 09:49:46 +12:00
$mail->isSMTP();
2019-05-09 18:54:39 +12:00
2020-06-29 05:31:21 +12:00
$username = App::getEnv('_APP_SMTP_USERNAME', null);
$password = App::getEnv('_APP_SMTP_PASSWORD', null);
2019-08-09 09:49:46 +12:00
2019-10-01 17:57:41 +13:00
$mail->XMailer = 'Appwrite Mailer';
2020-06-29 05:31:21 +12:00
$mail->Host = App::getEnv('_APP_SMTP_HOST', 'smtp');
$mail->Port = App::getEnv('_APP_SMTP_PORT', 25);
2019-10-01 17:57:41 +13:00
$mail->SMTPAuth = (!empty($username) && !empty($password));
$mail->Username = $username;
$mail->Password = $password;
2020-06-29 05:31:21 +12:00
$mail->SMTPSecure = App::getEnv('_APP_SMTP_SECURE', false);
2020-01-12 02:58:02 +13:00
$mail->SMTPAutoTLS = false;
2020-06-13 04:49:56 +12:00
$mail->CharSet = 'UTF-8';
2019-08-09 09:49:46 +12:00
2020-06-29 05:31:21 +12:00
$from = \urldecode(App::getEnv('_APP_SYSTEM_EMAIL_NAME', APP_NAME.' Server'));
$email = App::getEnv('_APP_SYSTEM_EMAIL_ADDRESS', APP_EMAIL_TEAM);
$mail->setFrom($email, $from);
$mail->addReplyTo($email, $from);
2019-05-09 18:54:39 +12:00
2019-08-09 09:49:46 +12:00
$mail->isHTML(true);
2019-09-28 13:48:50 +12:00
2019-08-09 09:49:46 +12:00
return $mail;
2019-05-09 18:54:39 +12:00
});
2020-10-30 03:08:09 +13:00
$register->set('geodb', function () {
return new Reader(__DIR__.'/db/DBIP/dbip-country-lite-2020-01.mmdb');
});
2019-05-09 18:54:39 +12:00
2019-10-01 17:57:41 +13:00
/*
2019-05-09 18:54:39 +12:00
* Localization
*/
Locale::$exceptions = false;
Locale::setLanguage('af', include __DIR__.'/config/locale/translations/af.php');
Locale::setLanguage('ar', include __DIR__.'/config/locale/translations/ar.php');
Locale::setLanguage('ba', include __DIR__.'/config/locale/translations/ba.php');
2020-10-07 02:02:15 +13:00
Locale::setLanguage('be', include __DIR__.'/config/locale/translations/be.php');
2020-10-07 12:58:14 +13:00
Locale::setLanguage('bg', include __DIR__.'/config/locale/translations/bg.php');
Locale::setLanguage('bn', include __DIR__.'/config/locale/translations/bn.php');
Locale::setLanguage('cat', include __DIR__.'/config/locale/translations/cat.php');
Locale::setLanguage('cz', include __DIR__.'/config/locale/translations/cz.php');
Locale::setLanguage('de', include __DIR__.'/config/locale/translations/de.php');
Locale::setLanguage('en', include __DIR__.'/config/locale/translations/en.php');
Locale::setLanguage('es', include __DIR__.'/config/locale/translations/es.php');
2020-10-23 11:01:08 +13:00
Locale::setLanguage('fa', include __DIR__.'/config/locale/translations/fa.php');
Locale::setLanguage('fi', include __DIR__.'/config/locale/translations/fi.php');
Locale::setLanguage('fo', include __DIR__.'/config/locale/translations/fo.php');
Locale::setLanguage('fr', include __DIR__.'/config/locale/translations/fr.php');
Locale::setLanguage('gr', include __DIR__.'/config/locale/translations/gr.php');
2020-10-02 22:18:30 +13:00
Locale::setLanguage('gu', include __DIR__.'/config/locale/translations/gu.php');
Locale::setLanguage('he', include __DIR__.'/config/locale/translations/he.php');
Locale::setLanguage('hi', include __DIR__.'/config/locale/translations/hi.php');
Locale::setLanguage('hu', include __DIR__.'/config/locale/translations/hu.php');
Locale::setLanguage('hy', include __DIR__.'/config/locale/translations/hy.php');
Locale::setLanguage('id', include __DIR__.'/config/locale/translations/id.php');
Locale::setLanguage('is', include __DIR__.'/config/locale/translations/is.php');
Locale::setLanguage('it', include __DIR__.'/config/locale/translations/it.php');
Locale::setLanguage('ja', include __DIR__.'/config/locale/translations/ja.php');
Locale::setLanguage('jv', include __DIR__.'/config/locale/translations/jv.php');
2020-10-06 00:02:08 +13:00
Locale::setLanguage('ka', include __DIR__.'/config/locale/translations/ka.php');
Locale::setLanguage('km', include __DIR__.'/config/locale/translations/km.php');
Locale::setLanguage('ko', include __DIR__.'/config/locale/translations/ko.php');
Locale::setLanguage('lt', include __DIR__.'/config/locale/translations/lt.php');
Locale::setLanguage('ml', include __DIR__.'/config/locale/translations/ml.php');
2020-10-02 22:18:30 +13:00
Locale::setLanguage('mr', include __DIR__.'/config/locale/translations/mr.php');
Locale::setLanguage('ms', include __DIR__.'/config/locale/translations/ms.php');
Locale::setLanguage('nl', include __DIR__.'/config/locale/translations/nl.php');
Locale::setLanguage('no', include __DIR__.'/config/locale/translations/no.php');
2020-10-03 01:16:44 +13:00
Locale::setLanguage('np', include __DIR__.'/config/locale/translations/np.php');
2020-10-13 06:03:47 +13:00
Locale::setLanguage('od', include __DIR__.'/config/locale/translations/od.php');
Locale::setLanguage('ph', include __DIR__.'/config/locale/translations/ph.php');
Locale::setLanguage('pl', include __DIR__.'/config/locale/translations/pl.php');
Locale::setLanguage('pt-br', include __DIR__.'/config/locale/translations/pt-br.php');
Locale::setLanguage('pt-pt', include __DIR__.'/config/locale/translations/pt-pt.php');
Locale::setLanguage('pa', include __DIR__.'/config/locale/translations/pa.php');
Locale::setLanguage('ro', include __DIR__.'/config/locale/translations/ro.php');
Locale::setLanguage('ru', include __DIR__ . '/config/locale/translations/ru.php');
Locale::setLanguage('si', include __DIR__ . '/config/locale/translations/si.php');
Locale::setLanguage('sl', include __DIR__ . '/config/locale/translations/sl.php');
Locale::setLanguage('sq', include __DIR__ . '/config/locale/translations/sq.php');
Locale::setLanguage('sv', include __DIR__ . '/config/locale/translations/sv.php');
Locale::setLanguage('ta', include __DIR__ . '/config/locale/translations/ta.php');
Locale::setLanguage('th', include __DIR__.'/config/locale/translations/th.php');
Locale::setLanguage('tr', include __DIR__.'/config/locale/translations/tr.php');
Locale::setLanguage('ua', include __DIR__.'/config/locale/translations/ua.php');
2020-10-13 19:53:18 +13:00
Locale::setLanguage('ur', include __DIR__.'/config/locale/translations/ur.php');
Locale::setLanguage('vi', include __DIR__.'/config/locale/translations/vi.php');
Locale::setLanguage('zh-cn', include __DIR__.'/config/locale/translations/zh-cn.php');
Locale::setLanguage('zh-tw', include __DIR__.'/config/locale/translations/zh-tw.php');
2019-10-09 17:33:33 +13:00
2020-06-20 23:20:49 +12:00
\stream_context_set_default([ // Set global user agent and http settings
2019-05-09 18:54:39 +12:00
'http' => [
'method' => 'GET',
2020-06-20 23:20:49 +12:00
'user_agent' => \sprintf(APP_USERAGENT,
2020-06-30 23:09:28 +12:00
App::getEnv('_APP_VERSION', 'UNKNOWN'),
2020-06-29 05:31:21 +12:00
App::getEnv('_APP_SYSTEM_SECURITY_EMAIL_ADDRESS', APP_EMAIL_SECURITY)),
2019-10-01 17:57:41 +13:00
'timeout' => 2,
],
2019-05-09 18:54:39 +12:00
]);
2020-06-30 16:34:13 +12:00
// Runtime Execution
App::setResource('register', function() use ($register) {
return $register;
});
App::setResource('layout', function($locale) {
$layout = new View(__DIR__.'/views/layouts/default.phtml');
$layout->setParam('locale', $locale);
return $layout;
}, ['locale']);
App::setResource('locale', function() {
return new Locale('en');
});
// Queues
2020-12-07 11:14:57 +13:00
App::setResource('events', function($register) {
return new Event('', '');
2020-06-30 16:34:13 +12:00
}, ['register']);
2020-07-06 02:19:59 +12:00
App::setResource('audits', function($register) {
return new Event('v1-audits', 'AuditsV1');
2020-06-30 16:34:13 +12:00
}, ['register']);
App::setResource('usage', function($register) {
return new Event('v1-usage', 'UsageV1');
2020-06-30 16:34:13 +12:00
}, ['register']);
2020-07-06 02:19:59 +12:00
App::setResource('mails', function($register) {
return new Event('v1-mails', 'MailsV1');
2020-06-30 16:34:13 +12:00
}, ['register']);
App::setResource('deletes', function($register) {
return new Event('v1-deletes', 'DeletesV1');
2020-06-30 16:34:13 +12:00
}, ['register']);
// Test Mock
2020-07-01 06:08:02 +12:00
App::setResource('clients', function($console, $project) {
/**
* Get All verified client URLs for both console and current projects
* + Filter for duplicated entries
*/
$clientsConsole = \array_map(function ($node) {
return $node['hostname'];
}, \array_filter($console->getAttribute('platforms', []), function ($node) {
if (isset($node['type']) && $node['type'] === 'web' && isset($node['hostname']) && !empty($node['hostname'])) {
return true;
}
return false;
}));
$clients = \array_unique(\array_merge($clientsConsole, \array_map(function ($node) {
return $node['hostname'];
}, \array_filter($project->getAttribute('platforms', []), function ($node) {
if (isset($node['type']) && $node['type'] === 'web' && isset($node['hostname']) && !empty($node['hostname'])) {
return true;
}
return false;
}))));
return $clients;
}, ['console', 'project']);
App::setResource('user', function($mode, $project, $console, $request, $response, $projectDB, $consoleDB) {
/** @var Utopia\Swoole\Request $request */
2020-10-30 02:50:49 +13:00
/** @var Appwrite\Utopia\Response $response */
2020-07-01 20:55:14 +12:00
/** @var Appwrite\Database\Document $project */
/** @var Appwrite\Database\Database $consoleDB */
/** @var Appwrite\Database\Database $projectDB */
/** @var bool $mode */
2020-07-01 06:08:02 +12:00
Authorization::setDefaultStatus(true);
2020-07-01 06:08:02 +12:00
Auth::setCookieName('a_session_'.$project->getId());
if (APP_MODE_ADMIN === $mode) {
Auth::setCookieName('a_session_'.$console->getId());
}
$session = Auth::decodeSession(
$request->getCookie(Auth::$cookieName, // Get sessions
$request->getCookie(Auth::$cookieName.'_legacy', '')));// Get fallback session from old clients (no SameSite support)
2020-07-01 06:08:02 +12:00
// Get fallback session from clients who block 3rd-party cookies
$response->addHeader('X-Debug-Fallback', 'false');
if(empty($session['id']) && empty($session['secret'])) {
$response->addHeader('X-Debug-Fallback', 'true');
2020-07-05 10:22:22 +12:00
$fallback = $request->getHeader('x-fallback-cookies', '');
2020-07-01 06:08:02 +12:00
$fallback = \json_decode($fallback, true);
$session = Auth::decodeSession(((isset($fallback[Auth::$cookieName])) ? $fallback[Auth::$cookieName] : ''));
}
2020-07-01 06:08:02 +12:00
Auth::$unique = $session['id'];
Auth::$secret = $session['secret'];
if (APP_MODE_ADMIN !== $mode) {
$user = $projectDB->getDocument(Auth::$unique);
}
else {
$user = $consoleDB->getDocument(Auth::$unique);
$user
->setAttribute('$id', 'admin-'.$user->getAttribute('$id'))
;
}
2020-06-30 16:34:13 +12:00
2020-07-01 06:08:02 +12:00
if (empty($user->getId()) // Check a document has been found in the DB
|| Database::SYSTEM_COLLECTION_USERS !== $user->getCollection() // Validate returned document is really a user document
|| !Auth::tokenVerify($user->getAttribute('tokens', []), Auth::TOKEN_TYPE_LOGIN, Auth::$secret)) { // Validate user has valid login token
$user = new Document(['$id' => '', '$collection' => Database::SYSTEM_COLLECTION_USERS]);
}
if (APP_MODE_ADMIN === $mode) {
if (!empty($user->search('teamId', $project->getAttribute('teamId'), $user->getAttribute('memberships')))) {
Authorization::setDefaultStatus(false); // Cancel security segmentation for admin users.
2020-07-01 06:08:02 +12:00
} else {
$user = new Document(['$id' => '', '$collection' => Database::SYSTEM_COLLECTION_USERS]);
}
}
return $user;
}, ['mode', 'project', 'console', 'request', 'response', 'projectDB', 'consoleDB']);
App::setResource('project', function($consoleDB, $request) {
/** @var Utopia\Swoole\Request $request */
2020-07-01 20:55:14 +12:00
/** @var Appwrite\Database\Database $consoleDB */
2020-07-01 06:08:02 +12:00
Authorization::disable();
2020-06-30 16:34:13 +12:00
2020-07-01 06:08:02 +12:00
$project = $consoleDB->getDocument($request->getParam('project',
2020-07-05 10:22:22 +12:00
$request->getHeader('x-appwrite-project', '')));
2020-06-30 16:34:13 +12:00
Authorization::reset();
2020-07-01 06:08:02 +12:00
return $project;
}, ['consoleDB', 'request']);
App::setResource('console', function($consoleDB) {
return $consoleDB->getDocument('console');
}, ['consoleDB']);
2020-06-30 16:34:13 +12:00
App::setResource('consoleDB', function($register) {
$consoleDB = new Database();
$consoleDB->setAdapter(new RedisAdapter(new MySQLAdapter($register), $register));
$consoleDB->setNamespace('app_console'); // Should be replaced with param if we want to have parent projects
$consoleDB->setMocks(Config::getParam('collections', []));
2020-07-01 06:08:02 +12:00
return $consoleDB;
2020-06-30 16:34:13 +12:00
}, ['register']);
2020-07-01 06:08:02 +12:00
App::setResource('projectDB', function($register, $project) {
$projectDB = new Database();
$projectDB->setAdapter(new RedisAdapter(new MySQLAdapter($register), $register));
$projectDB->setNamespace('app_'.$project->getId());
$projectDB->setMocks(Config::getParam('collections', []));
return $projectDB;
}, ['register', 'project']);
2020-06-27 00:27:58 +12:00
2020-07-01 06:08:02 +12:00
App::setResource('mode', function($request) {
/** @var Utopia\Swoole\Request $request */
2020-11-19 11:08:45 +13:00
return $request->getParam('mode', $request->getHeader('x-appwrite-mode', APP_MODE_DEFAULT));
2020-07-01 06:08:02 +12:00
}, ['request']);
2020-07-03 08:24:14 +12:00
2020-10-30 04:44:21 +13:00
App::setResource('geodb', function($register) {
2020-10-30 04:54:36 +13:00
/** @var Utopia\Registry\Registry $register */
2020-10-30 03:08:09 +13:00
return $register->get('geodb');
2020-10-30 04:54:36 +13:00
}, ['register']);