raspisms/controllers/internals/Event.php

84 lines
2.3 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.
*/
namespace controllers\internals;
2019-10-29 14:57:13 +01:00
class Event extends StandardController
2019-10-29 18:36:25 +01:00
{
2020-01-17 18:19:25 +01:00
protected $model;
2019-10-29 14:57:13 +01:00
2019-10-29 18:36:25 +01:00
/**
2020-01-17 18:19:25 +01:00
* Disabled methods.
2019-10-29 18:36:25 +01:00
*/
2020-01-17 18:19:25 +01:00
public function update_for_user()
2019-10-29 18:36:25 +01:00
{
2020-01-17 18:19:25 +01:00
return false;
}
2019-10-29 14:57:13 +01:00
2019-10-29 18:36:25 +01:00
/**
2020-01-17 18:19:25 +01:00
* Gets lasts x events for a user order by date.
*
* @param int $id_user : User id
* @param int $nb_entry : Number of events to return
2020-01-17 18:19:25 +01:00
*
* @return array
2019-10-29 18:36:25 +01:00
*/
2020-01-17 18:19:25 +01:00
public function get_lasts_by_date_for_user(int $id_user, int $nb_entry)
2019-10-29 14:57:13 +01:00
{
2019-11-14 22:33:00 +01:00
return $this->get_model()->get_lasts_by_date_for_user($id_user, $nb_entry);
2019-10-29 18:36:25 +01:00
}
2019-10-29 14:57:13 +01:00
2019-10-29 18:36:25 +01:00
/**
2020-01-17 18:19:25 +01:00
* Create a new event.
*
* @param int $id_user : user id
* @param mixed $type
* @param mixed $text
2020-01-17 18:19:25 +01:00
*
* @return mixed bool : false on fail, new event id else
2019-10-29 18:36:25 +01:00
*/
2019-11-12 19:19:55 +01:00
public function create($id_user, $type, $text)
2019-10-29 14:57:13 +01:00
{
$event = [
2019-11-12 19:19:55 +01:00
'id_user' => $id_user,
2019-10-29 14:57:13 +01:00
'type' => $type,
'text' => $text,
];
2019-11-14 22:33:00 +01:00
return $this->get_model()->insert($event);
2019-10-29 18:36:25 +01:00
}
2021-06-08 02:00:48 +02:00
/**
* Gets events for a type, since a date and eventually until a date (both included)
*
* @param int $id_user : User id
* @param string $type : Event type we want
* @param \DateTime $since : Date to get events since
* @param ?\DateTime $until (optional) : Date until wich we want events, if not specified no limit
*
* @return array
*/
2021-06-08 21:01:26 +02:00
public function get_events_by_type_and_date_for_user (int $id_user, string $type, \DateTime $since, ?\DateTime $until = null)
2021-06-08 02:00:48 +02:00
{
2021-06-08 21:01:26 +02:00
$this->get_model()->get_events_by_type_and_date_for_user ($id_user, $type, $since, $until);
2021-06-08 02:00:48 +02:00
}
2020-01-17 18:19:25 +01:00
/**
* Get the model for the Controller.
*/
protected function get_model(): \descartes\Model
{
$this->model = $this->model ?? new \models\Event($this->bdd);
return $this->model;
}
2019-10-29 18:36:25 +01:00
}