. // }}} /** * Doctrine entity manager static wrapper * * @package GNUsocial * @category DB * * @author Hugo Sales * @copyright 2020-2021 Free Software Foundation, Inc http://www.fsf.org * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later */ namespace App\Core\DB; use App\Util\Exception\DuplicateFoundException; use App\Util\Exception\NotFoundException; use Doctrine\Common\Collections\Criteria; use Doctrine\Common\Collections\Expr\Expression; use Doctrine\Common\Collections\ExpressionBuilder; use Doctrine\ORM\EntityManagerInterface; use Doctrine\ORM\Query; use Doctrine\ORM\Query\ResultSetMappingBuilder; use Functional as F; /** * @mixin EntityManagerInterface */ class DB { private static ?EntityManagerInterface $em; public static function setManager($m): void { self::$em = $m; } /** * Table name to class map, used to allow specifying table names instead of classes in doctrine calls */ private static array $table_map = []; private static array $class_pk = []; public static function initTableMap() { $all = self::$em->getMetadataFactory()->getAllMetadata(); foreach ($all as $meta) { self::$table_map[$meta->getTableName()] = $meta->getMetadataValue('name'); self::$class_pk[$meta->getMetadataValue('name')] = $meta->getIdentifier(); } } public static function getTableForClass(string $class) { return array_search($class, self::$table_map); } public static function getPKForClass(string $class) { return self::$class_pk[$class]; } /** * Perform a Doctrine Query Language query */ public static function dql(string $query, array $params = []) { $query = preg_replace(F\map(self::$table_map, function ($_, $s) { return "/\\b{$s}\\b/"; }), self::$table_map, $query); $q = new Query(self::$em); $q->setDQL($query); foreach ($params as $k => $v) { $q->setParameter($k, $v); } return $q->getResult(); } /** * Perform a native, parameterized, SQL query. $entities is a map * from table aliases to class names. Replaces '{select}' in * $query with the appropriate select list */ public static function sql(string $query, array $entities, array $params = []) { $rsm = new ResultSetMappingBuilder(self::$em); foreach ($entities as $alias => $entity) { $rsm->addRootEntityFromClassMetadata($entity, $alias); } $query = preg_replace('/{select}/', $rsm->generateSelectClause(), $query); $q = self::$em->createNativeQuery($query, $rsm); foreach ($params as $k => $v) { $q->setParameter($k, $v); } return $q->getResult(); } /** * A list of possible operations needed in self::buildExpression */ private static array $find_by_ops = [ 'or', 'and', 'eq', 'neq', 'lt', 'lte', 'gt', 'gte', 'is_null', 'in', 'not_in', 'contains', 'member_of', 'starts_with', 'ends_with', ]; /** * Build a Doctrine Criteria expression from the given $criteria. * * @see self::findBy for the syntax */ private static function buildExpression(ExpressionBuilder $eb, array $criteria): array { $expressions = []; foreach ($criteria as $op => $exp) { if ($op == 'or' || $op == 'and') { $method = "{$op}X"; $expr = self::buildExpression($eb, $exp); if (is_array($expr)) { $expressions[] = $eb->{$method}(...$expr); } else { $expressions[] = $eb->{$method}($expr); } } elseif ($op == 'is_null') { $expressions[] = $eb->isNull($exp); } else { if (in_array($op, self::$find_by_ops)) { foreach ($exp as $field => $value) { $expressions[] = $eb->{$op}($field, $value); } } else { $expressions[] = $eb->eq($op, $exp); } } } return $expressions; } /** * Query $table according to $criteria. If $criteria's keys are * one of self::$find_by_ops (and, or, etc), build a subexpression * with that operator and recurse. Examples of $criteria are * `['and' => ['lt' => ['foo' => 4], 'gte' => ['bar' => 2]]]` or * `['in' => ['foo', 'bar']]` */ public static function findBy(string $table, array $criteria, ?array $orderBy = null, ?int $limit = null, ?int $offset = null): array { $criteria = array_change_key_case($criteria, CASE_LOWER); $ops = array_intersect(array_keys($criteria), self::$find_by_ops); $repo = self::getRepository($table); if (empty($ops)) { return $repo->findBy($criteria, $orderBy, $limit, $offset); } else { $eb = Criteria::expr(); $criteria = new Criteria($eb->andX(...self::buildExpression($eb, $criteria)), $orderBy, $offset, $limit); return $repo->matching($criteria)->toArray(); // Always work with array or it becomes really complicated } } /** * Return the first element of the result of @see self::findBy */ public static function findOneBy(string $table, array $criteria, ?array $orderBy = null, ?int $offset = null) { $res = self::findBy($table, $criteria, $orderBy, 2, $offset); // Use limit 2 to check for consistency switch (count($res)) { case 0: throw new NotFoundException("No value in table {$table} matches the requested criteria"); case 1: return $res[0]; default: throw new DuplicateFoundException("Multiple values in table {$table} match the requested criteria"); } } public static function count(string $table, array $criteria) { $repo = self::getRepository($table); return $repo->count($criteria); } /** * Insert all given objects with the generated ID of the first one */ public static function persistWithSameId(object $owner, object | array $others, ?callable $extra = null) { $conn = self::getConnection(); $metadata = self::getClassMetadata(get_class($owner)); $seqName = $metadata->getSequenceName($conn->getDatabasePlatform()); self::persist($owner); $id = $conn->lastInsertId($seqName); F\map(is_array($others) ? $others : [$others], function ($o) use ($id) { $o->setId($id); self::persist($o); }); if (!is_null($extra)) { $extra($id); } self::flush(); return $id; } /** * Intercept static function calls to allow refering to entities * without writing the namespace (which is deduced from the call * context) */ public static function __callStatic(string $name, array $args) { if (in_array($name, ['find', 'getReference', 'getPartialReference', 'getRepository']) && !str_contains($args[0], '\\')) { $args[0] = self::$table_map[$args[0]]; } return self::$em->{$name}(...$args); } }