2015-04-02 23:32:24 +02:00
|
|
|
<?php
|
|
|
|
namespace Framadate\Repositories;
|
|
|
|
|
|
|
|
use Framadate\Utils;
|
|
|
|
|
|
|
|
class CommentRepository extends AbstractRepository {
|
2021-12-20 17:46:50 +01:00
|
|
|
/**
|
|
|
|
* @return array|false
|
|
|
|
*/
|
|
|
|
public function findAllByPollId(string $poll_id) {
|
2015-04-02 23:32:24 +02:00
|
|
|
$prepared = $this->prepare('SELECT * FROM `' . Utils::table('comment') . '` WHERE poll_id = ? ORDER BY id');
|
2018-02-19 00:18:43 +01:00
|
|
|
$prepared->execute([$poll_id]);
|
2015-04-02 23:32:24 +02:00
|
|
|
|
|
|
|
return $prepared->fetchAll();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Insert a new comment.
|
|
|
|
*
|
2021-12-20 17:46:50 +01:00
|
|
|
* @param string $poll_id
|
|
|
|
* @param string $name
|
|
|
|
* @param string $comment
|
2015-04-02 23:32:24 +02:00
|
|
|
* @return bool
|
|
|
|
*/
|
2021-12-20 17:46:50 +01:00
|
|
|
public function insert(string $poll_id, string $name, string $comment): bool
|
|
|
|
{
|
2015-04-02 23:32:24 +02:00
|
|
|
$prepared = $this->prepare('INSERT INTO `' . Utils::table('comment') . '` (poll_id, name, comment) VALUES (?,?,?)');
|
|
|
|
|
|
|
|
return $prepared->execute([$poll_id, $name, $comment]);
|
|
|
|
}
|
|
|
|
|
2021-12-20 17:46:50 +01:00
|
|
|
public function deleteById(string $poll_id, int $comment_id): bool
|
|
|
|
{
|
2015-04-02 23:32:24 +02:00
|
|
|
$prepared = $this->prepare('DELETE FROM `' . Utils::table('comment') . '` WHERE poll_id = ? AND id = ?');
|
|
|
|
|
|
|
|
return $prepared->execute([$poll_id, $comment_id]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete all comments of a given poll.
|
|
|
|
*
|
2021-12-20 17:46:50 +01:00
|
|
|
* @param string $poll_id The ID of the given poll.
|
2015-04-02 23:32:24 +02:00
|
|
|
* @return bool|null true if action succeeded.
|
|
|
|
*/
|
2021-12-20 17:46:50 +01:00
|
|
|
public function deleteByPollId(string $poll_id): ?bool
|
|
|
|
{
|
2015-04-02 23:32:24 +02:00
|
|
|
$prepared = $this->prepare('DELETE FROM `' . Utils::table('comment') . '` WHERE poll_id = ?');
|
|
|
|
|
|
|
|
return $prepared->execute([$poll_id]);
|
|
|
|
}
|
|
|
|
|
2021-12-20 17:46:50 +01:00
|
|
|
public function exists(string $poll_id, string $name, string $comment): bool
|
|
|
|
{
|
2015-04-03 00:11:36 +02:00
|
|
|
$prepared = $this->prepare('SELECT 1 FROM `' . Utils::table('comment') . '` WHERE poll_id = ? AND name = ? AND comment = ?');
|
2018-02-19 00:18:43 +01:00
|
|
|
$prepared->execute([$poll_id, $name, $comment]);
|
2015-04-02 23:32:24 +02:00
|
|
|
|
|
|
|
return $prepared->rowCount() > 0;
|
|
|
|
}
|
|
|
|
}
|