Completed
Pull Request — 1.4 (#681)
by Paweł
12:03 queued 01:17
created

ArticleRepository::getArticlesByPackage()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 10

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 10
rs 9.9332
c 0
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * This file is part of the Superdesk Web Publisher Core Bundle.
7
 *
8
 * Copyright 2017 Sourcefabric z.ú. and contributors.
9
 *
10
 * For the full copyright and license information, please see the
11
 * AUTHORS and LICENSE files distributed with this source code.
12
 *
13
 * @copyright 2017 Sourcefabric z.ú
14
 * @license http://www.superdesk.org/license
15
 */
16
17
namespace SWP\Bundle\CoreBundle\Repository;
18
19
use Doctrine\ORM\QueryBuilder;
20
use SWP\Bundle\ContentBundle\Doctrine\ORM\ArticleRepository as ContentBundleArticleRepository;
21
use SWP\Bundle\CoreBundle\Model\ArticleEvent;
22
use SWP\Bundle\CoreBundle\Model\PackageInterface;
23
use SWP\Component\Common\Criteria\Criteria;
24
25
class ArticleRepository extends ContentBundleArticleRepository implements ArticleRepositoryInterface
26
{
27 View Code Duplication
    public function getByCriteria(Criteria $criteria, array $sorting): QueryBuilder
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
28
    {
29
        $qb = parent::getByCriteria($criteria, $sorting)
30
            ->leftJoin('a.articleStatistics', 'stats')->addSelect('stats')
31
            ->leftJoin('a.externalArticle', 'ext')->addSelect('ext');
32
33
        return $qb;
34
    }
35
36 View Code Duplication
    public function getArticlesByCriteriaIds(Criteria $criteria): QueryBuilder
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
37
    {
38
        $queryBuilder = parent::getArticlesByCriteriaIds($criteria)
39
            ->leftJoin('a.articleStatistics', 'stats')->addSelect('stats')
40
            ->leftJoin('a.externalArticle', 'ext')->addSelect('ext');
41
42
        return $queryBuilder;
43
    }
44
45
    public function getArticleBySlugForPackage(string $slug, PackageInterface $package): QueryBuilder
46
    {
47
        $queryBuilder = $this->createQueryBuilder('a');
48
        $queryBuilder
49
            ->where('a.slug = :slug')
50
                ->setParameter('slug', $slug)
51
            ->andWhere('a.package != :package')
52
                ->setParameter('package', $package)
53
        ;
54
55
        return $queryBuilder;
56
    }
57
58
    public function getArticlesByPackage(PackageInterface $package): QueryBuilder
59
    {
60
        $queryBuilder = $this->createQueryBuilder('a');
61
        $queryBuilder
62
            ->andWhere('a.package = :package')
63
            ->setParameter('package', $package)
64
        ;
65
66
        return $queryBuilder;
67
    }
68
69
    public function getArticleByPackageExtraData(string $key, string $value): QueryBuilder
70
    {
71
        $queryBuilder = $this->createQueryBuilder('a');
72
        $queryBuilder
73
            ->leftJoin('a.package', 'p')
74
            ->leftJoin('p.externalData', 'e')
75
            ->andWhere('e.key = :key')
76
            ->andWhere('e.value = :value')
77
            ->setParameters(['key' => $key, 'value' => $value])
78
        ;
79
80
        return $queryBuilder;
81
    }
82
83
    protected function applySorting(QueryBuilder $queryBuilder, array $sorting, string $alias, Criteria $criteria = null)
84
    {
85
        if (isset($sorting['pageViews']) && !empty($sorting['pageViews'])) {
86
            if ($criteria instanceof Criteria && null !== $dateRange = $criteria->get('dateRange', null)) {
87
                $start = new \DateTime();
88
                $start->setTimestamp(strtotime($dateRange[0]));
89
                $start->setTime(23, 59, 59);
90
                $end = new \DateTime();
91
                $end->setTimestamp(strtotime($dateRange[1]));
92
                $end->setTime(0, 0, 0);
93
94
                $articleEventsQuery = $this->_em->createQueryBuilder()
95
                    ->from(ArticleEvent::class, 'ae')
96
                    ->select('COUNT(ae.id)')
97
                    ->where('ae.createdAt <= :start')
98
                    ->andWhere('ae.createdAt >= :end')
99
                    ->andWhere('ae.articleStatistics = stats.id');
100
101
                $queryBuilder
102
                    ->addSelect(sprintf('(%s) as HIDDEN events_count', $articleEventsQuery))
103
                    ->setParameter('start', $start)
104
                    ->setParameter('end', $end);
105
                $queryBuilder->addOrderBy('events_count', $sorting['pageViews']);
106
            } else {
107
                $queryBuilder->addOrderBy($this->getPropertyName('pageViewsNumber', 'stats'), $sorting['pageViews']);
108
            }
109
            unset($sorting['pageViews']);
110
        }
111
112
        if (isset($sorting['commentsCount']) && !empty($sorting['commentsCount'])) {
113
            $queryBuilder->andWhere('a.commentsCount IS NOT NULL');
114
        }
115
116
        return parent::applySorting($queryBuilder, $sorting, $alias);
117
    }
118
}
119