| Total Complexity | 50 |
| Total Lines | 235 |
| Duplicated Lines | 0 % |
| Changes | 12 | ||
| Bugs | 0 | Features | 0 |
Complex classes like RefactorCI often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use RefactorCI, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 4 | class RefactorCI |
||
| 5 | {
|
||
| 6 | /** |
||
| 7 | * [private description] |
||
| 8 | * @var [type] |
||
|
|
|||
| 9 | */ |
||
| 10 | private $ci; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * [private description] |
||
| 14 | * @var [type] |
||
| 15 | */ |
||
| 16 | private $primaryKey; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * [public description] |
||
| 20 | * @var [type] |
||
| 21 | */ |
||
| 22 | public const PACKAGE = 'francis94c/refactor-ci'; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * [__construct description] |
||
| 26 | * @date 2020-04-10 |
||
| 27 | * @param [type] $params [description] |
||
| 28 | */ |
||
| 29 | public function __construct($params=null) |
||
| 30 | {
|
||
| 31 | $this->ci =& get_instance(); |
||
| 32 | $this->ci->load->config("refactor", false, true);
|
||
| 33 | $this->ci->load->splint('francis94c/jsonp', '+JSONP', null, 'jsonp');
|
||
| 34 | |||
| 35 | $this->init($params == null ? [] : $params); |
||
| 36 | |||
| 37 | spl_autoload_register(function($name) {
|
||
| 38 | if ($name == 'RefactorPayload') {
|
||
| 39 | require(APPPATH . 'splints/' . self::PACKAGE . '/libraries/RefactorPayload.php'); |
||
| 40 | return; |
||
| 41 | } |
||
| 42 | |||
| 43 | if (file_exists(APPPATH . "payloads/$name.php")) {
|
||
| 44 | require(APPPATH . "payloads/$name.php"); |
||
| 45 | return; |
||
| 46 | } |
||
| 47 | |||
| 48 | if (file_exists(APPPATH . "libraries/refactor/$name.php")) {
|
||
| 49 | require(APPPATH . "libraries/refactor/$name.php"); // @deprecated |
||
| 50 | } |
||
| 51 | }); |
||
| 52 | } |
||
| 53 | /** |
||
| 54 | * [init description] |
||
| 55 | * @date 2019-11-02 |
||
| 56 | * @param array $params [description] |
||
| 57 | */ |
||
| 58 | public function init(array $params):void |
||
| 59 | {
|
||
| 60 | $this->primaryKey = $params['primary_key'] ?? 'id'; |
||
| 61 | } |
||
| 62 | /** |
||
| 63 | * [load description] |
||
| 64 | * @date 2019-11-02 |
||
| 65 | * @return RefactorCI [description] |
||
| 66 | */ |
||
| 67 | public function load($class):RefactorCI |
||
| 68 | {
|
||
| 69 | require_once(APPPATH.'libraries/refactor/'.$class.'.php'); |
||
| 70 | return $this; |
||
| 71 | } |
||
| 72 | /** |
||
| 73 | * [payload description] |
||
| 74 | * @date 2019-11-02 |
||
| 75 | * @param string $class [description] |
||
| 76 | * @param [type] $object [description] |
||
| 77 | * @return [type] [description] |
||
| 78 | */ |
||
| 79 | public function payload(string $class, $object) |
||
| 82 | } |
||
| 83 | /** |
||
| 84 | * [array description] |
||
| 85 | * @date 2019-11-02 |
||
| 86 | * @param string $class [description] |
||
| 87 | * @param array $array [description] |
||
| 88 | * @return array [description] |
||
| 89 | */ |
||
| 90 | public function array(string $class, array $array):array |
||
| 91 | {
|
||
| 92 | $refactor = new $class(); |
||
| 93 | $buff; |
||
| 94 | for ($x = 0; $x < count($array); $x++) {
|
||
| 95 | $refactor->switchPayload($array[$x]); |
||
| 96 | $buff = $refactor->toArray(); |
||
| 97 | if ($buff != null) $array[$x] = $buff; |
||
| 98 | } |
||
| 99 | return $array; |
||
| 100 | } |
||
| 101 | /** |
||
| 102 | * [run description] |
||
| 103 | * @param array|string $object [description] |
||
| 104 | * @param string $ruleName [description] |
||
| 105 | */ |
||
| 106 | function run(array &$object, $ruleName):void |
||
| 107 | {
|
||
| 108 | if ($object == null) return; |
||
| 109 | // Reolve Rules. |
||
| 110 | if (is_scalar($ruleName)) {
|
||
| 111 | $rule = $this->ci->config->item("refactor_$ruleName");
|
||
| 112 | } else {
|
||
| 113 | // Rule was probablt passed in as an array (associative) and we support |
||
| 114 | // that. |
||
| 115 | $rule = is_array($ruleName) ? $ruleName : null; |
||
| 116 | } |
||
| 117 | |||
| 118 | if ($rule == null) return; // No need to go further as rule doesn't exist. |
||
| 119 | // Keep |
||
| 120 | if (isset($rule['keep'])) {
|
||
| 121 | $keys = array_keys($object); |
||
| 122 | for ($x = 0; $x < count($object); $x++) {
|
||
| 123 | if (!in_array($keys[$X], $rule['keep'])) {
|
||
| 124 | unset($object[$keys[$x]]); |
||
| 125 | } |
||
| 126 | } |
||
| 127 | } |
||
| 128 | // Unset |
||
| 129 | if (isset($rule['unset'])) {
|
||
| 130 | $this->unset_values($object, $rule); |
||
| 131 | } |
||
| 132 | // Replace |
||
| 133 | if (isset($rule['replace'])) {
|
||
| 134 | $this->replace_fields($object, $rule); |
||
| 135 | } |
||
| 136 | // Bools |
||
| 137 | if (isset($rule['bools'])) {
|
||
| 138 | foreach($rule['bools'] as $boolKey) {
|
||
| 139 | $object[$boolKey] = $object[$boolKey] == 1 || $object[$boolKey] == 'true'; |
||
| 140 | } |
||
| 141 | } |
||
| 142 | // Cast |
||
| 143 | if (isset($rule['cast'])) {
|
||
| 144 | $this->cast_fields($object, $rule); |
||
| 145 | } |
||
| 146 | // Inflate |
||
| 147 | if (isset($rule['inflate'])) {
|
||
| 148 | foreach($rule['inflate'] as $field => $data) {
|
||
| 149 | $ids = json_decode($object[$field], true); |
||
| 150 | if (is_scalar($ids)) {
|
||
| 151 | // JSON Array wasn't supplied. Let's treat it as a scaler ID. |
||
| 152 | $this->ci->db->where($this->primaryKey, $ids); |
||
| 153 | $query = $this->ci->db->get($data['table']); |
||
| 154 | if ($query->num_rows() == 0) {
|
||
| 155 | $object[$field] = json_encode (json_decode ("{}"));
|
||
| 156 | continue; |
||
| 157 | } |
||
| 158 | $object[$field] = $query->result_array()[0]; |
||
| 159 | if (isset($data['refactor'])) $this->run($object[$field], $data['refactor']); |
||
| 160 | continue; |
||
| 161 | } |
||
| 162 | if (isset($data['path'])) {
|
||
| 163 | if ($ids == null) return; |
||
| 164 | $object[$field] = $ids; |
||
| 165 | $this->ci->jsonp->parse($object[$field]); |
||
| 166 | if (is_array($object[$field])) {
|
||
| 167 | $refs = $this->ci->jsonp->get_reference($data['path']); |
||
| 168 | for ($x = 0; $x < count($refs); $x++) {
|
||
| 169 | $refs[$x] = $this->inflate_value($data['table'], $refs[$x]); |
||
| 170 | // Recursion |
||
| 171 | if (isset($data['refactor'])) $this->run($refs[$x], $data['refactor']); |
||
| 172 | } |
||
| 173 | } else {
|
||
| 174 | $this->ci->jsonp->set($data['path'], $this->inflate_value($data['table'], $ids)); |
||
| 175 | // Recursion |
||
| 176 | if (isset($data['refactor'])) $this->run($this->ci->jsonp->get_reference($data['path']), $data['refactor']); |
||
| 177 | } |
||
| 178 | return; |
||
| 179 | } |
||
| 180 | $object[$field] = []; |
||
| 181 | if ($ids == null) return; |
||
| 182 | foreach($ids as $id) {
|
||
| 183 | $this->ci->db->where($this->primaryKey, $id); |
||
| 184 | $query = $this->ci->db->get($data['table']); |
||
| 185 | if ($query->num_rows() == 0) {
|
||
| 186 | continue; |
||
| 187 | } |
||
| 188 | $object[$field][] = $query->result_array()[0]; |
||
| 189 | // Recursion |
||
| 190 | if (isset($data['refactor'])) $this->run($object[$field][count($object[$field]) - 1], $data['refactor']); |
||
| 191 | } |
||
| 192 | } |
||
| 193 | } |
||
| 194 | } |
||
| 195 | private function inflate_value(string $table, $value) |
||
| 196 | {
|
||
| 197 | $this->ci->db->where($this->primaryKey, $value); |
||
| 198 | $query = $this->ci->db->get($table); |
||
| 199 | return $query->num_rows() > 0 ? $query->result_array()[0] : null; |
||
| 200 | } |
||
| 201 | /** |
||
| 202 | * [unset_values description] |
||
| 203 | * @param array $object Object to Refactor. |
||
| 204 | * @param array $rule Rule data, containing keys to unset in the given |
||
| 205 | * associative array. |
||
| 206 | */ |
||
| 207 | private function unset_values(array &$object, &$rule):void {
|
||
| 208 | foreach($rule['unset'] as $key) {
|
||
| 209 | unset($object[$key]); |
||
| 210 | } |
||
| 211 | } |
||
| 212 | /** |
||
| 213 | * [replace_fields description] |
||
| 214 | * @param array $object [description] |
||
| 215 | * @param [type] $rule [description] |
||
| 216 | */ |
||
| 217 | private function replace_fields(array &$object, &$rule):void |
||
| 218 | {
|
||
| 219 | foreach ($rule['replace'] as $oldKey => $newKey) {
|
||
| 220 | $object[$newKey] = $object[$oldKey]; |
||
| 221 | unset($object[$oldKey]); |
||
| 222 | } |
||
| 223 | } |
||
| 224 | /** |
||
| 225 | * [cast_fields description] |
||
| 226 | * @param array $object [description] |
||
| 227 | * @param [type] $rule [description] |
||
| 228 | */ |
||
| 229 | private function cast_fields(array &$object, &$rule):void |
||
| 239 | } |
||
| 240 | } |
||
| 241 | } |
||
| 242 | } |
||
| 243 | ?> |
||
| 244 |