1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/kanboard_ynh.git synced 2024-09-03 19:36:17 +02:00
kanboard_ynh/sources/app/Model/Comment.php

206 lines
5.1 KiB
PHP
Raw Normal View History

2014-07-20 12:26:15 +02:00
<?php
namespace Model;
use SimpleValidator\Validator;
use SimpleValidator\Validators;
/**
* Comment model
*
* @package model
* @author Frederic Guillot
*/
class Comment extends Base
{
/**
* SQL table name
*
* @var string
*/
const TABLE = 'comments';
2014-10-22 19:59:09 +02:00
/**
* Events
*
* @var string
*/
const EVENT_UPDATE = 'comment.update';
const EVENT_CREATE = 'comment.create';
2014-07-20 12:26:15 +02:00
/**
* Get all comments for a given task
*
* @access public
* @param integer $task_id Task id
* @return array
*/
public function getAll($task_id)
{
return $this->db
->table(self::TABLE)
->columns(
self::TABLE.'.id',
self::TABLE.'.date',
self::TABLE.'.task_id',
self::TABLE.'.user_id',
self::TABLE.'.comment',
2014-10-22 19:59:09 +02:00
User::TABLE.'.username',
User::TABLE.'.name'
2014-07-20 12:26:15 +02:00
)
->join(User::TABLE, 'id', 'user_id')
->orderBy(self::TABLE.'.date', 'ASC')
->eq(self::TABLE.'.task_id', $task_id)
->findAll();
}
/**
* Get a comment
*
* @access public
* @param integer $comment_id Comment id
* @return array
*/
public function getById($comment_id)
{
return $this->db
->table(self::TABLE)
->columns(
self::TABLE.'.id',
self::TABLE.'.task_id',
self::TABLE.'.user_id',
self::TABLE.'.date',
self::TABLE.'.comment',
2014-10-22 19:59:09 +02:00
User::TABLE.'.username',
User::TABLE.'.name'
2014-07-20 12:26:15 +02:00
)
->join(User::TABLE, 'id', 'user_id')
->eq(self::TABLE.'.id', $comment_id)
->findOne();
}
/**
* Get the number of comments for a given task
*
* @access public
* @param integer $task_id Task id
* @return integer
*/
public function count($task_id)
{
return $this->db
->table(self::TABLE)
->eq(self::TABLE.'.task_id', $task_id)
->count();
}
/**
2014-12-22 19:15:38 +01:00
* Create a new comment
2014-07-20 12:26:15 +02:00
*
* @access public
* @param array $values Form values
2014-12-22 19:15:38 +01:00
* @return boolean|integer
2014-07-20 12:26:15 +02:00
*/
public function create(array $values)
{
$values['date'] = time();
2014-12-22 19:15:38 +01:00
$comment_id = $this->persist(self::TABLE, $values);
2014-07-20 12:26:15 +02:00
2014-12-22 19:15:38 +01:00
if ($comment_id) {
$this->event->trigger(self::EVENT_CREATE, array('id' => $comment_id) + $values);
2014-10-22 19:59:09 +02:00
}
2014-12-22 19:15:38 +01:00
return $comment_id;
2014-07-20 12:26:15 +02:00
}
/**
* Update a comment in the database
*
* @access public
* @param array $values Form values
* @return boolean
*/
public function update(array $values)
{
2014-10-22 19:59:09 +02:00
$result = $this->db
2014-07-20 12:26:15 +02:00
->table(self::TABLE)
->eq('id', $values['id'])
->update(array('comment' => $values['comment']));
2014-10-22 19:59:09 +02:00
$this->event->trigger(self::EVENT_UPDATE, $values);
return $result;
2014-07-20 12:26:15 +02:00
}
/**
* Remove a comment
*
* @access public
* @param integer $comment_id Comment id
* @return boolean
*/
public function remove($comment_id)
{
return $this->db->table(self::TABLE)->eq('id', $comment_id)->remove();
}
/**
* Validate comment creation
*
* @access public
* @param array $values Required parameters to save an action
* @return array $valid, $errors [0] = Success or not, [1] = List of errors
*/
public function validateCreation(array $values)
{
2014-10-22 19:59:09 +02:00
$rules = array(
2014-07-20 12:26:15 +02:00
new Validators\Required('user_id', t('This value is required')),
2014-10-22 19:59:09 +02:00
new Validators\Required('task_id', t('This value is required')),
);
$v = new Validator($values, array_merge($rules, $this->commonValidationRules()));
2014-07-20 12:26:15 +02:00
return array(
$v->execute(),
$v->getErrors()
);
}
/**
* Validate comment modification
*
* @access public
* @param array $values Required parameters to save an action
* @return array $valid, $errors [0] = Success or not, [1] = List of errors
*/
public function validateModification(array $values)
{
2014-10-22 19:59:09 +02:00
$rules = array(
2014-07-20 12:26:15 +02:00
new Validators\Required('id', t('This value is required')),
2014-10-22 19:59:09 +02:00
);
$v = new Validator($values, array_merge($rules, $this->commonValidationRules()));
2014-07-20 12:26:15 +02:00
return array(
$v->execute(),
$v->getErrors()
);
}
2014-10-22 19:59:09 +02:00
/**
* Common validation rules
*
* @access private
* @return array
*/
private function commonValidationRules()
{
return array(
new Validators\Integer('id', t('This value must be an integer')),
new Validators\Integer('task_id', t('This value must be an integer')),
new Validators\Integer('user_id', t('This value must be an integer')),
new Validators\Required('comment', t('Comment is required'))
);
}
2014-07-20 12:26:15 +02:00
}