Completed
Push — 3.1 ( fde6df...37f3ef )
by Gordon
19:13 queued 03:03
created

PointsOfInterestLayerExtension::updateBasicMap()   B

Complexity

Conditions 7
Paths 9

Size

Total Lines 21
Code Lines 12

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 56
Metric Value
dl 0
loc 21
ccs 0
cts 0
cp 0
rs 7.551
cc 7
eloc 12
nc 9
nop 2
crap 56
1
<?php
2
3
class PointsOfInterestLayerExtension extends DataExtension
4
{
5
    public static $many_many = array(
6
        'PointsOfInterestLayers' => 'PointsOfInterestLayer',
7
    );
8
9
    public static $belongs_many_many_extraFields = array(
10
        'PointsOfInterestLayers' => array(
11
            'SortOrder' => 'Int',
12
        ),
13
    );
14
15
    /**
16
     * Update cms fields - add list of POIs.
17
     *
18
     * @param FieldList $fields list of existing fields on the object
19
     */
20 2
    public function updateCMSFields(FieldList $fields)
21
    {
22 2
        $gridConfig2 = GridFieldConfig_RelationEditor::create();
23 2
        $gridConfig2->getComponentByType(
0 ignored issues
show
Bug introduced by
It seems like you code against a concrete implementation and not the interface GridFieldComponent as the method setSearchFields() does only exist in the following implementations of said interface: GridFieldAddExistingAutocompleter.

Let’s take a look at an example:

interface User
{
    /** @return string */
    public function getPassword();
}

class MyUser implements User
{
    public function getPassword()
    {
        // return something
    }

    public function getDisplayName()
    {
        // return some name.
    }
}

class AuthSystem
{
    public function authenticate(User $user)
    {
        $this->logger->info(sprintf('Authenticating %s.', $user->getDisplayName()));
        // do something.
    }
}

In the above example, the authenticate() method works fine as long as you just pass instances of MyUser. However, if you now also want to pass a different implementation of User which does not have a getDisplayName() method, the code will break.

Available Fixes

  1. Change the type-hint for the parameter:

    class AuthSystem
    {
        public function authenticate(MyUser $user) { /* ... */ }
    }
    
  2. Add an additional type-check:

    class AuthSystem
    {
        public function authenticate(User $user)
        {
            if ($user instanceof MyUser) {
                $this->logger->info(/** ... */);
            }
    
            // or alternatively
            if ( ! $user instanceof MyUser) {
                throw new \LogicException(
                    '$user must be an instance of MyUser, '
                   .'other instances are not supported.'
                );
            }
    
        }
    }
    
Note: PHP Analyzer uses reverse abstract interpretation to narrow down the types inside the if block in such a case.
  1. Add the method to the interface:

    interface User
    {
        /** @return string */
        public function getPassword();
    
        /** @return string */
        public function getDisplayName();
    }
    
Loading history...
24 2
            'GridFieldAddExistingAutocompleter')->
25 2
            setSearchFields(array('Name')
26 2
        );
0 ignored issues
show
Coding Style introduced by
It seems like the identation of this line is off (expected at least 12 spaces, but found 8).
Loading history...
27 2
        $gridConfig2->getComponentByType('GridFieldPaginator')->setItemsPerPage(100);
0 ignored issues
show
Bug introduced by
It seems like you code against a concrete implementation and not the interface GridFieldComponent as the method setItemsPerPage() does only exist in the following implementations of said interface: GridFieldPaginator.

Let’s take a look at an example:

interface User
{
    /** @return string */
    public function getPassword();
}

class MyUser implements User
{
    public function getPassword()
    {
        // return something
    }

    public function getDisplayName()
    {
        // return some name.
    }
}

class AuthSystem
{
    public function authenticate(User $user)
    {
        $this->logger->info(sprintf('Authenticating %s.', $user->getDisplayName()));
        // do something.
    }
}

In the above example, the authenticate() method works fine as long as you just pass instances of MyUser. However, if you now also want to pass a different implementation of User which does not have a getDisplayName() method, the code will break.

Available Fixes

  1. Change the type-hint for the parameter:

    class AuthSystem
    {
        public function authenticate(MyUser $user) { /* ... */ }
    }
    
  2. Add an additional type-check:

    class AuthSystem
    {
        public function authenticate(User $user)
        {
            if ($user instanceof MyUser) {
                $this->logger->info(/** ... */);
            }
    
            // or alternatively
            if ( ! $user instanceof MyUser) {
                throw new \LogicException(
                    '$user must be an instance of MyUser, '
                   .'other instances are not supported.'
                );
            }
    
        }
    }
    
Note: PHP Analyzer uses reverse abstract interpretation to narrow down the types inside the if block in such a case.
  1. Add the method to the interface:

    interface User
    {
        /** @return string */
        public function getPassword();
    
        /** @return string */
        public function getDisplayName();
    }
    
Loading history...
28 2
        $gridField2 = new GridField('POI Layers', 'POI Layers:',
29 2
            $this->owner->PointsOfInterestLayers(),
30
            $gridConfig2
31 2
        );
32 2
        $fields->addFieldToTab('Root.MapLayers', $gridField2);
33 2
    }
34
35
    /**
36
     * Use extension point to add the markers
37
     * @param  MapAPI &$map reference to object representing the map
38
     * @param  $autozoom will be altered to true for autozoom, false not to
39
     */
40
    public function updateBasicMap(&$map, &$autozoom)
41
    {
42
        foreach($this->owner->PointsOfInterestLayers() as $layer) {
0 ignored issues
show
Coding Style introduced by
Expected 1 space after FOREACH keyword; 0 found
Loading history...
43
            $layericon = $layer->DefaultIcon();
44
            if ($layericon->ID === 0) {
45
                $layericon = null;
46
            }
47
            foreach ($layer->PointsOfInterest() as $poi) {
48
                if ($poi->MapPinEdited) {
49
                    if ($poi->MapPinIconID == 0 && $layericon) {
50
                        $poi->CachedMapPinURL = $layericon->getAbsoluteURL();
51
                    }
52
                    $map->addMarkerAsObject($poi);
53
54
                    // we have a point of interest, so turn on auto zoom
55
                    $autozoom = true;
56
                }
57
            }
58
        }
59
        $map->setClusterer(true);
60
    }
61
62
    /**
63
     * Only set has geo to true if layers exist
64
     * @param  boolean &$hasGeo will be set to true if any layers
65
     */
66
    public function updateHasGeo(&$hasGeo)
67
    {
68
        if ($this->owner->PointsOfInterestLayers()->count() > 0) {
69
            $hasGeo = true;
70
        }
71
    }
72
}
73