aboutsummaryrefslogtreecommitdiff
path: root/engine/model.php
blob: e967dc2241e6be21c403eff6a2fb46e54db91a37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
<?php

enum ModelFieldType {
    case STRING;
    case INTEGER;
    case FLOAT;
    case ARRAY;
    case BOOLEAN;
    case JSON;
    case SERIALIZED;
    case BITFIELD;
    case BACKED_ENUM;
}

abstract class model {

    const DB_TABLE = null;
    const DB_KEY = 'id';

    /** @var $SpecCache ModelSpec[] */
    protected static array $SpecCache = [];

    public static function create_instance(...$args) {
        $cl = get_called_class();
        return new $cl(...$args);
    }

    public function __construct(array $raw) {
        if (!isset(self::$SpecCache[static::class]))
            self::$SpecCache[static::class] = static::get_spec();

        foreach (self::$SpecCache[static::class]->getProperties() as $prop)
            $this->{$prop->getModelName()} = $prop->fromRawValue($raw[$prop->getDbName()]);

        if (is_null(static::DB_TABLE))
            trigger_error('class '.get_class($this).' doesn\'t have DB_TABLE defined');
    }

    /**
     * TODO: support adding or subtracting (SET value=value+1)
     */
    public function edit(array $fields) {
        $db = DB();

        $model_upd = [];
        $db_upd = [];

        $spec_db_name_map = self::$SpecCache[static::class]->getDbNameMap();
        $spec_props = self::$SpecCache[static::class]->getProperties();

        foreach ($fields as $name => $value) {
            $index = $spec_db_name_map[$name] ?? null;
            if (is_null($index)) {
                logError(__METHOD__.': field `'.$name.'` not found in '.static::class);
                continue;
            }

            $field = $spec_props[$index];
            if ($field->isNullable() && is_null($value)) {
                $model_upd[$field->getModelName()] = $value;
                $db_upd[$name] = $value;
                continue;
            }

            switch ($field->getType()) {
                case ModelFieldType::ARRAY:
                    if (is_array($value)) {
                        $db_upd[$name] = implode(',', $value);
                        $model_upd[$field->getModelName()] = $value;
                    } else {
                        logError(__METHOD__.': field `'.$name.'` is expected to be array. skipping.');
                    }
                    break;

                case ModelFieldType::INTEGER:
                    $value = (int)$value;
                    $db_upd[$name] = $value;
                    $model_upd[$field->getModelName()] = $value;
                    break;

                case ModelFieldType::FLOAT:
                    $value = (float)$value;
                    $db_upd[$name] = $value;
                    $model_upd[$field->getModelName()] = $value;
                    break;

                case ModelFieldType::BOOLEAN:
                    $db_upd[$name] = $value ? 1 : 0;
                    $model_upd[$field->getModelName()] = $value;
                    break;

                case ModelFieldType::JSON:
                    $db_upd[$name] = jsonEncode($value);
                    $model_upd[$field->getModelName()] = $value;
                    break;

                case ModelFieldType::SERIALIZED:
                    $db_upd[$name] = serialize($value);
                    $model_upd[$field->getModelName()] = $value;
                    break;

                case ModelFieldType::BITFIELD:
                    $db_upd[$name] = $value;
                    $model_upd[$field->getModelName()] = $value;
                    break;

                default:
                    $value = (string)$value;
                    $db_upd[$name] = $value;
                    $model_upd[$field->getModelName()] = $value;
                    break;
            }
        }

        if (!empty($db_upd) && !$db->update(static::DB_TABLE, $db_upd, static::DB_KEY."=?", $this->get_id())) {
            logError(__METHOD__.': failed to update database');
            return;
        }

        if (!empty($model_upd)) {
            foreach ($model_upd as $name => $value)
                $this->{$name} = $value;
        }
    }

    public function get_id() {
        return $this->{to_camel_case(static::DB_KEY)};
    }

    public function as_array(array $properties = [], array $custom_getters = []): array {
        if (empty($properties))
            $properties = static::$SpecCache[static::class]->getPropNames();

        $array = [];
        foreach ($properties as $field) {
            if (isset($custom_getters[$field]) && is_callable($custom_getters[$field])) {
                $array[$field] = $custom_getters[$field]();
            } else {
                $array[$field] = $this->{to_camel_case($field)};
            }
        }

        return $array;
    }

    protected static function get_spec(): ModelSpec {
        $rc = new ReflectionClass(static::class);
        $props = $rc->getProperties(ReflectionProperty::IS_PUBLIC);

        $list = [];
        $index = 0;

        $db_name_map = [];

        foreach ($props as $prop) {
            if ($prop->isStatic())
                continue;

            $name = $prop->getName();
            if (str_starts_with($name, '_'))
                continue;

            $real_type = null;
            $type = $prop->getType();
            $phpdoc = $prop->getDocComment();

            /** @var ?ModelFieldType $mytype */
            $mytype = null;
            if (!$prop->hasType() && !$phpdoc)
                $mytype = ModelFieldType::STRING;
            else {
                $typename = $type->getName();
                switch ($typename) {
                    case 'string':
                        $mytype = ModelFieldType::STRING;
                        break;
                    case 'int':
                        $mytype = ModelFieldType::INTEGER;
                        break;
                    case 'float':
                        $mytype = ModelFieldType::FLOAT;
                        break;
                    case 'array':
                        $mytype = ModelFieldType::ARRAY;
                        break;
                    case 'bool':
                        $mytype = ModelFieldType::BOOLEAN;
                        break;
                    case 'mysql_bitfield':
                        $mytype = ModelFieldType::BITFIELD;
                        break;
                    default:
                        if (enum_exists($typename)) {
                            $mytype = ModelFieldType::BACKED_ENUM;
                            $real_type = $typename;
                        }
                        break;
                }

                if ($phpdoc != '') {
                    $pos = strpos($phpdoc, '@');
                    if ($pos === false)
                        continue;

                    if (substr($phpdoc, $pos+1, 4) == 'json')
                        $mytype = ModelFieldType::JSON;
                    else if (substr($phpdoc, $pos+1, 5) == 'array')
                        $mytype = ModelFieldType::ARRAY;
                    else if (substr($phpdoc, $pos+1, 10) == 'serialized')
                        $mytype = ModelFieldType::SERIALIZED;
                }
            }

            if (is_null($mytype))
                logError(__METHOD__.": ".$name." is still null in ".static::class);

            // $dbname = from_camel_case($name);
            $model_descr = new ModelProperty(
                type: $mytype,
                realType: $real_type,
                nullable: $type->allowsNull(),
                modelName: $name,
                dbName: from_camel_case($name)
            );
            $list[] = $model_descr;
            $db_name_map[$model_descr->getDbName()] = $index++;
        }

        return new ModelSpec($list, $db_name_map);
    }

}

class ModelSpec {

    public function __construct(
        /** @var ModelProperty[] */
        protected array $properties,
        protected array $dbNameMap
    ) {}

    /**
     * @return ModelProperty[]
     */
    public function getProperties(): array {
        return $this->properties;
    }

    public function getDbNameMap(): array {
        return $this->dbNameMap;
    }

    public function getPropNames(): array {
        return array_keys($this->dbNameMap);
    }

}

class ModelProperty {

    public function __construct(
        protected ?ModelFieldType $type,
        protected mixed $realType,
        protected bool $nullable,
        protected string $modelName,
        protected string $dbName
    ) {}

    public function getDbName(): string {
        return $this->dbName;
    }

    public function getModelName(): string {
        return $this->modelName;
    }

    public function isNullable(): bool {
        return $this->nullable;
    }

    public function getType(): ?ModelFieldType {
        return $this->type;
    }

    public function fromRawValue(mixed $value): mixed {
        if ($this->nullable && is_null($value))
            return null;

        switch ($this->type) {
            case ModelFieldType::BOOLEAN:
                return (bool)$value;

            case ModelFieldType::INTEGER:
                return (int)$value;

            case ModelFieldType::FLOAT:
                return (float)$value;

            case ModelFieldType::ARRAY:
                return array_filter(explode(',', $value));

            case ModelFieldType::JSON:
                $val = jsonDecode($value);
                if (!$val)
                    $val = null;
                return $val;

            case ModelFieldType::SERIALIZED:
                $val = unserialize($value);
                if ($val === false)
                    $val = null;
                return $val;

            case ModelFieldType::BITFIELD:
                return new mysql_bitfield($value);

            case ModelFieldType::BACKED_ENUM:
                try {
                    return $this->realType::from($value);
                } catch (ValueError $e) {
                    if ($this->nullable)
                        return null;
                    throw $e;
                }

            default:
                return (string)$value;
        }
    }

}