Issues (3099)

Security Analysis    not enabled

This project does not seem to handle request data directly as such no vulnerable execution paths were found.

  Cross-Site Scripting
Cross-Site Scripting enables an attacker to inject code into the response of a web-request that is viewed by other users. It can for example be used to bypass access controls, or even to take over other users' accounts.
  File Exposure
File Exposure allows an attacker to gain access to local files that he should not be able to access. These files can for example include database credentials, or other configuration files.
  File Manipulation
File Manipulation enables an attacker to write custom data to files. This potentially leads to injection of arbitrary code on the server.
  Object Injection
Object Injection enables an attacker to inject an object into PHP code, and can lead to arbitrary code execution, file exposure, or file manipulation attacks.
  Code Injection
Code Injection enables an attacker to execute arbitrary code on the server.
  Response Splitting
Response Splitting can be used to send arbitrary responses.
  File Inclusion
File Inclusion enables an attacker to inject custom files into PHP's file loading mechanism, either explicitly passed to include, or for example via PHP's auto-loading mechanism.
  Command Injection
Command Injection enables an attacker to inject a shell command that is execute with the privileges of the web-server. This can be used to expose sensitive data, or gain access of your server.
  SQL Injection
SQL Injection enables an attacker to execute arbitrary SQL code on your database server gaining access to user data, or manipulating user data.
  XPath Injection
XPath Injection enables an attacker to modify the parts of XML document that are read. If that XML document is for example used for authentication, this can lead to further vulnerabilities similar to SQL Injection.
  LDAP Injection
LDAP Injection enables an attacker to inject LDAP statements potentially granting permission to run unauthorized queries, or modify content inside the LDAP tree.
  Header Injection
  Other Vulnerability
This category comprises other attack vectors such as manipulating the PHP runtime, loading custom extensions, freezing the runtime, or similar.
  Regex Injection
Regex Injection enables an attacker to execute arbitrary code in your PHP process.
  XML Injection
XML Injection enables an attacker to read files on your local filesystem including configuration files, or can be abused to freeze your web-server process.
  Variable Injection
Variable Injection enables an attacker to overwrite program variables with custom data, and can lead to further vulnerabilities.
Unfortunately, the security analysis is currently not available for your project. If you are a non-commercial open-source project, please contact support to gain access.

NodeBundle/Helper/NodeAdmin/NodeAdminPublisher.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
namespace Kunstmaan\NodeBundle\Helper\NodeAdmin;
4
5
use Doctrine\ORM\EntityManager;
6
use Kunstmaan\AdminBundle\Entity\BaseUser;
7
use Kunstmaan\AdminBundle\Helper\CloneHelper;
8
use Kunstmaan\AdminBundle\Helper\Security\Acl\Permission\PermissionMap;
9
use Kunstmaan\NodeBundle\Entity\HasNodeInterface;
10
use Kunstmaan\NodeBundle\Entity\Node;
11
use Kunstmaan\NodeBundle\Entity\NodeTranslation;
12
use Kunstmaan\NodeBundle\Entity\NodeVersion;
13
use Kunstmaan\NodeBundle\Entity\QueuedNodeTranslationAction;
14
use Kunstmaan\NodeBundle\Event\Events;
15
use Kunstmaan\NodeBundle\Event\NodeEvent;
16
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
17
use Symfony\Component\EventDispatcher\LegacyEventDispatcherProxy;
18
use Symfony\Component\HttpFoundation\Request;
19
use Symfony\Component\HttpFoundation\Session\Session;
20
use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
21
use Symfony\Component\Security\Core\Authorization\AuthorizationCheckerInterface;
22
use Symfony\Component\Security\Core\Exception\AccessDeniedException;
23
use Symfony\Component\Translation\TranslatorInterface;
24
use Kunstmaan\AdminBundle\FlashMessages\FlashTypes;
25
26
class NodeAdminPublisher
27
{
28
    /**
29
     * @var EntityManager
30
     */
31
    private $em;
32
33
    /**
34
     * @var TokenStorageInterface
35
     */
36
    private $tokenStorage;
37
38
    /**
39
     * @var AuthorizationCheckerInterface
40
     */
41
    private $authorizationChecker;
42
43
    /**
44
     * @var EventDispatcherInterface
45
     */
46
    private $eventDispatcher;
47
48
    /**
49
     * @var CloneHelper
50
     */
51
    private $cloneHelper;
52
53
    /**
54
     * @param EntityManager                 $em                   The entity manager
55
     * @param TokenStorageInterface         $tokenStorage         The security token storage
56
     * @param AuthorizationCheckerInterface $authorizationChecker The security authorization checker
57
     * @param EventDispatcherInterface      $eventDispatcher      The Event dispatcher
58
     * @param CloneHelper                   $cloneHelper          The clone helper
59
     */
60 View Code Duplication
    public function __construct(
61
        EntityManager $em,
62
        TokenStorageInterface $tokenStorage,
63
        AuthorizationCheckerInterface $authorizationChecker,
64
        EventDispatcherInterface $eventDispatcher,
65
        CloneHelper $cloneHelper
66
    ) {
67
        $this->em = $em;
68
        $this->tokenStorage = $tokenStorage;
69
        $this->authorizationChecker = $authorizationChecker;
70
        $this->eventDispatcher = $eventDispatcher;
71
        $this->cloneHelper = $cloneHelper;
72
    }
73
74
    /**
75
     * If there is a draft version it'll try to publish the draft first. Makse snese because if you want to publish the public version you don't publish but you save.
76
     *
77
     * @param NodeTranslation $nodeTranslation
78
     * @param BaseUser|null   $user
79
     *
80
     *  @throws AccessDeniedException
81
     */
82
    public function publish(NodeTranslation $nodeTranslation, $user = null)
83
    {
84
        if (false === $this->authorizationChecker->isGranted(PermissionMap::PERMISSION_PUBLISH, $nodeTranslation->getNode())) {
85
            throw new AccessDeniedException();
86
        }
87
88
        if (\is_null($user)) {
89
            $user = $this->tokenStorage->getToken()->getUser();
90
        }
91
92
        $node = $nodeTranslation->getNode();
93
94
        $nodeVersion = $nodeTranslation->getNodeVersion('draft');
95
        if (!\is_null($nodeVersion)) {
96
            $page = $nodeVersion->getRef($this->em);
97
            /** @var NodeVersion $nodeVersion */
98
            $nodeVersion = $this->createPublicVersion($page, $nodeTranslation, $nodeVersion, $user);
99
            $nodeTranslation = $nodeVersion->getNodeTranslation();
100
        } else {
101
            $nodeVersion = $nodeTranslation->getPublicNodeVersion();
102
        }
103
104
        $page = $nodeVersion->getRef($this->em);
105
106
        $this->dispatch(
107
            new NodeEvent($node, $nodeTranslation, $nodeVersion, $page),
108
            Events::PRE_PUBLISH
109
        );
110
        $nodeTranslation
111
            ->setOnline(true)
112
            ->setPublicNodeVersion($nodeVersion)
113
            ->setUpdated(new \DateTime());
114
        $this->em->persist($nodeTranslation);
115
        $this->em->flush();
116
117
        // Remove scheduled task
118
        $this->unSchedulePublish($nodeTranslation);
119
120
        $this->dispatch(
121
            new NodeEvent($node, $nodeTranslation, $nodeVersion, $page),
122
            Events::POST_PUBLISH
123
        );
124
    }
125
126
    /**
127
     * @param NodeTranslation $nodeTranslation The NodeTranslation
128
     * @param \DateTime       $date            The date to publish
129
     *
130
     * @throws AccessDeniedException
131
     */
132 View Code Duplication
    public function publishLater(NodeTranslation $nodeTranslation, \DateTime $date)
133
    {
134
        $node = $nodeTranslation->getNode();
135
        if (false === $this->authorizationChecker->isGranted(PermissionMap::PERMISSION_PUBLISH, $node)) {
136
            throw new AccessDeniedException();
137
        }
138
139
        //remove existing first
140
        $this->unSchedulePublish($nodeTranslation);
141
142
        $user = $this->tokenStorage->getToken()->getUser();
143
        $queuedNodeTranslationAction = new QueuedNodeTranslationAction();
144
        $queuedNodeTranslationAction
145
            ->setNodeTranslation($nodeTranslation)
146
            ->setAction(QueuedNodeTranslationAction::ACTION_PUBLISH)
147
            ->setUser($user)
148
            ->setDate($date);
149
        $this->em->persist($queuedNodeTranslationAction);
150
        $this->em->flush();
151
    }
152
153
    /**
154
     * @param NodeTranslation $nodeTranslation
155
     *
156
     * @throws AccessDeniedException
157
     */
158
    public function unPublish(NodeTranslation $nodeTranslation)
159
    {
160
        if (false === $this->authorizationChecker->isGranted(PermissionMap::PERMISSION_UNPUBLISH, $nodeTranslation->getNode())) {
161
            throw new AccessDeniedException();
162
        }
163
164
        $node = $nodeTranslation->getNode();
165
        $nodeVersion = $nodeTranslation->getPublicNodeVersion();
166
        $page = $nodeVersion->getRef($this->em);
167
168
        $this->dispatch(
169
            new NodeEvent($node, $nodeTranslation, $nodeVersion, $page),
170
            Events::PRE_UNPUBLISH
171
        );
172
        $nodeTranslation->setOnline(false);
173
        $this->em->persist($nodeTranslation);
174
        $this->em->flush();
175
176
        // Remove scheduled task
177
        $this->unSchedulePublish($nodeTranslation);
178
179
        $this->dispatch(
180
            new NodeEvent($node, $nodeTranslation, $nodeVersion, $page),
181
            Events::POST_UNPUBLISH
182
        );
183
    }
184
185
    /**
186
     * @param NodeTranslation $nodeTranslation The NodeTranslation
187
     * @param \DateTime       $date            The date to unpublish
188
     *
189
     * @throws AccessDeniedException
190
     */
191 View Code Duplication
    public function unPublishLater(NodeTranslation $nodeTranslation, \DateTime $date)
192
    {
193
        $node = $nodeTranslation->getNode();
194
        if (false === $this->authorizationChecker->isGranted(PermissionMap::PERMISSION_UNPUBLISH, $node)) {
195
            throw new AccessDeniedException();
196
        }
197
198
        //remove existing first
199
        $this->unSchedulePublish($nodeTranslation);
200
        $user = $this->tokenStorage->getToken()->getUser();
201
        $queuedNodeTranslationAction = new QueuedNodeTranslationAction();
202
        $queuedNodeTranslationAction
203
            ->setNodeTranslation($nodeTranslation)
204
            ->setAction(QueuedNodeTranslationAction::ACTION_UNPUBLISH)
205
            ->setUser($user)
206
            ->setDate($date);
207
        $this->em->persist($queuedNodeTranslationAction);
208
        $this->em->flush();
209
    }
210
211
    /**
212
     * @param NodeTranslation $nodeTranslation
213
     */
214
    public function unSchedulePublish(NodeTranslation $nodeTranslation)
215
    {
216
        /* @var Node $node */
217
        $queuedNodeTranslationAction = $this->em->getRepository(QueuedNodeTranslationAction::class)
218
            ->findOneBy(array('nodeTranslation' => $nodeTranslation));
219
220
        if (!\is_null($queuedNodeTranslationAction)) {
221
            $this->em->remove($queuedNodeTranslationAction);
222
            $this->em->flush();
223
        }
224
    }
225
226
    /**
227
     * This shouldn't be here either but it's an improvement.
228
     *
229
     * @param HasNodeInterface $page            The page
230
     * @param NodeTranslation  $nodeTranslation The node translation
231
     * @param NodeVersion      $nodeVersion     The node version
232
     * @param BaseUser         $user            The user
233
     *
234
     * @return mixed
235
     */
236
    public function createPublicVersion(
237
        HasNodeInterface $page,
238
        NodeTranslation $nodeTranslation,
239
        NodeVersion $nodeVersion,
240
        BaseUser $user
241
    ) {
242
        $newPublicPage = $this->cloneHelper->deepCloneAndSave($page);
243
        $newNodeVersion = $this->em->getRepository(NodeVersion::class)->createNodeVersionFor(
244
            $newPublicPage,
245
            $nodeTranslation,
246
            $user,
247
            $nodeVersion
248
        );
249
250
        $newNodeVersion
251
            ->setOwner($nodeVersion->getOwner())
252
            ->setUpdated($nodeVersion->getUpdated())
253
            ->setCreated($nodeVersion->getCreated());
254
255
        $nodeVersion
256
            ->setOwner($user)
257
            ->setCreated(new \DateTime())
258
            ->setOrigin($newNodeVersion);
259
260
        $this->em->persist($newNodeVersion);
261
        $this->em->persist($nodeVersion);
262
        $this->em->persist($nodeTranslation);
263
        $this->em->flush();
264
        $this->dispatch(
265
            new NodeEvent($nodeTranslation->getNode(), $nodeTranslation, $nodeVersion, $newPublicPage),
266
            Events::CREATE_PUBLIC_VERSION
267
        );
268
269
        return $newNodeVersion;
270
    }
271
272
    /**
273
     * @param Request         $request
274
     * @param NodeTranslation $nodeTranslation
275
     */
276 View Code Duplication
    public function chooseHowToPublish(Request $request, NodeTranslation $nodeTranslation, TranslatorInterface $translator)
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...
277
    {
278
        /** @var Session $session */
279
        $session = $request->getSession();
280
281
        if ($request->request->has('publish_later') && $request->get('pub_date')) {
282
            $date = new \DateTime(
283
                $request->get('pub_date') . ' ' . $request->get('pub_time')
284
            );
285
            $this->publishLater($nodeTranslation, $date);
286
            $session->getFlashBag()->add(
287
                FlashTypes::SUCCESS,
288
                $translator->trans('kuma_node.admin.publish.flash.success_scheduled')
289
            );
290
        } else {
291
            $this->publish($nodeTranslation);
292
            $session->getFlashBag()->add(
293
                FlashTypes::SUCCESS,
294
                $translator->trans('kuma_node.admin.publish.flash.success_published')
295
            );
296
        }
297
    }
298
299
    /**
300
     * @param Request         $request
301
     * @param NodeTranslation $nodeTranslation
302
     */
303 View Code Duplication
    public function chooseHowToUnpublish(Request $request, NodeTranslation $nodeTranslation, TranslatorInterface $translator)
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...
304
    {
305
        /** @var Session $session */
306
        $session = $request->getSession();
307
308
        if ($request->request->has('unpublish_later') && $request->get('unpub_date')) {
309
            $date = new \DateTime($request->get('unpub_date') . ' ' . $request->get('unpub_time'));
310
            $this->unPublishLater($nodeTranslation, $date);
311
            $session->getFlashBag()->add(
312
                FlashTypes::SUCCESS,
313
                $translator->trans('kuma_node.admin.unpublish.flash.success_scheduled')
314
            );
315
        } else {
316
            $this->unPublish($nodeTranslation);
317
            $session->getFlashBag()->add(
318
                FlashTypes::SUCCESS,
319
                $translator->trans('kuma_node.admin.unpublish.flash.success_unpublished')
320
            );
321
        }
322
    }
323
324
    /**
325
     * @param object $event
326
     * @param string $eventName
327
     *
328
     * @return object
329
     */
330 View Code Duplication
    private function dispatch($event, string $eventName)
331
    {
332
        if (class_exists(LegacyEventDispatcherProxy::class)) {
333
            $eventDispatcher = LegacyEventDispatcherProxy::decorate($this->eventDispatcher);
334
335
            return $eventDispatcher->dispatch($event, $eventName);
336
        }
337
338
        return $this->eventDispatcher->dispatch($eventName, $event);
339
    }
340
}
341