Completed
Push — master ( 5fd068...fdcd72 )
by Laurent
17s
created

CompanyController   A

Complexity

Total Complexity 10

Size/Duplication

Total Lines 148
Duplicated Lines 100 %

Coupling/Cohesion

Components 1
Dependencies 4

Importance

Changes 7
Bugs 1 Features 2
Metric Value
wmc 10
c 7
b 1
f 2
lcom 1
cbo 4
dl 148
loc 148
rs 10

7 Methods

Rating   Name   Duplication   Size   Complexity  
A createAction() 17 17 2
A indexAction() 10 10 1
A showAction() 9 9 1
A newAction() 10 10 1
A editAction() 14 14 1
A updateAction() 20 20 2
A deleteAction() 11 11 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
 * CompanyController controller de configuration de l'établissement.
4
 *
5
 * PHP Version 5
6
 *
7
 * @author    Quétier Laurent <[email protected]>
8
 * @copyright 2014 Dev-Int GLSR
9
 * @license   http://opensource.org/licenses/gpl-license.php GNU Public License
10
 *
11
 * @version   since 1.0.0
12
 *
13
 * @link      https://github.com/Dev-Int/glsr
14
 */
15
namespace AppBundle\Controller\Settings;
16
17
use Symfony\Component\HttpFoundation\Request;
18
use AppBundle\Controller\AbstractController;
19
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
20
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
21
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
22
use AppBundle\Entity\Company;
23
use AppBundle\Form\Type\CompanyType;
24
25
/**
26
 * Company controller.
27
 *
28
 * @category Controller
29
 *
30
 * @Route("/admin/settings/company")
31
 */
32 View Code Duplication
class CompanyController extends AbstractController
1 ignored issue
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...
33
{
34
    /**
35
     * Lists all Company entities.
36
     *
37
     * @Route("/", name="admin_company")
38
     * @Method("GET")
39
     * @Template()
40
     */
41
    public function indexAction()
42
    {
43
        $em = $this->getDoctrine()->getManager();
44
        $entities = $em->getRepository('AppBundle:Company')->findAll();
45
        
46
        return array(
47
            'entities'  => $entities,
48
            'ctEntity' => count($entities),
49
        );
50
    }
51
52
    /**
53
     * Finds and displays a Company entity.
54
     *
55
     * @Route("/{id}/show", name="admin_company_show", requirements={"id"="\d+"})
56
     * @Method("GET")
57
     * @Template()
58
     */
59
    public function showAction(Company $company)
60
    {
61
        $deleteForm = $this->createDeleteForm($company->getId(), 'admin_company_delete');
62
63
        return array(
64
            'company' => $company,
65
            'delete_form' => $deleteForm->createView(),
66
        );
67
    }
68
69
    /**
70
     * Displays a form to create a new Company entity.
71
     *
72
     * @Route("/new", name="admin_company_new")
73
     * @Method("GET")
74
     * @Template()
75
     */
76
    public function newAction()
77
    {
78
        $company = new Company();
79
        $form = $this->createForm(new CompanyType(), $company);
80
81
        return array(
82
            'company' => $company,
83
            'form'   => $form->createView(),
84
        );
85
    }
86
87
    /**
88
     * Creates a new Company entity.
89
     *
90
     * @Route("/create", name="admin_company_create")
91
     * @Method("POST")
92
     * @Template("AppBundle:Settings/Company:new.html.twig")
93
     */
94
    public function createAction(Request $request)
95
    {
96
        $company = new Company();
97
        $form = $this->createForm(new CompanyType(), $company);
98
        if ($form->handleRequest($request)->isValid()) {
99
            $em = $this->getDoctrine()->getManager();
100
            $em->persist($company);
101
            $em->flush();
102
103
            return $this->redirectToRoute('admin_company_show', array('id' =>$company->getId()));
104
        }
105
106
        return array(
107
            'company' => $company,
108
            'form'   => $form->createView(),
109
        );
110
    }
111
112
    /**
113
     * Displays a form to edit an existing Company entity.
114
     *
115
     * @Route("/{id}/edit", name="admin_company_edit", requirements={"id"="\d+"})
116
     * @Method("GET")
117
     * @Template()
118
     */
119
    public function editAction(Company $company)
120
    {
121
        $editForm = $this->createForm(new CompanyType(), $company, array(
122
            'action' => $this->generateUrl('admin_company_update', array('id' => $company->getId())),
123
            'method' => 'PUT',
124
        ));
125
        $deleteForm = $this->createDeleteForm($company->getId(), 'admin_company_delete');
126
127
        return array(
128
            'company' => $company,
129
            'edit_form'   => $editForm->createView(),
130
            'delete_form' => $deleteForm->createView(),
131
        );
132
    }
133
134
    /**
135
     * Edits an existing Company entity.
136
     *
137
     * @Route("/{id}/update", name="admin_company_update", requirements={"id"="\d+"})
138
     * @Method("PUT")
139
     * @Template("AppBundle:Company:edit.html.twig")
140
     */
141
    public function updateAction(Company $company, Request $request)
142
    {
143
        $editForm = $this->createForm(new CompanyType(), $company, array(
144
            'action' => $this->generateUrl('admin_company_update', array('id' => $company->getId())),
145
            'method' => 'PUT',
146
        ));
147
        if ($editForm->handleRequest($request)->isValid()) {
148
            $this->getDoctrine()->getManager()->flush();
149
            $this->addFlash('info', 'gestock.settings.edit_ok');
150
151
            return $this->redirectToRoute('admin_company_show', array('id' => $company->getId()));
152
        }
153
        $deleteForm = $this->createDeleteForm($company->getId(), 'admin_company_delete');
154
155
        return array(
156
            'company' => $company,
157
            'edit_form'   => $editForm->createView(),
158
            'delete_form' => $deleteForm->createView(),
159
        );
160
    }
161
162
    /**
163
     * Deletes a Company entity.
164
     *
165
     * @Route("/{id}/delete", name="admin_company_delete", requirements={"id"="\d+"})
166
     * @Method("DELETE")
167
     */
168
    public function deleteAction(Company $company, Request $request)
169
    {
170
        $form = $this->createDeleteForm($company->getId(), 'admin_company_delete');
171
        if ($form->handleRequest($request)->isValid()) {
172
            $em = $this->getDoctrine()->getManager();
173
            $em->remove($company);
174
            $em->flush();
175
        }
176
177
        return $this->redirectToRoute('admin_company');
178
    }
179
}
180