| 1 |  |  | <?php | 
            
                                                                                                            
                            
            
                                    
            
            
                | 2 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 3 |  |  | declare(strict_types=1); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 4 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 5 |  |  | /* | 
            
                                                                                                            
                            
            
                                    
            
            
                | 6 |  |  |  * This file is part of the Sonata Project package. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 7 |  |  |  * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 8 |  |  |  * (c) Thomas Rabaix <[email protected]> | 
            
                                                                                                            
                            
            
                                    
            
            
                | 9 |  |  |  * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 10 |  |  |  * For the full copyright and license information, please view the LICENSE | 
            
                                                                                                            
                            
            
                                    
            
            
                | 11 |  |  |  * file that was distributed with this source code. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 12 |  |  |  */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 13 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 14 |  |  | namespace Sonata\DoctrinePHPCRAdminBundle\Filter; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 15 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 16 |  |  | use Sonata\AdminBundle\Datagrid\ProxyQueryInterface; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 17 |  |  | use Sonata\AdminBundle\Form\Type\Filter\DateType; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 18 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 19 |  |  | class DateFilter extends Filter | 
            
                                                                                                            
                            
            
                                    
            
            
                | 20 |  |  | { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 21 |  |  |     /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 22 |  |  |      * {@inheritdoc} | 
            
                                                                                                            
                            
            
                                    
            
            
                | 23 |  |  |      */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 24 |  |  |     public function filter(ProxyQueryInterface $proxyQuery, $alias, $field, $data) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 25 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 26 |  |  |         if (!$data || !\is_array($data) || !isset($data['value'])) { | 
                            
                    |  |  |  | 
                                                                                        
                                                                                     | 
            
                                                                                                            
                            
            
                                    
            
            
                | 27 |  |  |             return; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 28 |  |  |         } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 29 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 30 |  |  |         $data['type'] = $data['type'] ?? DateType::TYPE_EQUAL; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 31 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 32 |  |  |         $where = $this->getWhere($proxyQuery); | 
                            
                    |  |  |  | 
                                                                                        
                                                                                     | 
            
                                                                                                            
                            
            
                                    
            
            
                | 33 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 34 |  |  |         $from = $data['value']; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 35 |  |  |         $to = new \DateTime($from->format('Y-m-d').' +86399 seconds'); // 23 hours 59 minutes 59 seconds | 
            
                                                                                                            
                            
            
                                    
            
            
                | 36 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 37 |  |  |         switch ($data['type']) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 38 |  |  |             case DateType::TYPE_GREATER_EQUAL: | 
            
                                                                                                            
                            
            
                                    
            
            
                | 39 |  |  |                 $where->gte()->field('a.'.$field)->literal($from); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 40 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 41 |  |  |                 break; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 42 |  |  |             case DateType::TYPE_GREATER_THAN: | 
            
                                                                                                            
                            
            
                                    
            
            
                | 43 |  |  |                 $where->gt()->field('a.'.$field)->literal($from); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 44 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 45 |  |  |                 break; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 46 |  |  |             case DateType::TYPE_LESS_EQUAL: | 
            
                                                                                                            
                            
            
                                    
            
            
                | 47 |  |  |                 $where->lte()->field('a.'.$field)->literal($from); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 48 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 49 |  |  |                 break; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 50 |  |  |             case DateType::TYPE_LESS_THAN: | 
            
                                                                                                            
                            
            
                                    
            
            
                | 51 |  |  |                 $where->lt()->field('a.'.$field)->literal($from); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 52 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 53 |  |  |                 break; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 54 |  |  |             case DateType::TYPE_NULL: | 
            
                                                                                                            
                            
            
                                    
            
            
                | 55 |  |  |                 $where->eq()->field('a.'.$field)->literal(null); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 56 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 57 |  |  |                 break; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 58 |  |  |             case DateType::TYPE_NOT_NULL: | 
            
                                                                                                            
                            
            
                                    
            
            
                | 59 |  |  |                 $where->neq()->field('a.'.$field)->literal(null); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 60 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 61 |  |  |                 break; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 62 |  |  |             case DateType::TYPE_EQUAL: | 
            
                                                                                                            
                            
            
                                    
            
            
                | 63 |  |  |             default: | 
            
                                                                                                            
                            
            
                                    
            
            
                | 64 |  |  |                 $where->andX() | 
            
                                                                                                            
                            
            
                                    
            
            
                | 65 |  |  |                     ->gte()->field('a.'.$field)->literal($from)->end() | 
            
                                                                                                            
                            
            
                                    
            
            
                | 66 |  |  |                     ->lte()->field('a.'.$field)->literal($to)->end(); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 67 |  |  |         } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 68 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 69 |  |  |         // filter is active as we have now modified the query | 
            
                                                                                                            
                            
            
                                    
            
            
                | 70 |  |  |         $this->active = true; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 71 |  |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 72 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 73 |  |  |     /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 74 |  |  |      * {@inheritdoc} | 
            
                                                                                                            
                            
            
                                    
            
            
                | 75 |  |  |      */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 76 |  |  |     public function getDefaultOptions() | 
            
                                                                                                            
                            
            
                                    
            
            
                | 77 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 78 |  |  |         return [ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 79 |  |  |             'date_format' => 'yyyy-MM-dd', | 
            
                                                                                                            
                            
            
                                    
            
            
                | 80 |  |  |         ]; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 81 |  |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 82 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 83 |  |  |     /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 84 |  |  |      * {@inheritdoc} | 
            
                                                                                                            
                                                                
            
                                    
            
            
                | 85 |  |  |      */ | 
            
                                                        
            
                                    
            
            
                | 86 |  |  |     public function getRenderSettings() | 
            
                                                        
            
                                    
            
            
                | 87 |  |  |     { | 
            
                                                        
            
                                    
            
            
                | 88 |  |  |         return ['sonata_type_filter_date', [ | 
            
                                                        
            
                                    
            
            
                | 89 |  |  |             'field_type' => $this->getFieldType(), | 
            
                                                        
            
                                    
            
            
                | 90 |  |  |             'field_options' => $this->getFieldOptions(), | 
            
                                                        
            
                                    
            
            
                | 91 |  |  |             'label' => $this->getLabel(), | 
            
                                                        
            
                                    
            
            
                | 92 |  |  |         ]]; | 
            
                                                        
            
                                    
            
            
                | 93 |  |  |     } | 
            
                                                        
            
                                    
            
            
                | 94 |  |  | } | 
            
                                                        
            
                                    
            
            
                | 95 |  |  |  | 
            
                        
This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.
Consider making the comparison explicit by using
empty(..)or! empty(...)instead.