Пример #1
0
 public function rotate(ObserverInterface $observer, Encryptor $encryptor, $newProfile = null)
 {
     $fields = $this->fields;
     $fields[] = $this->idField;
     $stmt = $this->connection->createQueryBuilder()->select($fields)->from($this->table)->execute();
     while ($row = $stmt->fetch(\PDO::FETCH_ASSOC)) {
         $id = $row[$this->idField];
         $observer->rotating($id);
         unset($row[$this->idField]);
         foreach ($row as $key => $value) {
             $row[$key] = $encryptor->encrypt($encryptor->decrypt($value), $newProfile);
         }
         $this->connection->update($this->table, $row, array($this->idField => $id));
         $observer->rotated($id);
     }
 }
Пример #2
0
 public function rotate(ObserverInterface $observer, Encryptor $encryptor, $newProfile = null)
 {
     $fields = $this->fields;
     $fields[] = $this->idField;
     $stmt = $this->pdo->prepare(sprintf('SELECT %s FROM %s', implode(', ', $fields), $this->table));
     $stmt->execute();
     while ($row = $stmt->fetch(\PDO::FETCH_ASSOC)) {
         $id = $row[$this->idField];
         $observer->rotating($id);
         unset($row[$this->idField]);
         foreach ($row as $key => $value) {
             $row[$key] = $encryptor->encrypt($encryptor->decrypt($value), $newProfile);
         }
         $parameters = array();
         $setFields = array_map(function ($field, $value) use(&$parameters) {
             $parameters[] = $value;
             return sprintf('%s = ?', $field);
         }, array_keys($row), $row);
         $parameters[] = $id;
         $this->pdo->prepare(sprintf('UPDATE %s SET %s WHERE %s = ?', $this->table, implode(',', $setFields), $this->idField))->execute($parameters);
         $observer->rotated($id);
     }
 }