forked from storypioneers/kirby-selector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathselector.php
445 lines (402 loc) · 10.5 KB
/
selector.php
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
<?php
/**
* Selector.
*
* Fileselect Field for Kirby 2
*
* @version 1.5.1
* @author digital storytelling pioneers <[email protected]>
* @author feat. Jonas Döbertin <[email protected]>
* @copyright digital storytelling pioneers <[email protected]>
* @link https://github.com/storypioneers/kirby-selector
* @license GNU GPL v3.0 <http://opensource.org/licenses/GPL-3.0>
*/
class SelectorField extends BaseField
{
/**
* Base directory for language files.
*
* @var string
* @since 1.2.0
*/
const LANG_DIR = 'languages';
/**
* Define frontend assets.
*
* @var array
* @since 1.0.0
*/
public static $assets = array(
'css' => array(
'selector.css',
),
'js' => array(
'selector.js',
),
);
/**
* Select mode (single/multiple).
*
* @var string
* @since 1.0.0
*/
protected $mode = 'single';
/**
* Sort mode.
*
* @var string
* @since 1.1.0
*/
protected $sort = 'filename';
/**
* Flip sort order.
*
* @var string
* @since 1.1.0
*/
protected $flip = false;
/**
* Covered file types.
*
* @var array
* @since 1.0.0
*/
protected $types = array('all');
/**
* Autoselect a file.
*
* @var string
* @since 1.2.0
*/
protected $autoselect = 'none';
/**
* Filename filter.
*
* @var bool|string
* @since 1.3.0
*/
protected $filter = false;
/**
* Selector size (number of visible items).
*
* @var string|int
* @since 1.4.0
*/
protected $size = 'auto';
/**
* Option default values.
*
* @var array
* @since 1.0.0
*/
protected $defaultValues = array(
'mode' => 'single',
'options' => 'all',
'size' => 'auto',
);
/**
* Valid option values.
*
* @var array
* @since 1.0.0
*/
protected $validValues = array(
'mode' => array(
'single',
'multiple',
),
'types' => array(
'all',
'image',
'video',
'audio',
'document',
'archive',
'code',
'unknown',
),
'autoselect' => array(
'none',
'first',
'last',
'all',
),
);
/**
* Field setup.
*
* @since 1.2.0
*
* @return \SelectorField
*/
public function __construct()
{
// Build translation file path
$baseDir = __DIR__ . DS . self::LANG_DIR . DS;
// Get panel language
if (version_compare(panel()->version(), '2.2', '>=')) {
$lang = panel()->translation()->code();
} else {
$lang = panel()->language();
}
// Load language files
if (file_exists($baseDir . $lang . '.php')) {
require $baseDir . $lang . '.php';
} else {
require $baseDir . 'en.php';
}
}
/**
* Magic setter.
*
* Set a fields property and apply default value if required.
*
* @since 1.0.0
*
* @param string $option
* @param mixed $value
*/
public function __set($option, $value)
{
/* Set given value */
$this->$option = $value;
/* Check if value is valid */
switch ($option) {
case 'mode':
if (!in_array($value, $this->validValues['mode'])) {
$this->mode = $this->defaultValues['mode'];
}
break;
case 'types':
if (!is_array($value) or empty($value)) {
$this->types = array('all');
}
break;
case 'sort':
if (!is_string($value) or empty($value)) {
$this->sort = 'filename';
}
break;
case 'flip':
if (!is_bool($value)) {
$this->flip = false;
}
break;
case 'autoselect':
if (!in_array($value, $this->validValues['autoselect'])) {
$this->autoselect = 'none';
}
break;
case 'filter':
if (!is_string($value) or empty($value)) {
$this->filter = false;
}
break;
case 'size':
if (!is_numeric($value)) {
$this->size = $this->defaultValues['size'];
}
}
}
/**
* Generate label markup.
*
* @since 1.0.0
*
* @return string
*/
public function label()
{
/* Action button */
$action = new Brick('a');
$action->addClass('file-add-button label-option');
$action->html('<i class="icon icon-left fa fa-plus-circle"></i>' . l('pages.show.files.add'));
/**
* FIX: With Kirby 2.2 the structure of the "Add file" actions changed.
* Let's make sure we handle both the old >2.1 and the new 2.2+ ways.
*
* @since 1.5.0
*/
if (version_compare(Kirby::version(), '2.2', '>=')) {
$action->attr('href', '#upload');
$action->data('upload', 'true');
} else {
$action->attr('href', purl($this->page(), 'upload'));
}
/* Label */
$label = parent::label();
/**
* FIX: Fields don't have to have a label assigned.
* With this, we deal with missing label information.
*
* @since 1.3.0
*/
if (!is_null($label)) {
$label->addClass('figure-label');
$label->append($action);
return $label;
}
return;
}
/**
* Generate field content markup.
*
* @since 1.0.0
*
* @return string
*/
public function content()
{
$wrapper = new Brick('div');
$wrapper->addClass('selector');
$wrapper->data(array(
'field' => 'selector',
'name' => $this->name(),
'page' => $this->page(),
'mode' => $this->mode,
'autoselect' => $this->autoselect(),
'size' => $this->size,
));
$wrapper->html(tpl::load(__DIR__ . DS . 'template.php', array('field' => $this)));
return $wrapper;
}
/**
* Return the current value.
*
* @since 1.0.0
*
* @return array
*/
public function value()
{
if (is_string($this->value)) {
$this->value = str::split($this->value, ',', 1);
}
return $this->value;
}
/**
* Get files based on types option.
*
* @since 1.0.0
*
* @return \Files
*/
public function files()
{
/**
* FIX: When used in site options, we don't have a `$this->page`
* property we can use to access the pages files.
*
* (1) If we have page property, we'll use that to fetch the files.
* (2) If we don't have a page property we're on the site options page.
* (2.1) If we're using Kirby 2.1+ we can use the new `site()->files()`
* method to get access to the new global site files to use them.
* (2.2) If we are using a lower version, global site files don't
* exist. We'll return an empty collection object instead.
*
* @since 1.3.0
*/
if (!is_null($this->page)) { /* (1) */
$files = $this->page->files(); /* (1) */
} else { /* (2) */
if (version_compare(Kirby::version(), '2.1', '>=')) { /* (2.1) */
$files = site()->files(); /* (2.1) */
} else {
return new Collection(); /* (2.2) */
}
}
/**
* FIX: Create a new reference to $this to overcome the unavailability
* of $this within closures in PHP < 5.4.0 by passing this new reference
* with the "use" language construct.
*
* @since 1.0.1
*/
$field = &$this;
$files = $files->sortBy($this->sort, ($this->flip) ? 'desc' : 'asc')
->filter(function ($file) use ($field) {
return $field->includeAllFiles() or in_array($file->type(), $field->types());
});
/**
* Filter files using a regular expression.
*
* @since 1.4.0
*/
if ($this->isRegExp($this->filter)) {
$files = $files->filter(function ($file) use ($field) {
return (preg_match($this->filter, $file->filename()) === 1);
});
}
/**
* Filter files by filename if a filter has been set.
*
* @since 1.3.0
*/
elseif ($this->filter) {
$files = $files->filterBy('filename', '*=', $this->filter);
}
return $files;
}
/**
* Generate file slug.
*
* @since 1.0.0
*
* @param \File $file
* @return string
*/
public function itemId($file)
{
return $this->name() . '-' . str::slug($file->filename());
}
/**
* Check if a file is present in the current value.
*
* @since 1.0.0
*
* @param \File $file
* @return bool
*/
public function isInValue($file)
{
return in_array($file->filename(), $this->value());
}
/**
* Check if the types array includes "all".
*
* @since 1.0.0
*
* @return bool
*/
public function includeAllFiles()
{
return in_array('all', $this->types);
}
/**
* Check if a string is a valid regular expression.
*
* @since 1.4.0
*
* @param string $string
* @return bool
*/
public function isRegExp($string)
{
return !(@preg_match($string, null) === false);
}
/**
* Return type filter array.
*
* FIX: This function is required since we create a new variable containing
* a reference to `$this` to overcome the unavailability of `$this within
* closures in PHP < 5.4.0 by passing this new reference with the "use"
* language construct in the `files()` function.
*
* @since 1.4.2
* @return array
*/
public function types()
{
return $this->types;
}
}