152 lines
6.0 KiB
PHP
152 lines
6.0 KiB
PHP
<?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\publics;
|
|
|
|
/**
|
|
* Page d'index, qui gère l'affichage par défaut temporairement.
|
|
*/
|
|
class Dashboard extends \descartes\Controller
|
|
{
|
|
private $internal_sended;
|
|
private $internal_received;
|
|
private $internal_contact;
|
|
private $internal_group;
|
|
private $internal_scheduled;
|
|
private $internal_event;
|
|
private $internal_quota;
|
|
|
|
/**
|
|
* Cette fonction est appelée avant toute les autres :
|
|
* Elle vérifie que l'utilisateur est bien connecté.
|
|
*
|
|
* @return void;
|
|
*/
|
|
public function __construct()
|
|
{
|
|
$bdd = \descartes\Model::_connect(DATABASE_HOST, DATABASE_NAME, DATABASE_USER, DATABASE_PASSWORD);
|
|
|
|
$this->internal_sended = new \controllers\internals\Sended($bdd);
|
|
$this->internal_received = new \controllers\internals\Received($bdd);
|
|
$this->internal_contact = new \controllers\internals\Contact($bdd);
|
|
$this->internal_group = new \controllers\internals\Group($bdd);
|
|
$this->internal_scheduled = new \controllers\internals\Scheduled($bdd);
|
|
$this->internal_event = new \controllers\internals\Event($bdd);
|
|
$this->internal_quota = new \controllers\internals\Quota($bdd);
|
|
|
|
\controllers\internals\Tool::verifyconnect();
|
|
}
|
|
|
|
/**
|
|
* Cette fonction est un alias de show.
|
|
*
|
|
* @return void;
|
|
*/
|
|
public function show()
|
|
{
|
|
$id_user = $_SESSION['user']['id'];
|
|
|
|
//Recupération des nombres des 4 panneaux d'accueil
|
|
$nb_contacts = $this->internal_contact->count_for_user($id_user);
|
|
$nb_groups = $this->internal_group->count_for_user($id_user);
|
|
$nb_scheduleds = $this->internal_scheduled->count_for_user($id_user);
|
|
$nb_unreads = $this->internal_received->count_unread_for_user($id_user);
|
|
$nb_sendeds = $this->internal_sended->count_for_user($id_user);
|
|
$nb_receiveds = $this->internal_received->count_for_user($id_user);
|
|
|
|
//Récupération des 10 derniers Sms envoyés, Sms reçus et evenements enregistrés. Par date.
|
|
$sendeds = $this->internal_sended->get_lasts_by_date_for_user($id_user, 10);
|
|
$receiveds = $this->internal_received->get_lasts_by_date_for_user($id_user, 10);
|
|
$events = $this->internal_event->get_lasts_by_date_for_user($id_user, 10);
|
|
|
|
//Récupération du nombre de Sms envoyés et reçus depuis 1 mois jours ou depuis le début du quota si il existe
|
|
|
|
//Création de la date d'il y a 30 jours
|
|
$now = new \DateTime();
|
|
$one_month = new \DateInterval('P1M');
|
|
$stats_start_date = clone $now;
|
|
$stats_start_date->sub($one_month);
|
|
$stats_start_date_formated = $stats_start_date->format('Y-m-d');
|
|
|
|
//If user have a quota and the quota start before today, use quota start date instead
|
|
$quota_unused = false;
|
|
$quota = $this->internal_quota->get_user_quota($id_user);
|
|
if ($quota && (new \DateTime($quota['start_date']) <= $now) && (new \DateTime($quota['expiration_date']) > $now))
|
|
{
|
|
$quota_unused = $quota['credit'] + $quota['additional'] - $quota['consumed'];
|
|
|
|
$stats_start_date = new \DateTime($quota['start_date']);
|
|
$stats_start_date_formated = $stats_start_date->format('Y-m-d');
|
|
}
|
|
|
|
$nb_sendeds_by_day = $this->internal_sended->count_by_day_since_for_user($id_user, $stats_start_date_formated);
|
|
$nb_receiveds_by_day = $this->internal_received->count_by_day_since_for_user($id_user, $stats_start_date_formated);
|
|
|
|
//On va traduire ces données pour les afficher en graphique
|
|
$array_area_chart = [];
|
|
|
|
$date = clone $stats_start_date;
|
|
$one_day = new \DateInterval('P1D');
|
|
$i = 0;
|
|
|
|
//On va construire un tableau avec la date en clef, et les données pour chaque date
|
|
while ($date <= $now)
|
|
{
|
|
$date_f = $date->format('Y-m-d');
|
|
$array_area_chart[$date_f] = [
|
|
'period' => $date_f,
|
|
'sendeds' => 0,
|
|
'receiveds' => 0,
|
|
];
|
|
|
|
$date->add($one_day);
|
|
}
|
|
|
|
$total_sendeds = 0;
|
|
$total_receiveds = 0;
|
|
|
|
//0n remplie le tableau avec les données adaptées
|
|
foreach ($nb_sendeds_by_day as $date => $nb_sended)
|
|
{
|
|
$array_area_chart[$date]['sendeds'] = $nb_sended;
|
|
$total_sendeds += $nb_sended;
|
|
}
|
|
|
|
foreach ($nb_receiveds_by_day as $date => $nb_received)
|
|
{
|
|
$array_area_chart[$date]['receiveds'] = $nb_received;
|
|
$total_receiveds += $nb_received;
|
|
}
|
|
|
|
$nb_days = $stats_start_date->diff($now)->days + 1;
|
|
$avg_sendeds = round($total_sendeds / $nb_days, 2);
|
|
$avg_receiveds = round($total_receiveds / $nb_days, 2);
|
|
|
|
$array_area_chart = array_values($array_area_chart);
|
|
|
|
$this->render('dashboard/show', [
|
|
'nb_contacts' => $nb_contacts,
|
|
'nb_groups' => $nb_groups,
|
|
'nb_scheduleds' => $nb_scheduleds,
|
|
'nb_sendeds' => $nb_sendeds,
|
|
'nb_receiveds' => $nb_receiveds,
|
|
'nb_unreads' => $nb_unreads,
|
|
'avg_sendeds' => $avg_sendeds,
|
|
'avg_receiveds' => $avg_receiveds,
|
|
'quota_unused' => $quota_unused,
|
|
'sendeds' => $sendeds,
|
|
'receiveds' => $receiveds,
|
|
'events' => $events,
|
|
'data_area_chart' => json_encode($array_area_chart),
|
|
]);
|
|
}
|
|
}
|