Completed
Push — master ( e41cc1...feed29 )
by Andrey
08:18
created

CategoryController   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 67
Duplicated Lines 100 %

Coupling/Cohesion

Components 0
Dependencies 8

Importance

Changes 0
Metric Value
dl 67
loc 67
rs 10
c 0
b 0
f 0
wmc 3
lcom 0
cbo 8

2 Methods

Rating   Name   Duplication   Size   Complexity  
A behaviors() 21 21 1
A actionView() 33 33 2

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

1
<?php
2
3
namespace app\controllers;
4
5
use Yii;
6
use yii\data\Pagination;
7
use yii\helpers\ArrayHelper;
8
use yii\web\NotFoundHttpException;
9
use yii\filters\{AccessControl, VerbFilter};
10
use app\models\{Category, Product};
11
12
/**
13
 * Class CategoryController
14
 *
15
 * @package app\controllers
16
 */
17 View Code Duplication
class CategoryController extends BaseController
0 ignored issues
show
Duplication introduced by
This class 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...
18
{
19
    /**
20
     * @return array
21
     */
22
    public function behaviors()
23
    {
24
        return ArrayHelper::merge(parent::behaviors(), [
25
            'access' => [
26
                'class' => AccessControl::class,
27
                'rules' => [
28
                    [
29
                        'allow' => true,
30
                        'actions' => ['index','view'],
31
                        'roles' => ['?', '@'],
32
                    ],
33
                ],
34
            ],
35
            'verbs' => [
36
                'class' => VerbFilter::class,
37
                'actions' => [
38
                    'view' => ['get'],
39
                ],
40
            ],
41
        ]);
42
    }
43
44
    /**
45
     * Displays category page with products.
46
     * @param $alias
47
     * @return string
48
     * @throws NotFoundHttpException
49
     */
50
    public function actionView($alias)
51
    {
52
        $model = Category::find()->where([
53
            'alias' => $alias
54
        ])->andWhere([
55
            'active' => 1
56
        ])->one();
57
58
        if (null === $model) {
59
            throw new NotFoundHttpException('Category not fount with alias = '.$alias.'.');
60
        }
61
62
        $this->setMetaParams($model);
0 ignored issues
show
Bug introduced by
It seems like $model defined by \app\models\Category::fi...('active' => 1))->one() on line 52 can also be of type array; however, app\controllers\BaseController::setMetaParams() does only seem to accept null|object<yii\db\ActiveRecord>, maybe add an additional type check?

If a method or function can return multiple different values and unless you are sure that you only can receive a single value in this context, we recommend to add an additional type check:

/**
 * @return array|string
 */
function returnsDifferentValues($x) {
    if ($x) {
        return 'foo';
    }

    return array();
}

$x = returnsDifferentValues($y);
if (is_array($x)) {
    // $x is an array.
}

If this a common case that PHP Analyzer should handle natively, please let us know by opening an issue.

Loading history...
63
64
        $productsQuery = Product::find()->where([
65
            'categoryId' => $model->id
66
        ])->andWhere([
67
            'active' => 1
68
        ]);
69
70
        $pagination = new Pagination([
71
            'totalCount' => $productsQuery->count(),
72
            'defaultPageSize' => Yii::$app->params['defaultPageSize']
73
        ]);
74
75
        return $this->render('view', [
76
            'model' => $model,
77
            'pagination' => $pagination,
78
            'products' => $productsQuery->offset($pagination->offset)
79
                ->limit($pagination->limit)
80
                ->all()
81
        ]);
82
    }
83
}
84