142 lines
4.2 KiB
PHP
142 lines
4.2 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Kimai package.
|
|
*
|
|
* (c) Kevin Papst <kevin@kevinpapst.de>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace TimesheetBundle\Repository;
|
|
|
|
use AppBundle\Repository\AbstractRepository;
|
|
use Doctrine\ORM\Query;
|
|
use TimesheetBundle\Entity\Project;
|
|
use TimesheetBundle\Model\ProjectStatistic;
|
|
use TimesheetBundle\Repository\Query\ProjectQuery;
|
|
|
|
/**
|
|
* Class ProjectRepository
|
|
*
|
|
* @author Kevin Papst <kevin@kevinpapst.de>
|
|
*/
|
|
class ProjectRepository extends AbstractRepository
|
|
{
|
|
|
|
/**
|
|
* @param $id
|
|
* @return null|Project
|
|
*/
|
|
public function getById($id)
|
|
{
|
|
return $this->find($id);
|
|
}
|
|
|
|
/**
|
|
* Return statistic data for all user.
|
|
*
|
|
* @return ProjectStatistic
|
|
* @throws \Doctrine\ORM\NonUniqueResultException
|
|
*/
|
|
public function getGlobalStatistics()
|
|
{
|
|
$countAll = $this->getEntityManager()
|
|
->createQuery('SELECT COUNT(p.id) FROM TimesheetBundle:Project p')
|
|
->getSingleScalarResult();
|
|
|
|
$stats = new ProjectStatistic();
|
|
$stats->setCount($countAll);
|
|
return $stats;
|
|
}
|
|
|
|
/**
|
|
* Retrieves statistics for one activity.
|
|
*
|
|
* @param Project $project
|
|
* @return ProjectStatistic
|
|
*/
|
|
public function getProjectStatistics(Project $project)
|
|
{
|
|
$qb = $this->getEntityManager()->createQueryBuilder();
|
|
|
|
$qb->select('COUNT(t.id) as recordAmount', 'SUM(t.duration) as recordDuration, COUNT(DISTINCT(a.id)) as activityAmount')
|
|
->from('TimesheetBundle:Activity', 'a')
|
|
->join('TimesheetBundle:Timesheet', 't')
|
|
->where('a.project = :project')
|
|
->andWhere('t.activity = a.id')
|
|
;
|
|
|
|
$result = $qb->getQuery()->execute(['project' => $project], Query::HYDRATE_ARRAY);
|
|
|
|
$stats = new ProjectStatistic();
|
|
|
|
if (isset($result[0])) {
|
|
$dbStats = $result[0];
|
|
|
|
$stats->setCount(1);
|
|
$stats->setRecordAmount($dbStats['recordAmount']);
|
|
$stats->setRecordDuration($dbStats['recordDuration']);
|
|
$stats->setActivityAmount($dbStats['activityAmount']);
|
|
}
|
|
|
|
return $stats;
|
|
}
|
|
|
|
/**
|
|
* Returns a query builder that is used for ProjectType and your own 'query_builder' option.
|
|
*
|
|
* @param Project|null $entity
|
|
* @return \Doctrine\ORM\QueryBuilder
|
|
*/
|
|
public function builderForEntityType(Project $entity = null)
|
|
{
|
|
$query = new ProjectQuery();
|
|
$query->setHiddenEntity($entity);
|
|
$query->setResultType(ProjectQuery::RESULT_TYPE_QUERYBUILDER);
|
|
return $this->findByQuery($query);
|
|
}
|
|
|
|
/**
|
|
* @param ProjectQuery $query
|
|
* @return \Doctrine\ORM\QueryBuilder|\Pagerfanta\Pagerfanta
|
|
*/
|
|
public function findByQuery(ProjectQuery $query)
|
|
{
|
|
$qb = $this->getEntityManager()->createQueryBuilder();
|
|
|
|
// if we join activities, the maxperpage limit will limit the list
|
|
// due to the raised amount of rows by projects * activities
|
|
$qb->select('p', 'c')
|
|
->from('TimesheetBundle:Project', 'p')
|
|
->join('p.customer', 'c')
|
|
->orderBy('p.' . $query->getOrderBy(), $query->getOrder());
|
|
|
|
if ($query->getVisibility() == ProjectQuery::SHOW_VISIBLE) {
|
|
if (!$query->isExclusiveVisibility()) {
|
|
$qb->andWhere('c.visible = 1');
|
|
}
|
|
$qb->andWhere('p.visible = 1');
|
|
|
|
/** @var Project $entity */
|
|
$entity = $query->getHiddenEntity();
|
|
if ($entity !== null) {
|
|
$qb->orWhere('p.id = :project')->setParameter('project', $entity);
|
|
}
|
|
|
|
// TODO check for visibility of customer
|
|
} elseif ($query->getVisibility() == ProjectQuery::SHOW_HIDDEN) {
|
|
$qb->andWhere('p.visible = 0');
|
|
// TODO check for visibility of customer
|
|
}
|
|
|
|
if ($query->getCustomer() !== null) {
|
|
$qb->andWhere('p.customer = :customer')
|
|
->setParameter('customer', $query->getCustomer());
|
|
}
|
|
|
|
return $this->getBaseQueryResult($qb, $query);
|
|
}
|
|
}
|