Completed
Push — master ( aa9a86...b91f6a )
by Nikola
05:15
created

ExchangeRate/Controller/CreateController.php (2 issues)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
/*
3
 * This file is part of the Exchange Rate Bundle, an RunOpenCode project.
4
 *
5
 * (c) 2017 RunOpenCode
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 */
10
namespace RunOpenCode\Bundle\ExchangeRate\Controller;
11
12
use RunOpenCode\Bundle\ExchangeRate\Form\FormType;
13
use RunOpenCode\Bundle\ExchangeRate\Security\AccessVoter;
14
use RunOpenCode\ExchangeRate\Contract\RateInterface;
15
use RunOpenCode\ExchangeRate\Model\Rate as ExchangeRate;
16
use RunOpenCode\Bundle\ExchangeRate\Form\Dto\Rate as DtoRate;
17
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
18
use Symfony\Component\Form\Form;
19
use Symfony\Component\Form\FormError;
20
use Symfony\Component\HttpFoundation\Request;
21
22
/**
23
 * Class CreateController
24
 *
25
 * @package RunOpenCode\Bundle\ExchangeRate\Controller
26
 */
27
class CreateController extends Controller
28
{
29
    /**
30
     * Main controller action
31
     *
32
     * @param Request $request
33
     *
34
     * @return \Symfony\Component\HttpFoundation\RedirectResponse|\Symfony\Component\HttpFoundation\Response
35
     */
36 6 View Code Duplication
    public function indexAction(Request $request)
0 ignored issues
show
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 6
        if (!$this->isGranted(AccessVoter::CREATE, RateInterface::class)) {
39 1
            throw $this->createAccessDeniedException();
40
        }
41
42 5
        $form = $this->getForm();
43
44 5
        if (true === $this->handleForm($form, $request)) {
45 1
            return $this->redirectAfterSuccess();
46
        }
47
48 5
        return $this->render('@ExchangeRate/create.html.twig', [
49 5
            'form' => $form->createView(),
50
        ]);
51
    }
52
53
    /**
54
     * Handle form submission.
55
     *
56
     * @param Form $form
57
     * @param Request $request
58
     *
59
     * @return bool TRUE if successful
60
     */
61 5
    protected function handleForm(Form $form, Request $request)
62
    {
63 5
        $form->handleRequest($request);
64
65 5
        if (!$form->isSubmitted()) {
66 4
            return false;
67
        }
68
69
        /**
70
         * @var ExchangeRate $rate
71
         */
72 4
        $rate = $form->getData()->toRate();
73
74 4
        if ($this->get('runopencode.exchange_rate.repository')->has($rate->getSourceName(), $rate->getCurrencyCode(), $rate->getDate(), $rate->getRateType())) {
75 1
            $form->addError(new FormError($this->get('translator')->trans('flash.create.error.exists', [], 'runopencode_exchange_rate'), 'flash.create.error.exits'));
76
        }
77
78 4 View Code Duplication
        if (!$form->isValid()) {
79 2
            $this->addFlash('error', $this->get('translator')->trans('flash.form.error', [], 'runopencode_exchange_rate'));
80 2
            return false;
81
        }
82
83 2
        return $this->save($rate);
84
    }
85
86
    /**
87
     * Get FQCN of FormType form.
88
     *
89
     * @return string
90
     */
91 5
    protected function getFormType()
92
    {
93 5
        return FormType::class;
94
    }
95
96
    /**
97
     * Get form.
98
     *
99
     * @return Form
100
     */
101 5
    protected function getForm()
102
    {
103 5
        return $this->createForm($this->getFormType(), new DtoRate(null, new \DateTime(), null, $this->getParameter('runopencode.exchange_rate.base_currency')));
104
    }
105
106
    /**
107
     * Save rate.
108
     *
109
     * @param RateInterface $rate
110
     *
111
     * @return TRUE if successful.
112
     */
113 2 View Code Duplication
    protected function save(RateInterface $rate)
0 ignored issues
show
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...
114
    {
115
        try {
116 2
            $this->get('runopencode.exchange_rate.repository')->save([$rate]);
117 1
            $this->addFlash('success', $this->get('translator')->trans('flash.create.success', [], 'runopencode_exchange_rate'));
118 1
            return true;
119 1
        } catch (\Exception $e) {
120 1
            $this->addFlash('error', $this->get('translator')->trans('flash.create.error.unknown', [], 'runopencode_exchange_rate'));
121 1
            return false;
122
        }
123
    }
124
125
    /**
126
     * Redirect after success.
127
     *
128
     * @return \Symfony\Component\HttpFoundation\RedirectResponse
129
     */
130 1
    protected function redirectAfterSuccess()
131
    {
132 1
        return $this->redirectToRoute('runopencode_exchange_rate_list');
133
    }
134
}
135