raspisms/controllers/internals/Contact.php

162 lines
4.6 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
/**
* Cette fonction retourne une liste des contactes sous forme d'un tableau.
*
2019-10-29 14:57:13 +01:00
* @param mixed(int|bool) $nb_entry : Le nombre d'entrées à retourner par page
* @param mixed(int|bool) $page : Le numéro de page en cours
*
2019-10-29 14:57:13 +01:00
* @return array : La liste des contactes
2019-10-29 18:36:25 +01:00
*/
public function list($nb_entry = null, $page = null)
2019-10-29 18:36:25 +01:00
{
//Recupération des contactes
2019-11-04 17:12:52 +01:00
return $this->model_contact->list($nb_entry, $nb_entry * $page);
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-10-29 14:57:13 +01:00
* @param array int $ids : Les ids des entrées à retourner
*
2019-10-29 14:57:13 +01:00
* @return array : La liste des contactes
2019-10-29 18:36:25 +01:00
*/
2019-11-04 17:12:52 +01:00
public function gets($ids)
2019-10-29 18:36:25 +01:00
{
//Recupération des contactes
2019-11-04 17:12:52 +01:00
return $this->model_contact->gets($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-10-29 14:57:13 +01:00
* @param array $contact : Un tableau représentant la contacte à insérer
* @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
*/
public function create($number, $name)
2019-10-29 14:57:13 +01:00
{
$contact = [
'number' => $number,
'name' => $name,
];
$result = $this->model_contact->insert($contact);
if (!$result)
{
2019-10-29 14:57:13 +01:00
return $result;
}
2019-11-10 01:17:28 +01:00
$this->internal_event->create('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
* @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
*/
public function update($id, $number, $name)
2019-10-29 14:57:13 +01:00
{
$contact = [
'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
}