-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode.php
More file actions
551 lines (492 loc) · 9.65 KB
/
code.php
File metadata and controls
551 lines (492 loc) · 9.65 KB
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
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
<?php
/**
* @package Joomla.Component.Builder
*
* @created 4th September, 2022
* @author Llewellyn van der Merwe <https://dev.vdm.io>
* @git Joomla Component Builder <https://git.vdm.dev/joomla/Component-Builder>
* @copyright Copyright (C) 2015 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace VDM\Joomla\Abstraction\Remote;
use VDM\Joomla\Componentbuilder\Power\Interfaces\TableInterface as Table;
use VDM\Joomla\Interfaces\Remote\ConfigInterface;
/**
* Remote Base Config Shared by get and set methods
*
* @since 5.1.1
*/
abstract class Config implements ConfigInterface
{
/**
* The Table Class.
*
* @var Table
* @since 5.1.1
*/
protected Table $core;
/**
* Table Name
*
* @var string
* @since 3.2.1
*/
protected string $table;
/**
* Area Name
*
* @var string|null
* @since 3.2.2
*/
protected ?string $area = null;
/**
* Prefix Key
*
* @var string
* @since 3.2.2
*/
protected string $prefix_key = '';
/**
* Suffix Key
*
* @var string
* @since 3.2.2
*/
protected string $suffix_key = '';
/**
* The main readme file path
*
* @var string
* @since 5.1.1
*/
protected string $main_readme_path = 'README.md';
/**
* The item readme file name
*
* @var string
* @since 5.1.1
*/
protected string $item_readme_name = 'README.md';
/**
* The index file path (index of all items)
*
* @var string
* @since 3.2.2
*/
protected string $index_path = 'index.json';
/**
* The item (files) source path
*
* @var string
* @since 5.1.1
*/
protected string $src_path = 'src';
/**
* The item settings file name (item data)
*
* @var string
* @since 3.2.2
*/
protected string $settings_name = 'item.json';
/**
* The item guid=unique field
*
* @var string
* @since 5.1.1
*/
protected string $guid_field = 'guid';
/**
* The item guid=unique helper field (another unique value)
*
* @var string|null
* @since 5.1.4
*/
protected ?string $guid_helper_field = null;
/**
* The ignore fields
*
* @var array
* @since 5.1.1
*/
protected array $ignore = ['access'];
/**
* The files (to map target files to move in an entity)
*
* Use a pipe in the name to denote
* subform location of the value
* format: [field_name, field_name|subfrom_key]
*
* @var array
* @since 5.1.1
*/
protected array $files = [];
/**
* The folders (to map target folders to move in an entity)
*
* Use a pipe in the name to denote
* subform location of the value
* format: [field_name, field_name|subfrom_key]
*
* @var array
* @since 5.1.1
*/
protected array $folders = [];
/**
* The item map
*
* @var array
* @since 3.2.2
*/
protected array $map = [];
/**
* The direct entities/children of this entity
*
* @var array
* @since 5.1.1
*/
protected array $children = [];
/**
* The index map
* must always have: [name,path,settings,guid]
* you can add more
*
* @var array
* @since 5.0.3
*/
protected array $index_map = [
'name' => 'index_map_IndexName',
'path' => 'index_map_IndexPath',
'settings' => 'index_map_IndexSettingsPath',
'guid' => 'index_map_IndexGUID'
];
/**
* The index header
* mapping the index map to a table
* must always have: [name,path,settings,guid,local]
* with [name] always first
* with [path,settings,guid,local] always last
* you can add more in between
*
* @var array
* @since 5.1.1
*/
protected array $index_header = [
'name',
// from here you can add more
'path',
'settings',
'guid',
'local'
];
/**
* Core Placeholders
*
* @var array
* @since 5.0.3
*/
protected array $placeholders = [];
/**
* Constructor.
*
* @param Table $core The Core Table Class.
*
* @since 5.1.1
*/
public function __construct(Table $core)
{
$this->core = $core;
}
/**
* Get core placeholders
*
* @return array
* @since 5.1.1
*/
public function getPlaceholders(): array
{
return $this->placeholders;
}
/**
* Set the current active table
*
* @param string $table The table that should be active
*
* @return self
* @since 3.2.2
*/
public function table(string $table): self
{
$this->table = $table;
return $this;
}
/**
* Get the current active table
*
* @return string
* @since 3.2.2
*/
public function getTable(): string
{
return $this->table;
}
/**
* Get the current active table list view code name
*
* @return string|null
* @since 5.1.2
*/
public function getListViewCodeName(): ?string
{
return $this->core->listViewCodeName($this->getTable());
}
/**
* Set the current active area
*
* @param string $area The area that should be active
*
* @return self
* @since 3.2.2
*/
public function area(string $area): self
{
$this->area = ucfirst(str_replace('_', ' ', $area));
return $this;
}
/**
* Get the current active area
*
* @return string|null
* @since 3.2.2
*/
public function getArea(): ?string
{
return $this->area;
}
/**
* Set the settings file name
*
* @param string $settingsName The repository settings path
*
* @return self
* @since 3.2.2
*/
public function setSettingsName(string $settingsName): self
{
$this->settings_name = $settingsName;
return $this;
}
/**
* Get the settings file name
*
* @return string
* @since 3.2.2
*/
public function getSettingsName(): string
{
return $this->settings_name;
}
/**
* Set the index path
*
* @param string $indexPath The repository index path
*
* @return void
* @since 3.2.2
*/
public function setIndexPath(string $indexPath): void
{
$this->index_path = $indexPath;
}
/**
* Get the index path
*
* @return string
* @since 3.2.2
*/
public function getIndexPath(): string
{
return $this->index_path;
}
/**
* Get index map
*
* @return array
* @since 5.1.1
*/
public function getIndexMap(): array
{
return $this->index_map;
}
/**
* Get index header
*
* @return array
* @since 5.1.1
*/
public function getIndexHeader(): array
{
return $this->index_header;
}
/**
* Get src path
*
* @return string
* @since 5.1.1
*/
public function getSrcPath(): string
{
return $this->src_path;
}
/**
* Get main readme path
*
* @return string
* @since 5.1.1
*/
public function getMainReadmePath(): string
{
return $this->main_readme_path;
}
/**
* Has main readme
*
* @return bool
* @since 5.1.1
*/
public function hasMainReadme(): bool
{
return !empty($this->main_readme_path);
}
/**
* Get item readme path
*
* @return string
* @since 5.1.1
*/
public function getItemReadmeName(): string
{
return $this->item_readme_name;
}
/**
* Has item readme
*
* @return bool
* @since 5.1.1
*/
public function hasItemReadme(): bool
{
return !empty($this->item_readme_name);
}
/**
* Get the field names of the files in the entity
*
* @return array
* @since 5.1.1
*/
public function getFiles(): array
{
return $this->files;
}
/**
* Get the field names of the folders in the entity
*
* @return array
* @since 5.1.1
*/
public function getFolders(): array
{
return $this->folders;
}
/**
* Get map
*
* Builds (and caches) an associative map of the table’s field names,
* automatically removing any fields defined in $this->ignore.
*
* @return array Associative array in the form ['field' => 'field']
* @since 5.1.1
*/
public function getMap(): array
{
// Only build once – cached in $this->map.
if (empty($this->map))
{
// Fetch raw field list from the core service.
$map = $this->core->fields($this->getTable());
if ($map)
{
// Ensure $this->ignore is an array; default to empty otherwise.
$ignore = is_array($this->ignore ?? null) ? $this->ignore : [];
// Remove ignored fields, preserving the original order.
$map = array_values(array_diff($map, $ignore));
// Convert to the required ['field' => 'field'] structure.
$this->map = array_combine($map, $map);
}
else
{
$this->map = [];
}
}
return $this->map;
}
/**
* Get the direct entities/children of this entity
*
* @return array
* @since 5.1.1
*/
public function getChildren(): array
{
return $this->children;
}
/**
* Get the table title name field
*
* @return string
* @since 5.1.1
*/
public function getTitleName(): string
{
return $this->core->titleName($this->getTable());
}
/**
* Get GUID field
*
* @return string
* @since 5.1.1
*/
public function getGuidField(): string
{
return $this->guid_field;
}
/**
* Get GUID Helper field
*
* @return string|null
* @since 5.1.4
*/
public function getGuidHelperField(): ?string
{
return $this->guid_helper_field;
}
/**
* Get Prefix Key
*
* @return string
* @since 5.1.1
*/
public function getPrefixKey(): string
{
return $this->prefix_key;
}
/**
* Get Suffix Key
*
* @return string
* @since 5.1.1
*/
public function getSuffixKey(): string
{
return $this->suffix_key;
}
}