mirror of
https://github.com/RaspbianFrance/raspisms.git
synced 2025-04-23 01:46:27 +02:00
Add serverside list for contacts
This commit is contained in:
parent
3084288e5d
commit
8e43c53498
4 changed files with 104 additions and 3 deletions
|
@ -13,6 +13,65 @@ namespace models;
|
|||
|
||||
class Contact extends StandardModel
|
||||
{
|
||||
/**
|
||||
* Return a list of sended messages for a user.
|
||||
* Add a column contact_name and phone_name when available.
|
||||
*
|
||||
* @param int $id_user : user id
|
||||
* @param ?int $limit : Number of entry to return or null
|
||||
* @param ?int $offset : Number of entry to ignore or null
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function datatable_list_for_user(int $id_user, ?int $limit = null, ?int $offset = null, ?string $search = null, ?array $search_columns = [], ?string $order_column = null, bool $order_desc = false, ?bool $count = false)
|
||||
{
|
||||
$params = [
|
||||
'id_user' => $id_user,
|
||||
];
|
||||
|
||||
$query = $count ? 'SELECT COUNT(*) as nb' : 'SELECT * ';
|
||||
$query .= '
|
||||
FROM (
|
||||
SELECT * FROM contact
|
||||
WHERE id_user = :id_user
|
||||
) as results
|
||||
';
|
||||
|
||||
if ($search && $search_columns)
|
||||
{
|
||||
$like_search = '%' . str_replace(['\\', '%', '_'], ['\\\\', '\%', '\_'], $search) . '%';
|
||||
$params[':like_search'] = $like_search;
|
||||
|
||||
$query .= ' WHERE (0';
|
||||
|
||||
foreach ($search_columns as $column)
|
||||
{
|
||||
$query .= ' OR ' . $column . ' LIKE :like_search';
|
||||
}
|
||||
|
||||
$query .= ')';
|
||||
}
|
||||
|
||||
if ($order_column)
|
||||
{
|
||||
$query .= ' ORDER BY ' . $order_column . ($order_desc ? ' DESC' : ' ASC');
|
||||
}
|
||||
|
||||
if (null !== $limit && !$count)
|
||||
{
|
||||
$limit = (int) $limit;
|
||||
|
||||
$query .= ' LIMIT ' . $limit;
|
||||
if (null !== $offset)
|
||||
{
|
||||
$offset = (int) $offset;
|
||||
$query .= ' OFFSET ' . $offset;
|
||||
}
|
||||
}
|
||||
|
||||
return $count ? $this->_run_query($query, $params)[0]['nb'] ?? 0 : $this->_run_query($query, $params);
|
||||
}
|
||||
|
||||
/**
|
||||
* Return a contact by his number for a user.
|
||||
*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue