raspisms/controllers/internals/Contact.php

98 lines
2.8 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;
class Contact extends StandardController
2019-10-29 18:36:25 +01:00
{
2019-11-14 21:44:31 +01:00
protected $model = null;
2019-11-12 19:19:55 +01:00
/**
* Get the model for the Controller
* @return \descartes\Model
2019-11-12 19:19:55 +01:00
*/
protected function get_model () : \descartes\Model
2019-11-12 19:19:55 +01:00
{
2019-11-14 22:33:00 +01:00
$this->model = $this->model ?? new \models\Contact($this->bdd);
return $this->model;
}
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
*/
2019-11-14 21:44:31 +01:00
public function get_by_number_and_user(int $id_user, string $number)
2019-11-12 17:37:20 +01:00
{
return $this->get_model()->get_by_number_and_user($id_user, $number);
2019-11-12 17:37:20 +01:00
}
2019-10-29 14:57:13 +01:00
/**
* Return a contact by his name for a user
* @param int $id_user : User id
* @param string $name : Contact name
* @return array
2019-10-29 14:57:13 +01:00
*/
public function get_by_name_and_user(int $id_user, string $name)
2019-10-29 14:57:13 +01:00
{
return $this->get_model()->get_by_name_and_user($id_user, $name);
2019-10-29 14:57:13 +01:00
}
2019-10-29 18:36:25 +01:00
/**
* Create a new contact
* @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
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->get_model()->insert($contact);
if (!$result)
{
2019-10-29 14:57:13 +01:00
return $result;
}
$internal_event = new Event($this->bdd);
$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
/**
* Update a contact
* @param int $id_user : User id
* @param int $id : Contact id
* @param string $number : Contact number
* @param string $name : Contact name
* @return int : number of modified rows
2019-10-29 18:36:25 +01:00
*/
public function update_for_user(int $id_user, int $id, string $number, string $name)
2019-10-29 14:57:13 +01:00
{
$datas = [
2019-10-29 14:57:13 +01:00
'number' => $number,
'name' => $name,
];
return $this->get_model()->update_for_user($id_user, $id, $datas);
2019-10-29 14:57:13 +01:00
}
2019-10-29 18:36:25 +01:00
}