get()->getType()) { case DatabaseType::MYSQL: $dbPool->get()->con->beginTransaction(); $sth = $dbPool->get()->con->prepare( 'INSERT INTO `' . $dbPool->get()->prefix . 'module` (`module_id`, `module_theme`, `module_path`, `module_active`, `module_version`) VALUES (:internal, :theme, :path, :active, :version);' ); $sth->bindValue(':internal', $info->getInternalName(), \PDO::PARAM_INT); $sth->bindValue(':theme', 'Default', \PDO::PARAM_STR); $sth->bindValue(':path', $info->getDirectory(), \PDO::PARAM_STR); $sth->bindValue(':active', 0, \PDO::PARAM_INT); $sth->bindValue(':version', $info->getVersion(), \PDO::PARAM_STR); $sth->execute(); $sth = $dbPool->get()->con->prepare( 'INSERT INTO `' . $dbPool->get()->prefix . 'module_load` (`module_load_pid`, `module_load_type`, `module_load_from`, `module_load_for`, `module_load_file`) VALUES (:pid, :type, :from, :for, :file);' ); $load = $info->getLoad(); foreach ($load as $val) { foreach ($val['pid'] as $pid) { $sth->bindValue(':pid', sha1(str_replace('/', '', $pid)), \PDO::PARAM_STR); $sth->bindValue(':type', $val['type'], \PDO::PARAM_INT); $sth->bindValue(':from', $val['from'], \PDO::PARAM_STR); $sth->bindValue(':for', $val['for'], \PDO::PARAM_STR); $sth->bindValue(':file', $val['file'], \PDO::PARAM_STR); $sth->execute(); } } $dbPool->get()->con->commit(); break; default: throw new InvalidDatabaseTypeException($dbPool->get()->getType()); } } /** * Install module. * * @param string $modulePath Route Path * @param DatabasePool $dbPool Database instance * @param InfoManager $info Module info * * @return void * * @since 1.0.0 */ public static function install(string $modulePath, DatabasePool $dbPool, InfoManager $info) : void { self::registerInDatabase($dbPool, $info); self::initRoutes($modulePath, $info); self::activate($dbPool, $info); } /** * Activate after install. * * @param DatabasePool $dbPool Database instance * @param InfoManager $info Module info * * @return void * * @since 1.0.0 */ private static function activate(DatabasePool $dbPool, InfoManager $info) : void { /** @var ActivateAbstract $class */ $class = '\Modules\\' . $info->getDirectory() . '\Admin\Status'; $class::activate($dbPool, $info); } /** * Re-init module. * * @param string $modulePath Route Path * @param InfoManager $info Module info * * @return void * * @since 1.0.0 */ public static function reInit(string $modulePath, InfoManager $info) : void { self::initRoutes($modulePath, $info); } /** * Init routes. * * @param string $modulePath Path to the module * @param InfoManager $info Module info * * @return void * * @throws PermissionException * * @since 1.0.0 */ private static function initRoutes(string $modulePath, InfoManager $info) : void { // todo: maybe use static::__DIR__ ? $directories = new Directory($modulePath . '/Admin/Routes'); foreach ($directories as $key => $subdir) { if ($subdir instanceof Directory) { foreach ($subdir as $key2 => $file) { self::installRoutes(__DIR__ . '/../../' . $subdir->getName() . '/' . basename($file->getName(), '.php') . '/Routes.php', $file->getPath()); } } } } /** * Install routes. * * @param string $destRoutePath Destination route path * @param string $srcRoutePath Source route path * * @return void * * @throws PermissionException * * @since 1.0.0 */ private static function installRoutes(string $destRoutePath, string $srcRoutePath) : void { if (!file_exists($destRoutePath)) { file_put_contents($destRoutePath, '