2019-10-29 14:57:13 +01:00
|
|
|
<?php
|
2019-10-30 00:30:39 +01:00
|
|
|
|
|
|
|
/*
|
2019-11-10 17:48:54 +01:00
|
|
|
* This file is part of RaspiSMS.
|
2019-10-30 00:30:39 +01:00
|
|
|
*
|
2019-11-10 17:48:54 +01:00
|
|
|
* (c) Pierre-Lin Bonnemaison <plebwebsas@gmail.com>
|
2019-10-30 00:30:39 +01:00
|
|
|
*
|
2019-11-10 17:48:54 +01:00
|
|
|
* This source file is subject to the GPL-3.0 license that is bundled
|
2019-10-30 00:30:39 +01:00
|
|
|
* 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
|
|
|
|
2019-11-14 02:02:50 +01:00
|
|
|
class Scheduled extends StandardController
|
2019-10-29 18:36:25 +01:00
|
|
|
{
|
2019-11-14 21:44:31 +01:00
|
|
|
protected $model = null;
|
2019-10-30 00:30:39 +01:00
|
|
|
|
2019-10-29 18:36:25 +01:00
|
|
|
/**
|
2019-11-14 02:02:50 +01:00
|
|
|
* Get the model for the Controller
|
|
|
|
* @return \descartes\Model
|
2019-10-29 18:36:25 +01:00
|
|
|
*/
|
2019-11-14 02:02:50 +01:00
|
|
|
protected function get_model () : \descartes\Model
|
2019-10-29 18:36:25 +01:00
|
|
|
{
|
2019-11-14 22:33:00 +01:00
|
|
|
$this->model = $this->model ?? new \models\Scheduled($this->bdd);
|
2019-11-14 02:02:50 +01:00
|
|
|
return $this->model;
|
|
|
|
}
|
2019-10-29 14:57:13 +01:00
|
|
|
|
2019-10-29 18:36:25 +01:00
|
|
|
/**
|
2019-11-14 02:02:50 +01:00
|
|
|
* Create a scheduled
|
|
|
|
* @param int $id_user : User to insert scheduled for
|
|
|
|
* @param $at : Scheduled date to send
|
|
|
|
* @param string $text : Text of the message
|
|
|
|
* @param ?string $origin : Origin number of the message, null by default
|
|
|
|
* @param bool $flash : Is the sms a flash sms, by default false
|
|
|
|
* @param array $numbers : Numbers to send message to
|
|
|
|
* @param array $contacts_ids : Contact ids to send message to
|
|
|
|
* @param array $groups_ids : Group ids to send message to
|
|
|
|
* @return bool : false on error, new id on success
|
2019-11-12 17:37:20 +01:00
|
|
|
*/
|
2019-11-14 02:02:50 +01:00
|
|
|
public function create (int $id_user, $at, string $text, ?string $origin = null, bool $flash = false, array $numbers = [], array $contacts_ids = [], array $groups_ids = [])
|
2019-11-12 17:37:20 +01:00
|
|
|
{
|
2019-11-14 02:02:50 +01:00
|
|
|
$scheduled = [
|
2019-11-12 17:37:20 +01:00
|
|
|
'id_user' => $id_user,
|
2019-11-10 17:36:42 +01:00
|
|
|
'at' => $at,
|
2019-11-10 16:53:47 +01:00
|
|
|
'text' => $text,
|
2019-11-12 17:37:20 +01:00
|
|
|
'origin' => $origin,
|
2019-11-10 16:53:47 +01:00
|
|
|
'flash' => $flash,
|
|
|
|
];
|
|
|
|
|
2019-11-14 02:02:50 +01:00
|
|
|
if ($origin)
|
2019-10-30 00:30:39 +01:00
|
|
|
{
|
2019-11-14 02:02:50 +01:00
|
|
|
$internal_phone = new Phone($this->bdd);
|
|
|
|
$find_phone = $internal_phone->get_by_number_and_user($id_user, $origin);
|
2019-10-29 14:57:13 +01:00
|
|
|
|
2019-11-14 02:02:50 +01:00
|
|
|
if (!$find_phone)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$id_scheduled = $this->get_model()->insert($scheduled);
|
|
|
|
if (!$id_scheduled)
|
|
|
|
{
|
|
|
|
$date = date('Y-m-d H:i:s');
|
|
|
|
$internal_event = new Event($this->bdd);
|
|
|
|
$internal_event->create($id_user, 'SCHEDULED_ADD', 'Ajout d\'un Sms pour le ' . $date . '.');
|
2019-10-29 14:57:13 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-10-30 00:30:39 +01:00
|
|
|
foreach ($numbers as $number)
|
|
|
|
{
|
2019-11-14 02:02:50 +01:00
|
|
|
$this->get_model()->insert_scheduled_number($id_scheduled, $number);
|
2019-10-29 14:57:13 +01:00
|
|
|
}
|
|
|
|
|
2019-11-15 06:30:23 +01:00
|
|
|
$internal_contact = new Contact($this->bdd);
|
2019-10-30 00:30:39 +01:00
|
|
|
foreach ($contacts_ids as $contact_id)
|
|
|
|
{
|
2019-11-15 06:30:23 +01:00
|
|
|
$find_contact = $internal_contact->get_for_user($id_user, $contact_id);
|
2019-11-14 02:02:50 +01:00
|
|
|
if (!$find_contact)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-11-15 06:30:23 +01:00
|
|
|
$this->get_model()->insert_scheduled_contact_relation($id_scheduled, $contact_id);
|
2019-10-29 14:57:13 +01:00
|
|
|
}
|
2019-10-30 00:30:39 +01:00
|
|
|
|
2019-11-15 06:30:23 +01:00
|
|
|
$internal_group = new Group($this->bdd);
|
2019-10-30 00:30:39 +01:00
|
|
|
foreach ($groups_ids as $group_id)
|
|
|
|
{
|
2019-11-15 06:30:23 +01:00
|
|
|
$find_group = $internal_group->get_for_user($id_user, $group_id);
|
2019-11-14 02:02:50 +01:00
|
|
|
if (!$find_group)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-11-15 06:30:23 +01:00
|
|
|
$this->get_model()->insert_scheduled_group_relation($id_scheduled, $group_id);
|
2019-10-29 14:57:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return $id_scheduled;
|
2019-10-29 18:36:25 +01:00
|
|
|
}
|
2019-10-29 14:57:13 +01:00
|
|
|
|
2019-11-14 02:02:50 +01:00
|
|
|
|
2019-10-29 18:36:25 +01:00
|
|
|
/**
|
2019-11-14 02:02:50 +01:00
|
|
|
* Update a scheduled
|
|
|
|
* @param int $id_user : User to insert scheduled for
|
|
|
|
* @param int $id_scheduled : Scheduled id
|
|
|
|
* @param $at : Scheduled date to send
|
|
|
|
* @param string $text : Text of the message
|
|
|
|
* @param ?string $origin : Origin number of the message, null by default
|
|
|
|
* @param bool $flash : Is the sms a flash sms, by default false
|
|
|
|
* @param array $numbers : Numbers to send message to
|
|
|
|
* @param array $contacts_ids : Contact ids to send message to
|
|
|
|
* @param array $groups_ids : Group ids to send message to
|
|
|
|
* @return bool : false on error, new id on success
|
2019-10-29 18:36:25 +01:00
|
|
|
*/
|
2019-11-14 02:02:50 +01:00
|
|
|
public function update_for_user (int $id_user, int $id_scheduled, $at, string $text, ?string $origin = null, bool $flash = false, array $numbers = [], array $contacts_ids = [], array $groups_ids = [])
|
2019-10-29 14:57:13 +01:00
|
|
|
{
|
2019-11-14 02:02:50 +01:00
|
|
|
$scheduled = [
|
2019-11-12 17:37:20 +01:00
|
|
|
'id_user' => $id_user,
|
2019-11-06 20:34:26 +01:00
|
|
|
'at' => $at,
|
2019-11-10 16:53:47 +01:00
|
|
|
'text' => $text,
|
2019-11-12 17:37:20 +01:00
|
|
|
'origin' => $origin,
|
2019-11-06 17:22:54 +01:00
|
|
|
'flash' => $flash,
|
|
|
|
];
|
2019-10-29 14:57:13 +01:00
|
|
|
|
2019-11-15 06:30:23 +01:00
|
|
|
|
2019-11-14 02:02:50 +01:00
|
|
|
if ($origin)
|
|
|
|
{
|
|
|
|
$internal_phone = new Phone($this->bdd);
|
|
|
|
$find_phone = $internal_phone->get_by_number_and_user($id_user, $origin);
|
|
|
|
|
|
|
|
if (!$find_phone)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$success = (bool) $this->get_model()->update_for_user($id_user, $id_scheduled, $scheduled);
|
2019-10-29 14:57:13 +01:00
|
|
|
|
2019-11-15 06:30:23 +01:00
|
|
|
$this->get_model()->delete_scheduled_numbers($id_scheduled);
|
|
|
|
$this->get_model()->delete_scheduled_contact_relations($id_scheduled);
|
|
|
|
$this->get_model()->delete_scheduled_group_relations($id_scheduled);
|
2019-10-29 14:57:13 +01:00
|
|
|
|
2019-11-10 16:53:47 +01:00
|
|
|
foreach ($numbers as $number)
|
2019-11-06 17:22:54 +01:00
|
|
|
{
|
2019-11-14 02:02:50 +01:00
|
|
|
$this->get_model()->insert_scheduled_number($id_scheduled, $number);
|
2019-11-06 17:22:54 +01:00
|
|
|
}
|
2019-11-15 06:30:23 +01:00
|
|
|
|
|
|
|
$internal_contact = new Contact($this->bdd);
|
2019-11-12 17:37:20 +01:00
|
|
|
foreach ($contacts_ids as $contact_id)
|
2019-11-06 17:22:54 +01:00
|
|
|
{
|
2019-11-15 06:30:23 +01:00
|
|
|
$find_contact = $internal_contact->get_for_user($id_user, $contact_id);
|
2019-11-14 02:02:50 +01:00
|
|
|
if (!$find_contact)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-11-15 06:30:23 +01:00
|
|
|
$this->get_model()->insert_scheduled_contact_relation($id_scheduled, $contact_id);
|
2019-11-06 17:22:54 +01:00
|
|
|
}
|
2019-10-29 14:57:13 +01:00
|
|
|
|
2019-11-15 06:30:23 +01:00
|
|
|
$internal_group = new Group($this->bdd);
|
2019-11-10 16:53:47 +01:00
|
|
|
foreach ($groups_ids as $group_id)
|
2019-11-06 17:22:54 +01:00
|
|
|
{
|
2019-11-15 06:30:23 +01:00
|
|
|
$find_group = $internal_group->get_for_user($id_user, $group_id);
|
2019-11-14 02:02:50 +01:00
|
|
|
if (!$find_group)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-11-15 06:30:23 +01:00
|
|
|
$this->get_model()->insert_scheduled_group_relation($id_scheduled, $group_id);
|
2019-10-29 14:57:13 +01:00
|
|
|
}
|
2019-10-30 00:30:39 +01:00
|
|
|
|
2019-11-14 02:02:50 +01:00
|
|
|
return true;
|
2019-10-29 14:57:13 +01:00
|
|
|
}
|
2019-10-30 00:30:39 +01:00
|
|
|
|
2019-11-14 02:02:50 +01:00
|
|
|
|
2019-10-29 14:57:13 +01:00
|
|
|
/**
|
2019-11-14 02:02:50 +01:00
|
|
|
* Get messages scheduled before a date for a number and a user
|
|
|
|
* @param int $id_user : User id
|
|
|
|
* @param $date : Date before which we want messages
|
|
|
|
* @param string $number : Number for which we want messages
|
|
|
|
* @return array
|
2019-10-29 18:36:25 +01:00
|
|
|
*/
|
2019-11-15 06:30:23 +01:00
|
|
|
public function gets_before_date_for_number_and_user (int $id_user, $date, string $number)
|
2019-10-29 18:36:25 +01:00
|
|
|
{
|
2019-11-15 06:30:23 +01:00
|
|
|
return $this->get_model()->gets_before_date_for_number_and_user($id_user, $date, $number);
|
2019-10-29 18:36:25 +01:00
|
|
|
}
|
2019-10-29 14:57:13 +01:00
|
|
|
|
2019-11-14 02:02:50 +01:00
|
|
|
|
2019-10-29 14:57:13 +01:00
|
|
|
/**
|
2019-11-14 02:02:50 +01:00
|
|
|
* Return numbers for a scheduled message
|
|
|
|
* @param int $id_scheduled : Scheduled id
|
|
|
|
* @return array
|
2019-10-29 18:36:25 +01:00
|
|
|
*/
|
2019-11-14 02:02:50 +01:00
|
|
|
public function get_numbers(int $id_scheduled)
|
2019-10-29 18:36:25 +01:00
|
|
|
{
|
2019-11-14 02:02:50 +01:00
|
|
|
return $this->get_model()->get_numbers($id_scheduled);
|
2019-10-29 18:36:25 +01:00
|
|
|
}
|
2019-10-30 00:30:39 +01:00
|
|
|
|
2019-11-14 02:02:50 +01:00
|
|
|
|
2019-10-29 14:57:13 +01:00
|
|
|
/**
|
2019-11-14 02:02:50 +01:00
|
|
|
* Return contacts for a scheduled message
|
|
|
|
* @param int $id_scheduled : Scheduled id
|
|
|
|
* @return array
|
2019-10-29 18:36:25 +01:00
|
|
|
*/
|
2019-11-14 02:02:50 +01:00
|
|
|
public function get_contacts(int $id_scheduled)
|
2019-10-29 18:36:25 +01:00
|
|
|
{
|
2019-11-14 02:02:50 +01:00
|
|
|
return $this->get_model()->get_contacts($id_scheduled);
|
2019-10-29 18:36:25 +01:00
|
|
|
}
|
2019-11-06 20:27:16 +01:00
|
|
|
|
2019-11-14 02:02:50 +01:00
|
|
|
|
2019-11-06 20:27:16 +01:00
|
|
|
/**
|
2019-11-14 02:02:50 +01:00
|
|
|
* Return groups for a scheduled message
|
|
|
|
* @param int $id_scheduled : Scheduled id
|
|
|
|
* @return array
|
2019-11-06 20:27:16 +01:00
|
|
|
*/
|
2019-11-14 02:02:50 +01:00
|
|
|
public function get_groups(int $id_scheduled)
|
2019-11-06 20:27:16 +01:00
|
|
|
{
|
2019-11-14 02:02:50 +01:00
|
|
|
return $this->get_model()->get_groups($id_scheduled);
|
2019-11-06 20:27:16 +01:00
|
|
|
}
|
2019-10-29 18:36:25 +01:00
|
|
|
}
|