2019-12-04 03:04:45 +01:00
|
|
|
<?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 Media extends StandardController
|
|
|
|
{
|
2020-01-17 18:19:25 +01:00
|
|
|
protected $model;
|
2019-12-04 03:04:45 +01:00
|
|
|
|
|
|
|
/**
|
2020-01-17 18:19:25 +01:00
|
|
|
* Create a media.
|
|
|
|
*
|
|
|
|
* @param int $id_user : Id of the user
|
2021-03-19 02:45:12 +01:00
|
|
|
* @param string $path : path of the media in data dir
|
2020-01-17 18:19:25 +01:00
|
|
|
*
|
2021-03-19 02:45:12 +01:00
|
|
|
* @return mixed bool|int : false on error, new media id else
|
2019-12-04 03:04:45 +01:00
|
|
|
*/
|
2021-03-21 17:08:05 +01:00
|
|
|
public function create(int $id_user, string $path)
|
2019-12-04 03:04:45 +01:00
|
|
|
{
|
2021-03-19 02:45:12 +01:00
|
|
|
$data = [
|
|
|
|
'path' => $path,
|
|
|
|
'id_user' => $id_user,
|
|
|
|
];
|
|
|
|
|
|
|
|
return $this->get_model()->insert($data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Link a media to a scheduled, a received or a sended message
|
|
|
|
* @param int $id_media : Id of the media
|
|
|
|
* @param string $resource_type : Type of resource to link the media to ('scheduled', 'received' or 'sended')
|
|
|
|
* @param int $resource_id : Id of the resource to link the media to
|
|
|
|
*
|
|
|
|
* @return mixed bool|int : false on error, the new link id else
|
|
|
|
*/
|
2021-03-21 17:08:05 +01:00
|
|
|
public function link_to(int $id_media, string $resource_type, int $resource_id)
|
2021-03-19 02:45:12 +01:00
|
|
|
{
|
|
|
|
switch ($resource_type)
|
2019-12-04 03:04:45 +01:00
|
|
|
{
|
2021-03-19 02:45:12 +01:00
|
|
|
case 'scheduled':
|
|
|
|
return $this->get_model()->insert_media_scheduled($id_media, $resource_id);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'received':
|
|
|
|
return $this->get_model()->insert_media_received($id_media, $resource_id);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'sended':
|
|
|
|
return $this->get_model()->insert_media_sended($id_media, $resource_id);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return false;
|
2019-12-04 03:04:45 +01:00
|
|
|
}
|
2021-03-19 02:45:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unlink a media of a scheduled, a received or a sended message
|
|
|
|
* @param int $id_media : Id of the media
|
|
|
|
* @param string $resource_type : Type of resource to unlink the media of ('scheduled', 'received' or 'sended')
|
|
|
|
* @param int $resource_id : Id of the resource to unlink the media of
|
|
|
|
*
|
|
|
|
* @return mixed bool : false on error, true on success
|
|
|
|
*/
|
|
|
|
public function unlink_of(int $id_media, int $resource_type, int $resource_id)
|
|
|
|
{
|
|
|
|
switch ($resource_type)
|
2019-12-04 03:04:45 +01:00
|
|
|
{
|
2021-03-19 02:45:12 +01:00
|
|
|
case 'scheduled':
|
|
|
|
return $this->get_model()->delete_media_scheduled($id_media, $resource_id);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'received':
|
|
|
|
return $this->get_model()->delete_media_received($id_media, $resource_id);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'sended':
|
|
|
|
return $this->get_model()->delete_media_sended($id_media, $resource_id);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unlink all medias of a scheduled, a received or a sended message
|
|
|
|
* @param string $resource_type : Type of resource to unlink the media of ('scheduled', 'received' or 'sended')
|
|
|
|
* @param int $resource_id : Id of the resource to unlink the media of
|
|
|
|
*
|
|
|
|
* @return mixed bool : false on error, true on success
|
|
|
|
*/
|
|
|
|
public function unlink_all_of(int $resource_type, int $resource_id)
|
|
|
|
{
|
|
|
|
switch ($resource_type)
|
|
|
|
{
|
|
|
|
case 'scheduled':
|
|
|
|
return $this->get_model()->delete_all_for_scheduled($resource_id);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'received':
|
|
|
|
return $this->get_model()->delete_all_for_received($resource_id);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'sended':
|
|
|
|
return $this->get_model()->delete_all_for_sended($resource_id);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return false;
|
2019-12-04 03:04:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-17 18:19:25 +01:00
|
|
|
* Update a media for a user.
|
|
|
|
*
|
|
|
|
* @param int $id_user : user id
|
|
|
|
* @param int $id_media : Media id
|
|
|
|
* @param string $path : Path of the file
|
|
|
|
*
|
2019-12-04 03:04:45 +01:00
|
|
|
* @return bool : false on error, true on success
|
|
|
|
*/
|
2021-03-19 02:45:12 +01:00
|
|
|
public function update_for_user(int $id_user, int $id_media, string $path): bool
|
2019-12-04 03:04:45 +01:00
|
|
|
{
|
2020-01-17 18:19:25 +01:00
|
|
|
$media = [
|
2019-12-04 03:04:45 +01:00
|
|
|
'path' => $path,
|
|
|
|
];
|
2020-01-17 18:19:25 +01:00
|
|
|
|
2019-12-04 03:04:45 +01:00
|
|
|
return (bool) $this->get_model()->update_for_user($id_user, $id_media, $media);
|
|
|
|
}
|
2020-01-17 18:19:25 +01:00
|
|
|
|
2019-12-04 03:04:45 +01:00
|
|
|
/**
|
2020-01-17 18:19:25 +01:00
|
|
|
* Delete a media for a user.
|
|
|
|
*
|
2019-12-04 03:04:45 +01:00
|
|
|
* @param int $id_user : User id
|
2020-01-17 18:19:25 +01:00
|
|
|
* @param int $id : Entry id
|
|
|
|
*
|
2019-12-04 03:04:45 +01:00
|
|
|
* @return int : Number of removed rows
|
|
|
|
*/
|
2020-01-17 18:19:25 +01:00
|
|
|
public function delete_for_user(int $id_user, int $id_media): bool
|
2019-12-04 03:04:45 +01:00
|
|
|
{
|
|
|
|
$media = $this->get_model()->get_for_user($id_user, $id_media);
|
|
|
|
if (!$media)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
unlink($media['path']);
|
|
|
|
|
2020-01-17 18:36:53 +01:00
|
|
|
return $this->get_model()->delete_for_user($id_user, $id_media);
|
2019-12-04 03:04:45 +01:00
|
|
|
}
|
2020-01-17 18:19:25 +01:00
|
|
|
|
2019-12-04 03:04:45 +01:00
|
|
|
/**
|
2021-03-21 17:08:05 +01:00
|
|
|
* Find medias for a scheduled.
|
2020-01-17 18:19:25 +01:00
|
|
|
*
|
2021-03-19 02:45:12 +01:00
|
|
|
* @param int $id_scheduled : Scheduled id to fin medias for
|
2020-01-17 18:19:25 +01:00
|
|
|
*
|
2021-03-19 02:45:12 +01:00
|
|
|
* @return mixed : Medias || false
|
2019-12-04 03:04:45 +01:00
|
|
|
*/
|
2021-03-21 17:08:05 +01:00
|
|
|
public function gets_for_scheduled(int $id_scheduled)
|
2019-12-04 03:04:45 +01:00
|
|
|
{
|
2021-03-21 17:08:05 +01:00
|
|
|
return $this->get_model()->gets_for_scheduled($id_scheduled);
|
2019-12-04 03:04:45 +01:00
|
|
|
}
|
2021-03-19 02:45:12 +01:00
|
|
|
|
2019-12-04 03:04:45 +01:00
|
|
|
/**
|
2021-03-19 02:45:12 +01:00
|
|
|
* Find medias for a sended and a user.
|
|
|
|
*
|
|
|
|
* @param int $id_sended : Scheduled id to fin medias for
|
|
|
|
*
|
|
|
|
* @return mixed : Medias || false
|
|
|
|
*/
|
2021-03-21 17:08:05 +01:00
|
|
|
public function gets_for_sended(int $id_sended)
|
2021-03-19 02:45:12 +01:00
|
|
|
{
|
2021-03-21 17:08:05 +01:00
|
|
|
return $this->get_model()->gets_for_sended($id_sended);
|
2021-03-19 02:45:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Find medias for a received and a user.
|
2020-01-17 18:19:25 +01:00
|
|
|
*
|
2021-03-19 02:45:12 +01:00
|
|
|
* @param int $id_received : Scheduled id to fin medias for
|
2020-01-17 18:19:25 +01:00
|
|
|
*
|
2019-12-04 03:04:45 +01:00
|
|
|
* @return mixed : Medias || false
|
|
|
|
*/
|
2021-03-21 17:08:05 +01:00
|
|
|
public function gets_for_received(int $id_received)
|
2019-12-04 03:04:45 +01:00
|
|
|
{
|
2021-03-21 17:08:05 +01:00
|
|
|
return $this->get_model()->gets_for_received($id_received);
|
2019-12-04 03:04:45 +01: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\Media($this->bdd);
|
|
|
|
|
|
|
|
return $this->model;
|
|
|
|
}
|
2019-12-04 03:04:45 +01:00
|
|
|
}
|