Completed
Pull Request — master (#119)
by Franco
02:11
created

DMSDocumentSet   C

Complexity

Total Complexity 17

Size/Duplication

Total Lines 251
Duplicated Lines 0 %

Coupling/Cohesion

Components 2
Dependencies 28

Importance

Changes 0
Metric Value
wmc 17
lcom 2
cbo 28
dl 0
loc 251
rs 5
c 0
b 0
f 0

6 Methods

Rating   Name   Duplication   Size   Complexity  
A getDocuments() 0 6 1
B getCMSFields() 0 90 5
A addRequirements() 0 12 1
B addQueryFields() 0 31 3
A onBeforeWrite() 0 6 1
B saveLinkedDocuments() 0 32 6
1
<?php
2
/**
3
 * A document set is attached to Pages, and contains many DMSDocuments
4
 *
5
 * @property Varchar Title
6
 * @property  Text KeyValuePairs
7
 * @property  Enum SortBy
8
 * @property Enum SortByDirection
9
 */
10
class DMSDocumentSet extends DataObject
0 ignored issues
show
Coding Style Compatibility introduced by
PSR1 recommends that each class must be in a namespace of at least one level to avoid collisions.

You can fix this by adding a namespace to your class:

namespace YourVendor;

class YourClass { }

When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.

Loading history...
11
{
12
13
    private static $db = array(
0 ignored issues
show
Comprehensibility introduced by
Consider using a different property name as you override a private property of the parent class.
Loading history...
Unused Code introduced by
The property $db is not used and could be removed.

This check marks private properties in classes that are never used. Those properties can be removed.

Loading history...
14
        'Title' => 'Varchar(255)',
15
        'KeyValuePairs' => 'Text',
16
        'SortBy' => "Enum('LastEdited,Created,Title')')",
17
        'SortByDirection' => "Enum('DESC,ASC')')",
18
    );
19
20
    private static $has_one = array(
0 ignored issues
show
Comprehensibility introduced by
Consider using a different property name as you override a private property of the parent class.
Loading history...
Unused Code introduced by
The property $has_one is not used and could be removed.

This check marks private properties in classes that are never used. Those properties can be removed.

Loading history...
21
        'Page' => 'SiteTree',
22
    );
23
24
    private static $many_many = array(
0 ignored issues
show
Comprehensibility introduced by
Consider using a different property name as you override a private property of the parent class.
Loading history...
Unused Code introduced by
The property $many_many is not used and could be removed.

This check marks private properties in classes that are never used. Those properties can be removed.

Loading history...
25
        'Documents' => 'DMSDocument',
26
    );
27
28
    private static $many_many_extraFields = array(
0 ignored issues
show
Comprehensibility introduced by
Consider using a different property name as you override a private property of the parent class.
Loading history...
Unused Code introduced by
The property $many_many_extraFields is not used and could be removed.

This check marks private properties in classes that are never used. Those properties can be removed.

Loading history...
29
        'Documents' => array(
30
            'BelongsToSet' => 'Boolean(1)',// Whether or not this is a set or a Query Builder document
31
        ),
32
    );
33
34
    /**
35
     * Retrieve a list of the documents in this set. An extension hook is provided before the result is returned.
36
     *
37
     * You can attach an extension to this event:
38
     *
39
     * <code>
40
     * public function updateDocuments($document)
41
     * {
42
     *     // do something
43
     * }
44
     * </code>
45
     *
46
     * @return DataList|null
47
     */
48
    public function getDocuments()
49
    {
50
        $documents = $this->Documents();
0 ignored issues
show
Bug introduced by
The method Documents() does not exist on DMSDocumentSet. Did you maybe mean getDocuments()?

This check marks calls to methods that do not seem to exist on an object.

This is most likely the result of a method being renamed without all references to it being renamed likewise.

Loading history...
51
        $this->extend('updateDocuments', $documents);
52
        return $documents;
53
    }
54
55
    /**
56
     * Put the "documents" list into the main tab instead of its own tab, and replace the default "Add Document" button
57
     * with a customised button for DMS documents
58
     *
59
     * @return FieldList
60
     */
61
    public function getCMSFields()
62
    {
63
        // PHP 5.3 only
64
        $self = $this;
65
        $this->beforeUpdateCMSFields(function (FieldList $fields) use ($self) {
66
            $fields->removeFieldsFromTab(
67
                'Root.Main',
68
                array('KeyValuePairs', 'SortBy', 'SortByDirection')
69
            );
70
            // Don't put the GridField for documents in until the set has been created
71
            if (!$self->isInDB()) {
72
                $fields->addFieldToTab(
73
                    'Root.Main',
74
                    LiteralField::create(
75
                        'GridFieldNotice',
76
                        '<p class="message warning">' . _t(
77
                            'DMSDocumentSet.GRIDFIELD_NOTICE',
78
                            'Managing documents will be available once you have created this document set.'
79
                        ) . '</p>'
80
                    ),
81
                    'Title'
82
                );
83
            } else {
84
                // Document listing
85
                $gridFieldConfig = GridFieldConfig::create()
86
                    ->addComponents(
87
                        new GridFieldToolbarHeader(),
88
                        new GridFieldFilterHeader(),
89
                        new GridFieldSortableHeader(),
90
                        // new GridFieldOrderableRows('DocumentSort'),
0 ignored issues
show
Unused Code Comprehensibility introduced by
63% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
91
                        new GridFieldDataColumns(),
92
                        new GridFieldEditButton(),
93
                        // Special delete dialog to handle custom behaviour of unlinking and deleting
94
                        new DMSGridFieldDeleteAction(),
95
                        new GridFieldDetailForm()
96
                    );
97
98
                if (class_exists('GridFieldPaginatorWithShowAll')) {
99
                    $paginatorComponent = new GridFieldPaginatorWithShowAll(15);
100
                } else {
101
                    $paginatorComponent = new GridFieldPaginator(15);
102
                }
103
                $gridFieldConfig->addComponent($paginatorComponent);
104
105
                if (class_exists('GridFieldSortableRows')) {
106
                    $sortableComponent = new GridFieldSortableRows('DocumentSort');
107
                    // setUsePagenation method removed from newer version of SortableGridField.
108
                    if (method_exists($sortableComponent, 'setUsePagination')) {
109
                        $sortableComponent->setUsePagination(false)->setForceRedraw(true);
110
                    }
111
                    $gridFieldConfig->addComponent($sortableComponent);
112
                }
113
114
                // HACK: Create a singleton of DMSDocument to ensure extensions are applied before we try to get display fields.
115
                singleton('DMSDocument');
116
                $gridFieldConfig->getComponentByType('GridFieldDataColumns')
0 ignored issues
show
Bug introduced by
It seems like you code against a concrete implementation and not the interface GridFieldComponent as the method setDisplayFields() does only exist in the following implementations of said interface: GridFieldDataColumns, GridFieldEditableColumns, GridFieldExternalLink.

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...
117
                    ->setDisplayFields(Config::inst()->get('DMSDocument', 'display_fields'))
118
                    ->setFieldCasting(array('LastEdited' => 'Datetime->Ago'))
119
                    ->setFieldFormatting(
120
                        array(
121
                            'FilenameWithoutID' => '<a target=\'_blank\' class=\'file-url\' href=\'$Link\'>$FilenameWithoutID</a>',
122
                        )
123
                    );
124
125
                // Override delete functionality with this class
126
                $gridFieldConfig->getComponentByType('GridFieldDetailForm')
0 ignored issues
show
Bug introduced by
It seems like you code against a concrete implementation and not the interface GridFieldComponent as the method setItemRequestClass() does only exist in the following implementations of said interface: GridFieldAddNewMultiClass, GridFieldDetailForm.

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...
127
                    ->setItemRequestClass('DMSGridFieldDetailForm_ItemRequest');
128
                $gridField = GridField::create(
129
                    'Documents',
130
                    false,
131
                    $self->Documents(),
0 ignored issues
show
Bug introduced by
The method Documents() does not exist on DMSDocumentSet. Did you maybe mean getDocuments()?

This check marks calls to methods that do not seem to exist on an object.

This is most likely the result of a method being renamed without all references to it being renamed likewise.

Loading history...
132
                    $gridFieldConfig
133
                );
134
                $gridField->setModelClass('DMSDocument');
135
                $gridField->addExtraClass('documents');
136
137
                $gridFieldConfig->addComponent(
138
                    $addNewButton = new DMSGridFieldAddNewButton,
139
                    'GridFieldExportButton'
140
                );
141
                $addNewButton->setDocumentSetId($self->ID);
142
143
                $fields->removeByName('Documents');
144
                $fields->addFieldToTab('Root.Main', $gridField);
145
                $self->addQueryFields($fields);
146
            }
147
        });
148
        $this->addRequirements();
149
        return parent::getCMSFields();
150
    }
151
152
    /**
153
     * Add required CSS and Javascript requirements for managing documents
154
     *
155
     * @return $this
156
     */
157
    protected function addRequirements()
158
    {
159
        // Javascript to customize the grid field for the DMS document (overriding entwine
160
        // in FRAMEWORK_DIR.'/javascript/GridField.js'
161
        Requirements::javascript(DMS_DIR . '/javascript/DMSGridField.js');
162
        Requirements::css(DMS_DIR . '/dist/css/dmsbundle.css');
163
164
        // Javascript for the link editor pop-up in TinyMCE
165
        Requirements::javascript(DMS_DIR . '/javascript/DocumentHtmlEditorFieldToolbar.js');
166
167
        return $this;
168
    }
169
170
    /**
171
     * Adds the query fields to build the document logic to the DMSDocumentSet.
172
     *
173
     * To extend use the following from within an Extension subclass:
174
     *
175
     * <code>
176
     * public function updateQueryFields($result)
177
     * {
178
     *     // Do something here
179
     * }
180
     * </code>
181
     *
182
     * @param FieldList $fields
183
     */
184
    public function addQueryFields($fields)
185
    {
186
        /** @var DMSDocument $doc */
187
        $doc = singleton('DMSDocument');
188
        /** @var FormField $field */
189
        $dmsDocFields = $doc->scaffoldSearchFields(array('fieldClasses' => true));
190
        $membersMap = Member::get()->map('ID', 'Name')->toArray();
191
        asort($membersMap);
192
        foreach ($dmsDocFields as $field) {
193
            // Apply field customisations where necessary
194
            if (in_array($field->getName(), array('CreatedByID', 'LastEditedByID', 'LastEditedByID'))) {
195
                /** @var ListboxField $field */
196
                $field->setMultiple(true)->setSource($membersMap);
197
            }
198
        }
199
        $keyValPairs = new JsonField('KeyValuePairs', $dmsDocFields->toArray());
200
201
        // Now lastly add the sort fields
202
        $sortedBy = new FieldGroup('SortedBy', array(
203
                new DropdownField('SortBy', '', array(
204
                    'LastEdited'  => 'Last changed',
205
                    'Created'     => 'Created',
206
                    'Title'       => 'Document title',
207
                ), 'LastEdited'),
208
                new DropdownField('SortByDirection', '', $this->dbObject('SortByDirection')->enumValues(), 'DESC'),
209
            ));
210
211
        $sortedBy->setTitle("Sort the document set by:");
212
        $fields->addFieldsToTab('Root.QueryBuilder', array($keyValPairs, $sortedBy));
213
        $this->extend('updateQueryFields', $fields);
214
    }
215
216
    public function onBeforeWrite()
217
    {
218
        parent::onBeforeWrite();
219
220
        $this->saveLinkedDocuments();
221
    }
222
223
    /**
224
     * Retrieve a list of the documents in this set. An extension hook is provided before the result is returned.
225
     *
226
     * @return ArrayList|null
227
     */
228
    public function saveLinkedDocuments()
229
    {
230
        // Documents that belong to just this set.
231
        /** @var ManyManyList $originals */
232
        $originals = $this->Documents();
0 ignored issues
show
Bug introduced by
The method Documents() does not exist on DMSDocumentSet. Did you maybe mean getDocuments()?

This check marks calls to methods that do not seem to exist on an object.

This is most likely the result of a method being renamed without all references to it being renamed likewise.

Loading history...
233
        if (!(empty($this->KeyValuePairs)) && $this->isChanged('KeyValuePairs')) {
234
            $keyValuesPair = Convert::json2array($this->KeyValuePairs);
235
            /** @var DMSDocument $dmsDoc */
236
            $dmsDoc = singleton('DMSDocument');
237
            $context = $dmsDoc->getDefaultSearchContext();
238
239
            $sortBy = $this->SortBy ? $this->SortBy : 'LastEdited';
240
            $sortByDirection = $this->SortByDirection ? $this->SortByDirection : 'DESC';
241
            $sortedBy = sprintf('%s %s', $sortBy, $sortByDirection);
242
            /** @var DataList $documents */
243
            $documents = $context->getResults($keyValuesPair, $sortedBy);
0 ignored issues
show
Bug introduced by
It seems like $keyValuesPair defined by \Convert::json2array($this->KeyValuePairs) on line 234 can also be of type boolean; however, SearchContext::getResults() does only seem to accept array, maybe add an additional type check?

If a method or function can return multiple different values and unless you are sure that you only can receive a single value in this context, we recommend to add an additional type check:

/**
 * @return array|string
 */
function returnsDifferentValues($x) {
    if ($x) {
        return 'foo';
    }

    return array();
}

$x = returnsDifferentValues($y);
if (is_array($x)) {
    // $x is an array.
}

If this a common case that PHP Analyzer should handle natively, please let us know by opening an issue.

Loading history...
244
            $now = SS_Datetime::now()->Rfc2822();
245
            $documents = $documents->where(
246
                "\"EmbargoedIndefinitely\" = 0 AND ".
247
                " \"EmbargoedUntilPublished\" = 0 AND ".
248
                "(\"EmbargoedUntilDate\" IS NULL OR " .
249
                "(\"EmbargoedUntilDate\" IS NOT NULL AND '{$now}' >= \"EmbargoedUntilDate\")) AND " .
250
                "\"ExpireAtDate\" IS NULL OR (\"ExpireAtDate\" IS NOT NULL AND '{$now}' < \"ExpireAtDate\")"
251
            );
252
253
            // Remove all BelongsToSet as the rules have changed
254
            $originals->removeByFilter('"BelongsToSet" = 0');
255
            foreach ($documents as $document) {
256
                $originals->add($document, array('BelongsToSet' => 0));
257
            }
258
        }
259
    }
260
}
261