| 1 |  |  | <?php | 
            
                                                                                                            
                            
            
                                    
            
            
                | 2 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 3 |  |  | namespace UniMan\Drivers\Redis\Forms; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 4 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 5 |  |  | use UniMan\Core\Forms\TableForm\TableFormInterface; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 6 |  |  | use Nette\Application\UI\Form; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 7 |  |  | use Nette\Utils\ArrayHash; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 8 |  |  | use RedisProxy\RedisProxy; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 9 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 10 |  |  | class RedisEditSetForm implements TableFormInterface | 
            
                                                                                                            
                            
            
                                    
            
            
                | 11 |  |  | { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 12 |  |  |     private $connection; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 13 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 14 |  |  |     private $key; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 15 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 16 |  |  |     public function __construct(RedisProxy $connection, $key) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 17 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 18 |  |  |         $this->connection = $connection; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 19 |  |  |         $this->key = $key; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 20 |  |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 21 |  |  |  | 
            
                                                                                                            
                            
            
                                                                    
                                                                                                        
            
            
                | 22 |  | View Code Duplication |     public function addFieldsToForm(Form $form) | 
                            
                    |  |  |  | 
                                                                                        
                                                                                     | 
            
                                                                                                            
                            
            
                                    
            
            
                | 23 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 24 |  |  |         $form->addText('key', 'redis.set_form.key.label') | 
            
                                                                                                            
                            
            
                                    
            
            
                | 25 |  |  |             ->setRequired('redis.set_form.key.required'); | 
                            
                    |  |  |  | 
                                                                                        
                                                                                     | 
            
                                                                                                            
                            
            
                                    
            
            
                | 26 |  |  |         $form->addText('members', 'redis.set_form.members.label') | 
            
                                                                                                            
                            
            
                                    
            
            
                | 27 |  |  |             ->setRequired('redis.set_form.members.required') | 
                            
                    |  |  |  | 
                                                                                        
                                                                                     | 
            
                                                                                                            
                            
            
                                    
            
            
                | 28 |  |  |             ->setOption('description', 'redis.set_form.members.description'); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 29 |  |  |         if ($this->key) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 30 |  |  |             $form->setDefaults([ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 31 |  |  |                 'key' => $this->key, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 32 |  |  |                 'members' => implode(',', $this->connection->smembers($this->key)), | 
            
                                                                                                            
                            
            
                                    
            
            
                | 33 |  |  |             ]); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 34 |  |  |         } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 35 |  |  |     } | 
            
                                                                                                            
                                                                
            
                                    
            
            
                | 36 |  |  |  | 
            
                                                        
            
                                    
            
            
                | 37 |  |  |     public function submit(Form $form, ArrayHash $values) | 
            
                                                        
            
                                    
            
            
                | 38 |  |  |     { | 
            
                                                        
            
                                    
            
            
                | 39 |  |  |         $key = $values['key']; | 
            
                                                        
            
                                    
            
            
                | 40 |  |  |         $actualMembers = $this->connection->smembers($this->key); | 
            
                                                        
            
                                    
            
            
                | 41 |  |  |         $members = array_map('trim', explode(',', $values['members'])); | 
            
                                                        
            
                                    
            
            
                | 42 |  |  |  | 
            
                                                        
            
                                    
            
            
                | 43 |  |  |         $membersToRemove = array_diff($actualMembers, $members); | 
            
                                                        
            
                                    
            
            
                | 44 |  |  |         $membersToAdd = array_diff($members, $actualMembers); | 
            
                                                        
            
                                    
            
            
                | 45 |  |  |         call_user_func_array([$this->connection, 'srem'], array_merge([$this->key], $membersToRemove)); | 
            
                                                        
            
                                    
            
            
                | 46 |  |  |         call_user_func_array([$this->connection, 'sadd'], array_merge([$this->key], $membersToAdd)); | 
            
                                                        
            
                                    
            
            
                | 47 |  |  |  | 
            
                                                        
            
                                    
            
            
                | 48 |  |  |         if ($this->key != $key) { | 
            
                                                        
            
                                    
            
            
                | 49 |  |  |             $this->connection->rename($this->key, $key); | 
            
                                                        
            
                                    
            
            
                | 50 |  |  |         } | 
            
                                                        
            
                                    
            
            
                | 51 |  |  |     } | 
            
                                                        
            
                                    
            
            
                | 52 |  |  | } | 
            
                                                        
            
                                    
            
            
                | 53 |  |  |  | 
            
                        
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.