MailController::actions()   B
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 65

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 65
ccs 0
cts 65
cp 0
rs 8.7636
c 0
b 0
f 0
cc 1
nc 1
nop 0
crap 2

How to fix   Long Method   

Long Method

Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.

For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.

Commonly applied refactorings include:

1
<?php
2
/**
3
 * Hosting Plugin for HiPanel
4
 *
5
 * @link      https://github.com/hiqdev/hipanel-module-hosting
6
 * @package   hipanel-module-hosting
7
 * @license   BSD-3-Clause
8
 * @copyright Copyright (c) 2015-2019, HiQDev (http://hiqdev.com/)
9
 */
10
11
/**
12
 * @see    http://hiqdev.com/hipanel-module-hosting
13
 * @license http://hiqdev.com/hipanel-module-hosting/license
14
 * @copyright Copyright (c) 2015 HiQDev
15
 */
16
17
namespace hipanel\modules\hosting\controllers;
18
19
use hipanel\actions\ComboSearchAction;
20
use hipanel\actions\IndexAction;
21
use hipanel\actions\SmartCreateAction;
22
use hipanel\actions\SmartDeleteAction;
23
use hipanel\actions\SmartPerformAction;
24
use hipanel\actions\SmartUpdateAction;
25
use hipanel\actions\ValidateFormAction;
26
use hipanel\actions\ViewAction;
27
use hipanel\filters\EasyAccessControl;
28
use hipanel\modules\hosting\models\Mail;
29
use Yii;
30
31
class MailController extends \hipanel\base\CrudController
32
{
33 View Code Duplication
    public function behaviors()
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...
34
    {
35
        return array_merge(parent::behaviors(), [
36
            [
37
                'class' => EasyAccessControl::class,
38
                'actions' => [
39
                    'create' => 'account.create',
40
                    'update' => 'account.update',
41
                    'delete' => 'account.delete',
42
                    '*' => 'account.read',
43
                ],
44
            ],
45
        ]);
46
    }
47
48
    public function actions()
49
    {
50
        return array_merge(parent::actions(), [
51
            'search' => [
52
                'class' => ComboSearchAction::class,
53
            ],
54
            'index' => [
55
                'class' => IndexAction::class,
56
                'data' => function ($action) {
57
                    return [
58
                        'stateData' => $action->controller->getStateData(),
59
                        'typeData' => $action->controller->getTypeData(),
60
                    ];
61
                },
62
                'filterStorageMap' => [
63
                    'mail_like' => 'hosting.mail.mail_like',
64
                    'type' => 'hosting.mail.type',
65
                    'state' => 'hosting.mail.state',
66
                    'server' => 'server.server.name',
67
                    'account' => 'hosting.account.login',
68
                    'client_id' => 'client.client.id',
69
                    'seller_id' => 'client.client.seller_id',
70
                ],
71
            ],
72
            'view' => [
73
                'class' => ViewAction::class,
74
                'findOptions' => [
75
                    'show_deleted' => true,
76
                ],
77
            ],
78
            'create' => [
79
                'class' => SmartCreateAction::class,
80
                'success' => Yii::t('hipanel:hosting', 'Mailbox creating task has been added to queue'),
81
                'error' => Yii::t('hipanel:hosting', 'An error occurred when trying to create mailbox'),
82
            ],
83
            'update' => [
84
                'class' => SmartUpdateAction::class,
85
                'success' => Yii::t('hipanel:hosting', 'Mailbox updating task has been added to queue'),
86
                'error' => Yii::t('hipanel:hosting', 'An error occurred when trying to update mailbox'),
87
            ],
88
            'set-password' => [
89
                'class' => SmartUpdateAction::class,
90
                'success' => Yii::t('hipanel:hosting', 'Mailbox password change task has been added to queue'),
91
                'error' => Yii::t('hipanel:hosting', 'An error occurred when trying to change mailbox password'),
92
            ],
93
            'delete' => [
94
                'class' => SmartDeleteAction::class,
95
                'success' => Yii::t('hipanel:hosting', 'Mailbox delete task has been created successfully'),
96
                'error' => Yii::t('hipanel:hosting', 'An error occurred when trying to delete mailbox'),
97
            ],
98
            'validate-form' => [
99
                'class' => ValidateFormAction::class,
100
            ],
101
            'disable' => [
102
                'class' => SmartPerformAction::class,
103
                'success' => Yii::t('hipanel:hosting', 'Mailbox has been disabled.'),
104
                'error' => Yii::t('hipanel:hosting', 'An error occurred.'),
105
            ],
106
            'enable' => [
107
                'class' => SmartPerformAction::class,
108
                'success' => Yii::t('hipanel:hosting', 'Mailbox has been enabled.'),
109
                'error' => Yii::t('hipanel:hosting', 'An error occurred.'),
110
            ],
111
        ]);
112
    }
113
114
    public function getStateData()
115
    {
116
        return $this->getRefs('state,mail', 'hipanel:hosting');
117
    }
118
119
    public function getTypeData()
120
    {
121
        return Mail::getTypes();
122
    }
123
}
124