1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180: 181: 182: 183: 184: 185: 186: 187: 188: 189: 190: 191: 192: 193: 194: 195: 196: 197: 198: 199: 200: 201: 202: 203: 204: 205: 206: 207: 208: 209: 210: 211: 212: 213: 214: 215: 216: 217: 218: 219: 220: 221: 222: 223: 224: 225: 226: 227: 228: 229: 230: 231: 232: 233: 234: 235: 236: 237: 238: 239: 240: 241: 242: 243: 244: 245: 246: 247: 248: 249: 250: 251: 252: 253: 254: 255: 256: 257: 258: 259: 260: 261: 262: 263: 264: 265: 266: 267: 268: 269: 270: 271: 272: 273: 274: 275: 276: 277: 278: 279: 280: 281: 282: 283: 284: 285: 286: 287: 288: 289: 290: 291: 292: 293: 294: 295: 296: 297: 298: 299: 300: 301: 302: 303: 304: 305: 306: 307: 308: 309: 310: 311: 312: 313: 314: 315: 316: 317: 318: 319: 320: 321: 322: 323: 324: 325: 326: 327: 328: 329: 330: 331: 332: 333: 334: 335: 336: 337: 338: 339: 340: 341: 342: 343: 344: 345: 346: 347: 348: 349: 350: 351: 352: 353: 354: 355: 356: 357: 358: 359: 360: 361: 362: 363: 364: 365: 366: 367: 368: 369: 370: 371: 372: 373: 374: 375: 376: 377: 378: 379: 380: 381: 382: 383: 384: 385: 386: 387: 388: 389:
<?php declare(strict_types=1);
use Module\Support\Webapps\App\Type\Adhoc\Manifest;
use Module\Support\Webapps\App\Type\Unknown\Handler as Unknown;
use Module\Support\Webapps\App\Loader;
class Webapp_Module extends \Module\Support\Webapps
{
public function __construct()
{
parent::__construct();
$this->exportedFunctions['prune'] = PRIVILEGE_SITE;
}
public function install(string $hostname, string $path = '', array $opts = array()): bool
{
return error('Unsupported universal function %s', __METHOD__);
}
public function uninstall(string $hostname, string $path = '', $delete = 'all'): bool
{
return $this->redirect(__FUNCTION__, $hostname, $path, ...array_slice(func_get_args(), 2));
}
public function plugin_status(string $hostname, string $path = '', string $plugin = null)
{
return $this->redirect(__FUNCTION__, $hostname, $path, ...array_slice(func_get_args(), 2));
}
public function install_plugin(string $hostname, string $path, string $plugin, string $version = ''): bool
{
return $this->redirect(__FUNCTION__, $hostname, $path, ...array_slice(func_get_args(), 2));
}
public function uninstall_plugin(string $hostname, string $path, string $plugin, bool $force = false): bool
{
return $this->redirect(__FUNCTION__, $hostname, $path, ...array_slice(func_get_args(), 2));
}
public function disable_all_plugins(string $hostname, string $path = ''): bool
{
return $this->redirect(__FUNCTION__, $hostname, $path, ...array_slice(func_get_args(), 2));
}
public function db_config(string $hostname, string $path = '')
{
$oldex = \Error_Reporter::exception_upgrade(\Error_Reporter::E_FATAL);
try {
return $this->redirect(__FUNCTION__, $hostname, $path, ...array_slice(func_get_args(), 2));
} catch (\apnscpException $e) {
$credentials = $this->loadManifest($hostname, $path)['database'] ?? [];
return empty($credentials['db']) ? [] : $credentials;
} finally {
\Error_Reporter::exception_upgrade($oldex);
}
}
public function get_versions(): array
{
return [];
}
public function change_admin(string $hostname, string $path, array $fields): bool
{
return $this->redirect(__FUNCTION__, $hostname, $path, ...array_slice(func_get_args(), 2));
}
public function get_admin(string $hostname, string $path = ''): ?string
{
return $this->redirect(__FUNCTION__, $hostname, $path, ...array_slice(func_get_args(), 2));
}
public function get_version(string $hostname, string $path = ''): ?string
{
return $this->redirect(__FUNCTION__, $hostname, $path, ...array_slice(func_get_args(), 2));
}
public function update_all(string $hostname, string $path = '', string $version = null): bool
{
return $this->redirect(__FUNCTION__, $hostname, $path, ...array_slice(func_get_args(), 2));
}
public function update(string $hostname, string $path = '', string $version = null): bool
{
return $this->redirect(__FUNCTION__, $hostname, $path, ...array_slice(func_get_args(), 2));
}
public function update_plugins(string $hostname, string $path = '', array $plugins = array()): bool
{
return $this->redirect(__FUNCTION__, $hostname, $path, ...array_slice(func_get_args(), 2));
}
public function update_themes(string $hostname, string $path = '', array $themes = array()): bool
{
return $this->redirect(__FUNCTION__, $hostname, $path, ...array_slice(func_get_args(), 2));
}
public function fortify(string $hostname, string $path = '', string $mode = 'max', $args = []): bool
{
if (null === ($handler = $this->autoloadDriver($hostname, $path))) {
return parent::fortify($hostname, $path, $mode, $args);
}
return $this->{"${handler}_" . __FUNCTION__}($hostname, $path, $mode, $args);
}
public function unfortify(string $hostname, string $path = ''): bool
{
if (null === ($handler = $this->autoloadDriver($hostname, $path))) {
return parent::unfortify($hostname, $path);
}
return $this->{"${handler}_" . __FUNCTION__}($hostname, $path);
}
public function has_fortification(string $hostname, string $path = '', string $mode = null): bool
{
if (null === ($handler = $this->autoloadDriver($hostname, $path))) {
$modes = $this->loadManifest($hostname, $path)['fortification'] ?? [];
return ($mode === null) ? !empty($modes) : isset($modes[$mode]);
}
return $this->{"${handler}_" . __FUNCTION__}($hostname, $path, $mode);
}
public function fortification_modes(string $hostname, string $path = ''): array
{
if (null === ($handler = $this->autoloadDriver($hostname, $path))) {
return array_keys($this->loadManifest($hostname, $path)['fortification'] ?? []);
}
return (array)$this->{"${handler}_" . __FUNCTION__}($hostname, $path);
}
public function valid(string $hostname, string $path = ''): bool
{
return $this->discover($hostname, $path) !== null;
}
protected function redirect(string $method, string $hostname, string $path, ...$args)
{
if (!$handler = $this->autoloadDriver($hostname, $path)) {
fatal('Unknown or unsupported app located in %s/%s', $hostname, $path);
}
return $this->{"${handler}_${method}"}($hostname, $path, ...$args);
}
protected function autoloadDriver(string $hostname, string $path = '', bool $force = false): ?string
{
static $typeModule = [];
$app = Loader::fromHostname(null, $hostname, $path, $this->getAuthContext());
if (!($docroot = $app->getDocumentMetaPath())) {
return null;
}
if (!$force && ($type = $app->getClassMapping()) !== 'webapp') {
return $type;
}
foreach (Loader::getKnownApps() as $type) {
if (Loader::isApp($docroot, $type, $this->getAuthContext())) {
return Loader::fromHostname($type, $hostname, $path, $this->getAuthContext())->getClassMapping();
}
}
return null;
}
protected function autoloadType(string $hostname, string $path = '', bool $force = false): ?string
{
$app = Loader::fromHostname(null, $hostname, $path, $this->getAuthContext());
if (!($docroot = $app->getDocumentMetaPath())) {
return null;
}
if (!$force && ($type = $app->getModuleName()) !== 'webapp') {
return $type;
}
foreach (Loader::getKnownApps() as $type) {
if (Loader::isApp($docroot, $type, $this->getAuthContext())) {
return $type;
}
}
return null;
}
public function discover(string $hostname, string $path = ''): ?string
{
if (null !== ($type = $this->autoloadType($hostname, $path, true))) {
success("detected `%s'; updating records", $type);
}
$app = Loader::fromHostname($type, $hostname, $path, $this->getAuthContext());
$meta = [
'version' => $app->getVersion(true) ?: null,
'type' => $type,
'path' => $path
];
$app->initializeMeta($meta);
$app->getPane()->freshen(true);
return $type;
}
public function manifest_sign(string $hostname, string $path = ''): bool
{
return $this->loadManifest($hostname, $path)->sign();
}
public function manifest_signed(string $hostname, string $path = ''): bool
{
return $this->loadManifest($hostname, $path)->verifySignature();
}
public function manifest_create(string $hostname, string $path = ''): bool
{
return $this->loadManifest($hostname, $path)->create();
}
protected function loadManifest(string $hostname, string $path): Manifest
{
$app = Loader::fromHostname('adhoc', $hostname, $path, $this->getAuthContext());
return Manifest::instantiateContexted($this->getAuthContext(), [$app]);
}
public static function blacklisted(string $app): bool
{
if ($app === 'webapp') {
return false;
}
return parent::blacklisted($app);
}
public function reconfigure(string $hostname, string $path, $param, $value = null): bool
{
if (static::class !== self::class || !($module = $this->autoloadDriver($hostname, $path))) {
return parent::reconfigure($hostname, $path, $param, $value);
}
return $this->{$module . '_reconfigure'}($hostname, $path, $param, $value);
}
public function reconfigurables(string $hostname, string $path = ''): array
{
if (static::class !== self::class || !($module = $this->autoloadDriver($hostname, $path))) {
return parent::reconfigurables($hostname, $path);
}
return $this->{$module . '_reconfigurables'}($hostname, $path);
}
public function prune()
{
\Module\Support\Webapps\Finder::prune([$this->site]);
}
public function get_reconfigurable(string $hostname, string $path, $setting)
{
if (static::class !== self::class || !($module = $this->autoloadDriver($hostname, $path))) {
return parent::get_reconfigurable($hostname, $path, $setting);
}
return $this->{$module . '_get_reconfigurable'}($hostname, $path, $setting);
}
public function snapshot(string $hostname, string $path = '', string $comment = 'snapshot'): bool
{
return $this->redirect(__FUNCTION__, $hostname, $path, ...array_slice(func_get_args(), 2));
}
public function rollback(string $hostname, string $path = '', string $commit = null): bool
{
return $this->redirect(__FUNCTION__, $hostname, $path, ...array_slice(func_get_args(), 2));
}
public function _housekeeping()
{
\Module\Support\Webapps\PathManager::flush();
\Module\Support\Webapps\PathManager::applicationViewPaths();
}
}