UserController   A
last analyzed

Complexity

Total Complexity 8

Size/Duplication

Total Lines 103
Duplicated Lines 45.63 %

Coupling/Cohesion

Components 1
Dependencies 4

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 8
lcom 1
cbo 4
dl 47
loc 103
ccs 0
cts 57
cp 0
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A overviewAction() 0 12 1
B addAction() 25 25 3

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
/**
4
 * This file is part of Packy.
5
 *
6
 * (c) Peter Nijssen
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace AppBundle\Controller;
13
14
use AppBundle\Entity\User;
15
use AppBundle\Form\Type\UserFormType;
16
use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter;
17
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
18
use Symfony\Component\HttpFoundation\RedirectResponse;
19
use Symfony\Component\HttpFoundation\Request;
20
use Symfony\Component\HttpFoundation\Response;
21
22
class UserController extends Controller
23
{
24
    /**
25
     * User overview page.
26
     *
27
     * @return Response A Response instance
28
     */
29
    public function overviewAction()
30
    {
31
        $userRepository = $this->get('packy.repository.user');
32
        $users = $userRepository->findAll();
33
34
        return $this->render(
35
            'AppBundle:User:overview.html.twig',
36
            [
37
                'users' => $users,
38
            ]
39
        );
40
    }
41
42
    /**
43
     * Add user.
44
     *
45
     * @param Request $request A Request instance
46
     *
47
     * @return Response A Response instance
48
     */
49 View Code Duplication
    public function addAction(Request $request)
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...
50
    {
51
        $user = new User();
52
        $userForm = $this->createForm(UserFormType::class, $user);
53
54
        if ($request->isMethod('POST')) {
55
            $userForm->handleRequest($request);
56
            if ($userForm->isValid()) {
57
                $user->setEnabled(true);
58
59
                $userRepository = $this->get('packy.repository.user');
60
                $userRepository->create($user);
61
62
                return $this->redirect($this->generateUrl('packy_user_overview'));
63
            }
64
        }
65
66
        return $this->render(
67
            'AppBundle:User:form.html.twig',
68
            [
69
                'user' => $user,
70
                'userForm' => $userForm->createView(),
71
            ]
72
        );
73
    }
74
75
    /**
76
     * @ParamConverter("user", class="AppBundle:User", options={"id" = "userId"})
77
     *
78
     * Edit user
79
     *
80
     * @param Request $request A Request instance
81
     * @param User    $user
82
     *
83
     * @return Response A Response instance
84
     */
85 View Code Duplication
    public function editAction(Request $request, User $user)
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...
86
    {
87
        $userForm = $this->createForm(UserFormType::class, $user);
88
89
        if ($request->isMethod('POST')) {
90
            $userForm->handleRequest($request);
91
            if ($userForm->isValid()) {
92
                $userRepository = $this->get('packy.repository.user');
93
                $userRepository->update($user);
94
95
                return $this->redirect($this->generateUrl('packy_user_overview'));
96
            }
97
        }
98
99
        return $this->render(
100
            'AppBundle:User:form.html.twig',
101
            [
102
                'user' => $user,
103
                'userForm' => $userForm->createView(),
104
            ]
105
        );
106
    }
107
108
    /**
109
     * @ParamConverter("user", class="AppBundle:User", options={"id" = "userId"})
110
     *
111
     * Delete user
112
     *
113
     * @param User $user
114
     *
115
     * @return RedirectResponse A Response instance
116
     */
117
    public function deleteAction(User $user)
118
    {
119
        $userRepository = $this->get('packy.repository.user');
120
        $userRepository->delete($user);
121
122
        return $this->redirect($this->generateUrl('packy_user_overview'));
123
    }
124
}
125