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.

PagePartBundle/PagePartAdmin/PagePartAdmin.php (1 issue)

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\PagePartBundle\PagePartAdmin;
4
5
use Doctrine\ORM\EntityManager;
6
use Doctrine\ORM\EntityManagerInterface;
7
use Kunstmaan\AdminBundle\Entity\EntityInterface;
8
use Kunstmaan\PagePartBundle\Entity\PagePartRef;
9
use Kunstmaan\PagePartBundle\Event\Events;
10
use Kunstmaan\PagePartBundle\Event\PagePartEvent;
11
use Kunstmaan\PagePartBundle\Helper\HasPagePartsInterface;
12
use Kunstmaan\PagePartBundle\Helper\PagePartInterface;
13
use Kunstmaan\PagePartBundle\Repository\PagePartRefRepository;
14
use Kunstmaan\UtilitiesBundle\Helper\ClassLookup;
15
use Symfony\Component\DependencyInjection\ContainerInterface;
16
use Symfony\Component\EventDispatcher\LegacyEventDispatcherProxy;
17
use Symfony\Component\Form\FormBuilderInterface;
18
use Symfony\Component\HttpFoundation\Request;
19
20
/**
21
 * PagePartAdmin
22
 */
23
class PagePartAdmin
24
{
25
    /**
26
     * @var PagePartAdminConfiguratorInterface
27
     */
28
    protected $configurator;
29
30
    /**
31
     * @var EntityManager|EntityManagerInterface
32
     */
33
    protected $em;
34
35
    /**
36
     * @var HasPagePartsInterface
37
     */
38
    protected $page;
39
40
    /**
41
     * @var string
42
     */
43
    protected $context;
44
45
    /**
46
     * @var ContainerInterface
47
     */
48
    protected $container;
49
50
    /**
51
     * @var PagePartInterface[]
52
     */
53
    protected $pageParts = array();
54
55
    /**
56
     * @var PagePartRef[]
57
     */
58
    protected $pagePartRefs = array();
59
60
    /**
61
     * @var PagePartInterface[]
62
     */
63
    protected $newPageParts = array();
64
65
    /**
66
     * @param PagePartAdminConfiguratorInterface $configurator The configurator
67
     * @param EntityManagerInterface             $em           The entity manager
68
     * @param HasPagePartsInterface              $page         The page
69
     * @param string|null                        $context      The context
70
     * @param ContainerInterface|null            $container    The container
71
     *
72
     * @throws \InvalidArgumentException
73
     */
74
    public function __construct(PagePartAdminConfiguratorInterface $configurator, EntityManagerInterface $em, HasPagePartsInterface $page, $context = null, ContainerInterface $container = null)
75
    {
76
        if (!($page instanceof EntityInterface)) {
77
            throw new \InvalidArgumentException('Page must be an instance of EntityInterface.');
78
        }
79
80
        $this->configurator = $configurator;
81
        $this->em = $em;
82
        $this->page = $page;
83
        $this->container = $container;
84
85
        if ($context) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $context of type string|null is loosely compared to true; this is ambiguous if the string can be empty. You might want to explicitly use !== null instead.

In PHP, under loose comparison (like ==, or !=, or switch conditions), values of different types might be equal.

For string values, the empty string '' is a special case, in particular the following results might be unexpected:

''   == false // true
''   == null  // true
'ab' == false // false
'ab' == null  // false

// It is often better to use strict comparison
'' === false // false
'' === null  // false
Loading history...
86
            $this->context = $context;
87
        } elseif ($this->configurator->getContext()) {
88
            $this->context = $this->configurator->getContext();
89
        } else {
90
            $this->context = 'main';
91
        }
92
93
        $this->initializePageParts();
94
    }
95
96
    /**
97
     * Get all pageparts from the database, and store them.
98
     */
99
    private function initializePageParts()
100
    {
101
        // Get all the pagepartrefs
102
        /** @var PagePartRefRepository $ppRefRepo */
103
        $ppRefRepo = $this->em->getRepository(PagePartRef::class);
104
        $ppRefs = $ppRefRepo->getPagePartRefs($this->page, $this->context);
105
106
        // Group pagepartrefs per type
107
        $types = array();
108
        foreach ($ppRefs as $pagePartRef) {
109
            $types[$pagePartRef->getPagePartEntityname()][] = $pagePartRef->getPagePartId();
110
            $this->pagePartRefs[$pagePartRef->getId()] = $pagePartRef;
111
        }
112
113
        // Fetch all the pageparts (only one query per pagepart type)
114
        /** @var EntityInterface[] $pageParts */
115
        $pageParts = array();
116 View Code Duplication
        foreach ($types as $classname => $ids) {
117
            $result = $this->em->getRepository($classname)->findBy(array('id' => $ids));
118
            $pageParts = array_merge($pageParts, $result);
119
        }
120
121
        // Link the pagepartref to the pagepart
122
        foreach ($this->pagePartRefs as $pagePartRef) {
123
            foreach ($pageParts as $key => $pagePart) {
124
                if (ClassLookup::getClass($pagePart) == $pagePartRef->getPagePartEntityname()
125
                    && $pagePart->getId() == $pagePartRef->getPagePartId()
126
                ) {
127
                    $this->pageParts[$pagePartRef->getId()] = $pagePart;
128
                    unset($pageParts[$key]);
129
130
                    break;
131
                }
132
            }
133
        }
134
    }
135
136
    /**
137
     * @return EntityInterface
138
     */
139
    public function getPage()
140
    {
141
        return $this->page;
142
    }
143
144
    /**
145
     * @param Request $request
146
     */
147
    public function preBindRequest(Request $request)
148
    {
149
        // Fetch all sub-entities that should be removed
150
        $subPagePartsToDelete = array();
151
        foreach (array_keys($request->request->all()) as $key) {
152
            // Example value: delete_pagepartadmin_74_tags_3
153
            if (preg_match('/^delete_pagepartadmin_(\\d+)_(\\w+)_(\\d+)$/i', $key, $matches)) {
154
                $subPagePartsToDelete[$matches[1]][] = array('name' => $matches[2], 'id' => $matches[3]);
155
            }
156
        }
157
158
        $doFlush = false;
159
        foreach ($this->pagePartRefs as $pagePartRef) {
160
            // Remove pageparts
161
            if ('true' == $request->get($pagePartRef->getId().'_deleted')) {
162
                $pagePart = $this->pageParts[$pagePartRef->getId()];
163
                $this->em->remove($pagePart);
164
                $this->em->remove($pagePartRef);
165
166
                unset($this->pageParts[$pagePartRef->getId()], $this->pagePartRefs[$pagePartRef->getId()]);
167
                $doFlush = true;
168
            }
169
170
            // Remove sub-entities from pageparts
171
            if (\array_key_exists($pagePartRef->getId(), $subPagePartsToDelete)) {
172
                $pagePart = $this->pageParts[$pagePartRef->getId()];
173
                foreach ($subPagePartsToDelete[$pagePartRef->getId()] as $deleteInfo) {
174
                    /** @var EntityInterface[] $objects */
175
                    $objects = \call_user_func(array($pagePart, 'get'.ucfirst($deleteInfo['name'])));
176
177
                    foreach ($objects as $object) {
178
                        if ($object->getId() == $deleteInfo['id']) {
179
                            $this->em->remove($object);
180
                            $doFlush = true;
181
                        }
182
                    }
183
                }
184
            }
185
        }
186
187
        if ($doFlush) {
188
            $this->em->flush();
189
        }
190
191
        // Create the objects for the new pageparts
192
        $this->newPageParts = array();
193
        $newRefIds = $request->get($this->context.'_new');
194
195
        if (\is_array($newRefIds)) {
196
            foreach ($newRefIds as $newId) {
197
                $type = $request->get($this->context.'_type_'.$newId);
198
                $this->newPageParts[$newId] = new $type();
199
            }
200
        }
201
202
        // Sort pageparts again
203
        $sequences = $request->get($this->context.'_sequence');
204
        if (!\is_null($sequences)) {
205
            $tempPageparts = $this->pageParts;
206
            $this->pageParts = array();
207
            foreach ($sequences as $sequence) {
208
                if (\array_key_exists($sequence, $this->newPageParts)) {
209
                    $this->pageParts[$sequence] = $this->newPageParts[$sequence];
210
                } elseif (\array_key_exists($sequence, $tempPageparts)) {
211
                    $this->pageParts[$sequence] = $tempPageparts[$sequence];
212
                } else {
213
                    $this->pageParts[$sequence] = $this->getPagePart($sequence, array_search($sequence, $sequences) + 1);
214
                }
215
            }
216
217
            unset($tempPageparts);
218
        }
219
    }
220
221
    /**
222
     * @param Request $request
223
     */
224
    public function bindRequest(Request $request)
225
    {
226
    }
227
228
    /**
229
     * @param FormBuilderInterface $formbuilder
230
     */
231
    public function adaptForm(FormBuilderInterface $formbuilder)
232
    {
233
        $data = $formbuilder->getData();
234
235
        foreach ($this->pageParts as $pagePartRefId => $pagePart) {
236
            $data['pagepartadmin_' . $pagePartRefId] = $pagePart;
237
            $formbuilder->add('pagepartadmin_' . $pagePartRefId, $pagePart->getDefaultAdminType());
238
        }
239
240
        foreach ($this->newPageParts as $newPagePartRefId => $newPagePart) {
241
            $data['pagepartadmin_' . $newPagePartRefId] = $newPagePart;
242
            $formbuilder->add('pagepartadmin_' . $newPagePartRefId, $newPagePart->getDefaultAdminType());
243
        }
244
245
        $formbuilder->setData($data);
246
    }
247
248
    /**
249
     * @param Request $request
250
     */
251
    public function persist(Request $request)
252
    {
253
        /** @var PagePartRefRepository $ppRefRepo */
254
        $ppRefRepo = $this->em->getRepository(PagePartRef::class);
255
256
        // Add new pageparts on the correct position + Re-order and save pageparts if needed
257
        $sequences = $request->get($this->context.'_sequence', []);
258
        $sequencescount = \count($sequences);
259
        for ($i = 0; $i < $sequencescount; ++$i) {
260
            $pagePartRefId = $sequences[$i];
261
262
            if (\array_key_exists($pagePartRefId, $this->newPageParts)) {
263
                $pagePart = $this->newPageParts[$pagePartRefId];
264
                $this->em->persist($pagePart);
265
                $this->em->flush($pagePart);
266
267
                $ppRefRepo->addPagePart($this->page, $pagePart, $i + 1, $this->context, false);
268
            } elseif (\array_key_exists($pagePartRefId, $this->pagePartRefs)) {
269
                $pagePartRef = $this->pagePartRefs[$pagePartRefId];
270
                if ($pagePartRef instanceof PagePartRef && $pagePartRef->getSequencenumber() != ($i + 1)) {
271
                    $pagePartRef->setSequencenumber($i + 1);
272
                    $pagePartRef->setContext($this->context);
273
                    $this->em->persist($pagePartRef);
274
                }
275
                $pagePart = $pagePartRef->getPagePart($this->em);
276
            }
277
278
            if (isset($pagePart)) {
279
                $this->dispatch(new PagePartEvent($pagePart), Events::POST_PERSIST);
280
            }
281
        }
282
    }
283
284
    /**
285
     * @return string|null
286
     */
287
    public function getContext()
288
    {
289
        return $this->context;
290
    }
291
292
    /**
293
     * This getter returns an array holding info on page part types that can be added to the page.
294
     * The types are filtererd here, based on the amount of page parts of a certain type that can be added to the page.
295
     *
296
     * @return array
297
     */
298
    public function getPossiblePagePartTypes()
299
    {
300
        $possiblePPTypes = $this->configurator->getPossiblePagePartTypes();
301
        $result = array();
302
303
        // filter page part types that can only be added x times to the page context.
304
        // to achieve this, provide a 'pagelimit' parameter when adding the pp type in your PagePartAdminConfiguration
305
        if (!empty($possiblePPTypes)) {
306
            foreach ($possiblePPTypes as $possibleTypeData) {
307
                if (\array_key_exists('pagelimit', $possibleTypeData)) {
308
                    $pageLimit = $possibleTypeData['pagelimit'];
309
                    /** @var PagePartRefRepository $entityRepository */
310
                    $entityRepository = $this->em->getRepository(PagePartRef::class);
311
                    $formPPCount = $entityRepository->countPagePartsOfType(
312
                        $this->page,
313
                        $possibleTypeData['class'],
314
                        $this->configurator->getContext()
315
                    );
316
                    if ($formPPCount < $pageLimit) {
317
                        $result[] = $possibleTypeData;
318
                    }
319
                } else {
320
                    $result[] = $possibleTypeData;
321
                }
322
            }
323
        }
324
325
        return $result;
326
    }
327
328
    /**
329
     * @return string
330
     */
331
    public function getName()
332
    {
333
        return $this->configurator->getName();
334
    }
335
336
    /**
337
     * @return array
338
     */
339
    public function getPagePartMap()
340
    {
341
        return $this->pageParts;
342
    }
343
344
    /**
345
     * @param PagePartInterface $pagepart
346
     *
347
     * @return string
348
     */
349
    public function getType(PagePartInterface $pagepart)
350
    {
351
        $possiblePagePartTypes = $this->configurator->getPossiblePagePartTypes();
352
        foreach ($possiblePagePartTypes as &$pageparttype) {
353
            if ($pageparttype['class'] == ClassLookup::getClass($pagepart)) {
354
                return $pageparttype['name'];
355
            }
356
        }
357
358
        return 'no name';
359
    }
360
361
    /**
362
     * @param int $id
363
     * @param int $sequenceNumber
364
     *
365
     * @return PagePartInterface
366
     */
367
    public function getPagePart($id, $sequenceNumber)
368
    {
369
        /** @var PagePartRefRepository $ppRefRepo */
370
        $ppRefRepo = $this->em->getRepository(PagePartRef::class);
371
372
        return $ppRefRepo->getPagePart($id, $this->context, $sequenceNumber);
373
    }
374
375
    /**
376
     * @param object $pagepart
377
     *
378
     * @return string
379
     */
380
    public function getClassName($pagepart)
381
    {
382
        return \get_class($pagepart);
383
    }
384
385
    /**
386
     * @param object $event
387
     * @param string $eventName
388
     *
389
     * @return object
390
     */
391 View Code Duplication
    private function dispatch($event, string $eventName)
392
    {
393
        $eventDispatcher = $this->container->get('event_dispatcher');
394
        if (class_exists(LegacyEventDispatcherProxy::class)) {
395
            $eventDispatcher = LegacyEventDispatcherProxy::decorate($eventDispatcher);
396
397
            return $eventDispatcher->dispatch($event, $eventName);
398
        }
399
400
        return $eventDispatcher->dispatch($eventName, $event);
401
    }
402
}
403