Passed
Push — master ( 62ae3a...ac7f19 )
by Francis
01:10
created

libraries/RefactorCI.php (1 issue)

1
<?php
2
defined('BASEPATH') OR exit('No direct script access allowed');
3
4
class RefactorCI {
5
6
  /**
7
   * [private description]
8
   * @var [type]
9
   */
10
  private $ci;
11
12
  private $primaryKey;
13
14
  function __construct($params=null) {
15
    $this->ci =& get_instance();
16
    $this->ci->load->config("refactor", false, true);
17
    $this->init($params == null ? [] : $params);
18
  }
19
20
  public function init(array $params):void {
21
    $this->primaryKey = $params['primary_key'] ?? 'id';
22
  }
23
  /**
24
   * [run description]
25
   * @param array  $object   [description]
26
   * @param string $ruleName [description]
27
   */
28
  function run(array &$object, string $ruleName):void {
29
    $rule = $this->ci->config->item("refactor_$ruleName");
30
    if ($rule == null) return; // No need to go further as rule doesn't exist.
31
    // Unset
32
    if (isset($rule['unset'])) {
33
      $this->unset_values($object, $rule);
34
    }
35
    // Replace
36
    if (isset($rule['replace'])) {
37
      $this->replace_fields($object, $rule);
38
    }
39
    // Bools
40
    if (isset($rule['bools'])) {
41
      foreach($rule['bools'] as $boolKey) {
42
        $object[$boolKey] = $object[$boolKey] == 1 || $object[$boolKey] == 'true';
43
      }
44
    }
45
    // Objects
46
    if (isset($rule['objects'])) {
47
      foreach($rule['objects'] as $field => $data) {
48
        $ids = json_decode($object[$field]);
49
        if (is_scalar($ids)) {
50
          // JSON Array wasn't supplied. Let's treat it as a scaler ID.
51
          $this->ci->db->where($this->primaryKey, $ids);
52
          $query = $this->ci->db->get($data['table']);
53
          if ($query->num_rows() == 0) {
54
            $object[$field] = json_encode (json_decode ("{}"));
55
            continue;
56
          }
57
          $object[$field] = $query->result_array()[0];
58
          if (isset($data['refactor'])) $this->run($object[$field], $data['refactor']);
59
          continue;
60
        }
61
        $object[$field] = [];
62
        foreach($ids as $id) {
63
          $this->ci->db->where($this->primaryKey, $id);
64
          $query = $this->ci->db->get($data['table']);
65
          if ($query->num_rows() == 0) {
66
            continue;
67
          }
68
          $object[$field][] = $query->result_array()[0];
69
          // Recursion
70
          if (isset($data['refactor'])) $this->run($object[$field][count($object[$field]) - 1], $data['refactor']);
71
        }
72
      }
73
    }
74
  }
75
  /**
76
   * [unset_values description]
77
   * @param array  $object Object to Refactor.
78
   * @param array  $rule   Rule data, containing keys to unset in  the given
79
   *                       associative array.
80
   */
81
  private function unset_values(array &$object, &$rule):void {
82
    foreach($rule['unset'] as $key) {
83
      unset($object[$key]);
84
    }
85
  }
86
  /**
87
   * [replace_fields description]
88
   * @param array  $object [description]
89
   * @param [type] $rule   [description]
90
   */
91
  private function replace_fields(array &$object, &$rule):void {
92
    foreach ($rule['replace'] as $oldKey => $newKey) {
93
      $object[$newKey] = $object[$oldKey];
94
      unset($object[$oldKey]);
95
    }
96
  }
97
}
98
?>
0 ignored issues
show
It is not recommended to use PHP's closing tag ?> in files other than templates.

Using a closing tag in PHP files that only contain PHP code is not recommended as you might accidentally add whitespace after the closing tag which would then be output by PHP. This can cause severe problems, for example headers cannot be sent anymore.

A simple precaution is to leave off the closing tag as it is not required, and it also has no negative effects whatsoever.

Loading history...
99