Completed
Pull Request — master (#145)
by Adrien
02:54
created

BadgeCompletionController::rejectAction()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 23
Code Lines 14

Duplication

Lines 23
Ratio 100 %

Importance

Changes 0
Metric Value
dl 23
loc 23
rs 9.0856
c 0
b 0
f 0
cc 2
eloc 14
nc 2
nop 1
1
<?php
2
3
namespace Badger\Bundle\GameBundle\Controller;
4
5
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
6
use Symfony\Component\HttpFoundation\RedirectResponse;
7
use Symfony\Component\HttpFoundation\Response;
8
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
9
10
/**
11
 * @author  Adrien Pétremann <[email protected]>
12
 * @license http://opensource.org/licenses/MIT The MIT License (MIT)
13
 */
14 View Code Duplication
class BadgeCompletionController  extends Controller
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...
Coding Style introduced by
Expected 1 space after class name; 2 found
Loading history...
Coding Style introduced by
Expected 1 space before extends keyword; 2 found
Loading history...
15
{
16
    /**
17
     * Lists all pending badge completions.
18
     *
19
     * @return Response
20
     */
21
    public function indexAction()
22
    {
23
        $pendingCompletions = $this->get('badger.game.repository.badge_completion')
24
            ->findBy(['pending' => 1]);
25
26
        return $this->render('@Game/claimed-badges/index.html.twig', [
27
            'pendingCompletions' => $pendingCompletions
28
        ]);
29
    }
30
31
    /**
32
     * Reject a badge completion by removing it from the database.
33
     *
34
     * @param string $id
35
     *
36
     * @return RedirectResponse
37
     */
38
    public function rejectAction($id)
39
    {
40
        $pendingCompletion = $this->get('badger.game.repository.badge_completion')
41
            ->findOneBy(['id' => $id, 'pending' => 1]);
42
43
        if (null === $pendingCompletion) {
44
            throw new NotFoundHttpException(sprintf('No pending BadgeCompletion entity with id %s', $id));
45
        }
46
47
        $badgeTitle = $pendingCompletion->getBadge()->getTitle();
48
        $username = $pendingCompletion->getUser()->getUsername();
49
50
        $badgeCompletionRemover = $this->get('badger.game.remover.badge_completion');
51
        $badgeCompletionRemover->remove($pendingCompletion);
52
53
        $this->addFlash('notice', sprintf(
54
            'Successfully rejected the claimed badge "%s" for %s!',
55
            $badgeTitle,
56
            $username
57
        ));
58
59
        return $this->redirectToRoute('admin_claimed_badge_index');
60
    }
61
62
    /**
63
     * Accept a badge completion.
64
     *
65
     * @param string $id
66
     *
67
     * @return RedirectResponse
68
     */
69
    public function acceptAction($id)
70
    {
71
        $pendingCompletion = $this->get('badger.game.repository.badge_completion')
72
            ->findOneBy(['id' => $id, 'pending' => 1]);
73
74
        if (null === $pendingCompletion) {
75
            throw new NotFoundHttpException(sprintf('No pending BadgeCompletion entity with id %s', $id));
76
        }
77
78
        $user = $pendingCompletion->getUser();
79
        $badge = $pendingCompletion->getBadge();
80
81
        $pendingCompletion->setPending(false);
82
        $pendingCompletion->setCompletionDate(new \DateTime());
83
84
        $errors = $this->get('validator')->validate($pendingCompletion);
85
86
        if (0 === count($errors)) {
87
            $this->get('badger.game.saver.badge_completion')->save($pendingCompletion);
88
89
            $this->addFlash('notice', sprintf(
90
                '%s successfully unlocked the badge "%s"!',
91
                $user->getUsername(),
92
                $badge->getTitle()
93
            ));
94
        } else {
95
            $this->addFlash('error', (string) $errors);
96
        }
97
98
        return $this->redirectToRoute('admin_claimed_badge_index');
99
    }
100
101
    /**
102
     * Give a badge to a user directly by creating a completed badge completion.
103
     *
104
     * @return RedirectResponse
105
     */
106
    public function giveAction()
107
    {
108
109
    }
110
111
    /**
112
     * Remove a badge from a user by removing the badge completion.
113
     *
114
     * @return RedirectResponse
115
     */
116
    public function removeAction()
117
    {
118
119
    }
120
}
121