raspisms/controllers/internals/Contact.php

97 lines
2.7 KiB
PHP
Executable File

<?php
/*
* This file is part of RaspiSMS.
*
* (c) Pierre-Lin Bonnemaison <plebwebsas@gmail.com>
*
* This source file is subject to the GPL-3.0 license that is bundled
* with this source code in the file LICENSE.
*/
namespace controllers\internals;
class Contact extends StandardController
{
protected $model = false;
/**
* Get the model for the Controller
* @return \descartes\Model
*/
protected function get_model () : \descartes\Model
{
$this->model = $this->model ?? new \models\Contact($this->$bdd);
return $this->model;
}
/**
* 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(int $id_user, string $number,)
{
return $this->model_contact->get_by_number_and_user($id_user, $number);
}
/**
* Return a contact by his name for a user
* @param int $id_user : User id
* @param string $name : Contact name
* @return array
*/
public function get_by_name_and_user(int $id_user, string $name)
{
return $this->model_contact->get_by_name_and_user($id_user, $name);
}
/**
* Create a new command
* @param int $id_user : User id
* @param string $number : Contact number
* @param string $name : Contact name
* @return mixed bool|int : False if cannot create contact, id of the new contact else
*/
public function create($id_user, $number, $name)
{
$contact = [
'id_user' => $id_user,
'number' => $number,
'name' => $name,
];
$result = $this->model_contact->insert($contact);
if (!$result)
{
return $result;
}
$this->internal_event->create($id_user, 'CONTACT_ADD', 'Ajout contact : '.$name.' ('.\controllers\internals\Tool::phone_format($number).')');
return $result;
}
/**
* Update a contact
* @param int $id_user : User id
* @param int $id : Command id
* @param string $number : Contact number
* @param string $name : Contact name
* @return int : number of modified rows
*/
public function update_for_user(int $id_user, int $id, string $number, string $name)
{
$datas = [
'number' => $number,
'name' => $name,
];
return $this->model_contact->update_for_user($id_user, $id, $datas);
}
}