Chunk the array of phone numbers
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
56b08c04c7
commit
2e08c8b5a1
|
@ -229,19 +229,23 @@ class AccountManager implements IAccountManager {
|
||||||
}
|
}
|
||||||
|
|
||||||
public function searchUsers(string $property, array $values): array {
|
public function searchUsers(string $property, array $values): array {
|
||||||
|
$chunks = array_chunk($values, 500);
|
||||||
$query = $this->connection->getQueryBuilder();
|
$query = $this->connection->getQueryBuilder();
|
||||||
$query->select('*')
|
$query->select('*')
|
||||||
->from($this->dataTable)
|
->from($this->dataTable)
|
||||||
->where($query->expr()->eq('name', $query->createNamedParameter($property)))
|
->where($query->expr()->eq('name', $query->createNamedParameter($property)))
|
||||||
->andWhere($query->expr()->in('value', $query->createNamedParameter($values, IQueryBuilder::PARAM_STR_ARRAY)));
|
->andWhere($query->expr()->in('value', $query->createParameter('values')));
|
||||||
|
|
||||||
$result = $query->execute();
|
|
||||||
$matches = [];
|
$matches = [];
|
||||||
|
foreach ($chunks as $chunk) {
|
||||||
|
$query->setParameter('values', $chunk, IQueryBuilder::PARAM_STR_ARRAY);
|
||||||
|
$result = $query->execute();
|
||||||
|
|
||||||
while ($row = $result->fetch()) {
|
while ($row = $result->fetch()) {
|
||||||
$matches[$row['value']] = $row['uid'];
|
$matches[$row['value']] = $row['uid'];
|
||||||
|
}
|
||||||
|
$result->closeCursor();
|
||||||
}
|
}
|
||||||
$result->closeCursor();
|
|
||||||
|
|
||||||
return $matches;
|
return $matches;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue