raspisms/controllers/internals/Contact.php

172 lines
4.9 KiB
PHP
Raw Normal View History

2019-10-29 14:57:13 +01:00
<?php
/*
2019-11-10 17:48:54 +01:00
* This file is part of RaspiSMS.
*
2019-11-10 17:48:54 +01:00
* (c) Pierre-Lin Bonnemaison <plebwebsas@gmail.com>
*
2019-11-10 17:48:54 +01:00
* This source file is subject to the GPL-3.0 license that is bundled
* with this source code in the file LICENSE.
*/
2019-10-29 14:57:13 +01:00
namespace controllers\internals;
2019-10-29 18:36:25 +01:00
/**
* Classe des contactes.
2019-10-29 18:36:25 +01:00
*/
class Contact extends \descartes\InternalController
{
private $model_contact;
private $internal_event;
public function __construct(\PDO $bdd)
{
$this->model_contact = new \models\Contact($bdd);
$this->internal_event = new \controllers\internals\Event($bdd);
}
2019-10-29 18:36:25 +01:00
/**
2019-11-12 19:19:55 +01:00
* List contacts for a user
* @param int $id_user : user id
* @param mixed(int|bool) $nb_entry : Number of entry to return
* @param mixed(int|bool) $page : Pagination, will offset $nb_entry * $page results
* @return array
2019-10-29 18:36:25 +01:00
*/
2019-11-12 19:19:55 +01:00
public function list($id_user, $nb_entry = null, $page = null)
2019-10-29 18:36:25 +01:00
{
2019-11-12 19:19:55 +01:00
return $this->model_contact->list_for_user($id_user, $nb_entry, $nb_entry * $page);
}
/**
* Return a contact
* @param $id : contact id
* @return array
*/
public function get($id)
{
return $this->model_contact->get($id);
2019-10-29 18:36:25 +01:00
}
2019-10-29 14:57:13 +01:00
2019-10-29 18:36:25 +01:00
/**
* Cette fonction retourne une liste des contactes sous forme d'un tableau.
2019-11-12 19:19:55 +01:00
* @param int $id_user : user id
2019-10-29 14:57:13 +01:00
* @param array int $ids : Les ids des entrées à retourner
* @return array : La liste des contactes
2019-10-29 18:36:25 +01:00
*/
2019-11-12 19:19:55 +01:00
public function gets_for_user($id_user, $ids)
2019-10-29 18:36:25 +01:00
{
//Recupération des contactes
2019-11-12 19:19:55 +01:00
return $this->model_contact->gets_for_user($id_user, $ids);
2019-10-29 14:57:13 +01:00
}
2019-10-29 14:57:13 +01:00
/**
* Cette fonction retourne un contact par son numéro de tel.
*
2019-10-29 14:57:13 +01:00
* @param string $number : Le numéro du contact
*
2019-10-29 14:57:13 +01:00
* @return array : Le contact
2019-10-29 18:36:25 +01:00
*/
public function get_by_number($number)
{
//Recupération des contactes
return $this->model_contact->get_by_number($number);
2019-10-29 14:57:13 +01:00
}
2019-11-12 17:37:20 +01:00
/**
* Return a contact for a user by a number
* @param int $id_user : user id
* @param string $number : Contact number
* @return array
*/
public function get_by_number_and_user($number, $id_user)
{
//Recupération des contactes
return $this->model_contact->get_by_number_and_user($number, $id_user);
}
2019-10-29 14:57:13 +01:00
/**
* Cette fonction retourne un contact par son name.
*
2019-10-29 14:57:13 +01:00
* @param string $name : Le name du contact
*
2019-10-29 14:57:13 +01:00
* @return array : Le contact
2019-10-29 18:36:25 +01:00
*/
public function get_by_name($name)
{
//Recupération des contactes
return $this->model_contact->get_by_name($name);
2019-10-29 14:57:13 +01:00
}
/**
* Cette fonction permet de compter le nombre de contacts.
*
2019-10-29 14:57:13 +01:00
* @return int : Le nombre d'entrées dans la table
*/
2019-10-29 18:36:25 +01:00
public function count()
2019-10-29 14:57:13 +01:00
{
return $this->model_contact->count();
2019-10-29 14:57:13 +01:00
}
2019-10-29 18:36:25 +01:00
/**
* Cette fonction va supprimer un contact.
*
2019-10-29 18:36:25 +01:00
* @param array $id : L'id du contact à supprimer
*
2019-10-29 18:36:25 +01:00
* @return int : Le nombre de contact supprimées;
*/
public function delete($id)
2019-10-29 14:57:13 +01:00
{
2019-11-04 17:12:52 +01:00
return $this->model_contact->delete($id);
2019-10-29 18:36:25 +01:00
}
2019-10-29 14:57:13 +01:00
2019-10-29 18:36:25 +01:00
/**
* Cette fonction insert une nouvelle contacte.
*
2019-11-12 19:19:55 +01:00
* @param int $id_user : user id
* @param mixed $number
* @param mixed $name
*
2019-10-29 14:57:13 +01:00
* @return mixed bool|int : false si echec, sinon l'id de la nouvelle contacte insérée
2019-10-29 18:36:25 +01:00
*/
2019-11-12 19:19:55 +01:00
public function create($id_user, $number, $name)
2019-10-29 14:57:13 +01:00
{
$contact = [
2019-11-12 19:19:55 +01:00
'id_user' => $id_user,
2019-10-29 14:57:13 +01:00
'number' => $number,
'name' => $name,
];
$result = $this->model_contact->insert($contact);
if (!$result)
{
2019-10-29 14:57:13 +01:00
return $result;
}
2019-11-12 19:19:55 +01:00
$this->internal_event->create($id_user, 'CONTACT_ADD', 'Ajout contact : '.$name.' ('.\controllers\internals\Tool::phone_format($number).')');
2019-10-29 14:57:13 +01:00
return $result;
2019-10-29 18:36:25 +01:00
}
2019-10-29 14:57:13 +01:00
2019-10-29 18:36:25 +01:00
/**
* Cette fonction met à jour une série de contactes.
*
* @param mixed $id
2019-11-12 19:19:55 +01:00
* @param int $id_user : user id
* @param mixed $number
* @param mixed $name
*
2019-10-29 14:57:13 +01:00
* @return int : le nombre de ligne modifiées
2019-10-29 18:36:25 +01:00
*/
2019-11-12 19:19:55 +01:00
public function update($id, $id_user, $number, $name)
2019-10-29 14:57:13 +01:00
{
$contact = [
2019-11-12 19:19:55 +01:00
'id_user' => $id_user,
2019-10-29 14:57:13 +01:00
'number' => $number,
'name' => $name,
];
return $this->model_contact->update($id, $contact);
2019-10-29 14:57:13 +01:00
}
2019-10-29 18:36:25 +01:00
}