-
Notifications
You must be signed in to change notification settings - Fork 1
/
EMT_Base.php
750 lines (645 loc) · 24 KB
/
EMT_Base.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
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
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
<?php
namespace corpsepk\yii2emt;
use corpsepk\yii2emt\EMT_Lib;
use corpsepk\yii2emt\EMT_Tret;
use corpsepk\yii2emt\EMT_Tret_Abbr;
use corpsepk\yii2emt\EMT_Tret_Dash;
use corpsepk\yii2emt\EMT_Tret_Date;
use corpsepk\yii2emt\EMT_Tret_Etc;
use corpsepk\yii2emt\EMT_Tret_Nobr;
use corpsepk\yii2emt\EMT_Tret_Number;
use corpsepk\yii2emt\EMT_Tret_OptAlign;
use corpsepk\yii2emt\EMT_Tret_Punctmark;
use corpsepk\yii2emt\EMT_Tret_Quote;
use corpsepk\yii2emt\EMT_Tret_Space;
use corpsepk\yii2emt\EMT_Tret_Symbol;
use corpsepk\yii2emt\EMT_Tret_Text;
/**
* Основной класс типографа Евгения Муравьёва
* реализует основные методы запуска и рабыоты типографа
*
*/
class EMT_Base
{
private $_text = "";
private $inited = false;
/**
* Список Трэтов, которые надо применить к типогрфированию
*
* @var array
*/
protected $trets = array() ;
protected $trets_index = array() ;
protected $tret_objects = array() ;
public $ok = false;
public $debug_enabled = false;
public $logging = false;
public $logs = array();
public $errors = array();
public $debug_info = array();
private $use_layout = false;
private $class_layout_prefix = false;
private $use_layout_set = false;
public $disable_notg_replace = false;
public $remove_notg = false;
public $settings = array();
protected function log($str, $data = null)
{
if(!$this->logging) return;
$this->logs[] = array('class' => '', 'info' => $str, 'data' => $data);
}
protected function tret_log($tret, $str, $data = null)
{
$this->logs[] = array('class' => $tret, 'info' => $str, 'data' => $data);
}
protected function error($info, $data = null)
{
$this->errors[] = array('class' => '', 'info' => $info, 'data' => $data);
$this->log("ERROR $info", $data );
}
protected function tret_error($tret, $info, $data = null)
{
$this->errors[] = array('class' => $tret, 'info' => $info, 'data' => $data);
}
protected function debug($class, $place, &$after_text, $after_text_raw = "")
{
if(!$this->debug_enabled) return;
$this->debug_info[] = array(
'tret' => $class == $this ? false: true,
'class' => is_object($class)? get_class($class) : $class,
'place' => $place,
'text' => $after_text,
'text_raw' => $after_text_raw,
);
}
protected $_safe_blocks = array();
/**
* Включить режим отладки, чтобы посмотреть последовательность вызовов
* третов и правил после
*
*/
public function debug_on()
{
$this->debug_enabled = true;
}
/**
* Включить режим отладки, чтобы посмотреть последовательность вызовов
* третов и правил после
*
*/
public function log_on()
{
$this->logging = true;
}
/**
* Добавление защищенного блока
*
* <code>
* Jare_Typograph_Tool::addCustomBlocks('<span>', '</span>');
* Jare_Typograph_Tool::addCustomBlocks('\<nobr\>', '\<\/span\>', true);
* </code>
*
* @param string $id идентификатор
* @param string $open начало блока
* @param string $close конец защищенного блока
* @param string $tag тэг
* @return void
*/
private function _add_safe_block($id, $open, $close, $tag)
{
$this->_safe_blocks[] = array(
'id' => $id,
'tag' => $tag,
'open' => $open,
'close' => $close,
);
}
/**
* Список защищенных блоков
*
* @return array
*/
public function get_all_safe_blocks()
{
return $this->_safe_blocks;
}
/**
* Удаленного блока по его номеру ключа
*
* @param string $id идентифиактор защищённого блока
* @return void
*/
public function remove_safe_block($id)
{
foreach($this->_safe_blocks as $k => $block) {
if($block['id']==$id) unset($this->_safe_blocks[$k]);
}
}
/**
* Добавление защищенного блока
*
* @param string $tag тэг, который должен быть защищён
* @return void
*/
public function add_safe_tag($tag)
{
$open = preg_quote("<", '/'). $tag."[^>]*?" . preg_quote(">", '/');
$close = preg_quote("</$tag>", '/');
$this->_add_safe_block($tag, $open, $close, $tag);
return true;
}
/**
* Добавление защищенного блока
*
* @param string $open начало блока
* @param string $close конец защищенного блока
* @param bool $quoted специальные символы в начале и конце блока экранированы
* @return void
*/
public function add_safe_block($id, $open, $close, $quoted = false)
{
$open = trim($open);
$close = trim($close);
if (empty($open) || empty($close))
{
return false;
}
if (false === $quoted)
{
$open = preg_quote($open, '/');
$close = preg_quote($close, '/');
}
$this->_add_safe_block($id, $open, $close, "");
return true;
}
/**
* Сохранение содержимого защищенных блоков
*
* @param string $text
* @param bool $safe если true, то содержимое блоков будет сохранено, иначе - раскодировано.
* @return string
*/
public function safe_blocks($text, $way, $show = true)
{
if (count($this->_safe_blocks))
{
$safeblocks = true === $way ? $this->_safe_blocks : array_reverse($this->_safe_blocks);
foreach ($safeblocks as $block)
{
$text = preg_replace_callback(
"/({$block['open']})(.+?)({$block['close']})/s",
function ($m) use ($way) {
return $m[1].(true === $way ? EMT_Lib::encrypt_tag($m[2]) : stripslashes(EMT_Lib::decrypt_tag($m[2]))).$m[3];
},
$text
);
}
}
return $text;
}
/**
* Декодирование блоков, которые были скрыты в момент типографирования
*
* @param string $text
* @return string
*/
public function decode_internal_blocks($text)
{
return EMT_Lib::decode_internal_blocks($text);
}
private function create_object($tret)
{
if(!class_exists($tret))
{
$this->error("Класс $tret не найден. Пожалуйста, подргузите нужный файл.");
return null;
}
$obj = new $tret();
$obj->EMT = $this;
$obj->logging = $this->logging;
return $obj;
}
private function get_short_tret($tretname)
{
if(preg_match("/^EMT_Tret_([a-zA-Z0-9_]+)$/",$tretname, $m))
{
return $m[1];
}
return $tretname;
}
private function _init()
{
foreach($this->trets as $tret)
{
if(isset($this->tret_objects[$tret])) continue;
$obj = $this->create_object($tret);
if($obj == null) continue;
$this->tret_objects[$tret] = $obj;
}
if(!$this->inited)
{
$this->add_safe_tag('pre');
$this->add_safe_tag('script');
$this->add_safe_tag('style');
$this->add_safe_tag('notg');
$this->add_safe_block('span-notg', '<span class="_notg_start"></span>', '<span class="_notg_end"></span>');
}
$this->inited = true;
}
/**
* Инициализация класса, используется чтобы задать список третов или
* спсиок защищённых блоков, которые можно использовать.
* Такде здесь можно отменить защищённые блоки по умлочнаию
*
*/
public function init()
{
}
/**
* Добавить Трэт,
*
* @param mixed $class - имя класса трета, или сам объект
* @param string $altname - альтернативное имя, если хотим например иметь два одинаоковых терта в обработке
* @return unknown
*/
public function add_tret($class, $altname = false)
{
if(is_object($class))
{
if(!is_a($class, "EMT_Tret"))
{
$this->error("You are adding Tret that doesn't inherit base class EMT_Tret", get_class($class));
return false;
}
$class->EMT = $this;
$class->logging = $this->logging;
$this->tret_objects[($altname ? $altname : get_class($class))] = $class;
$this->trets[] = ($altname ? $altname : get_class($class));
return true;
}
if(is_string($class))
{
$obj = $this->create_object($class);
if($obj === null)
return false;
$this->tret_objects[($altname ? $altname : $class)] = $obj;
$this->trets[] = ($altname ? $altname : $class);
return true;
}
$this->error("Чтобы добавить трэт необходимо передать имя или объект");
return false;
}
/**
* Получаем ТРЕТ по идентивикатору, т.е. заванию класса
*
* @param unknown_type $name
*/
public function get_tret($name)
{
if(isset($this->tret_objects[$name])) return $this->tret_objects[$name];
foreach($this->trets as $tret)
{
if($tret == $name)
{
$this->_init();
return $this->tret_objects[$name];
}
if($this->get_short_tret($tret) == $name)
{
$this->_init();
return $this->tret_objects[$tret];
}
}
$this->error("Трэт с идентификатором $name не найден");
return false;
}
/**
* Задаём текст для применения типографа
*
* @param string $text
*/
public function set_text($text)
{
$this->_text = $text;
}
/**
* Запустить типограф на выполнение
*
*/
public function apply($trets = null)
{
$this->ok = false;
$this->init();
$this->_init();
$atrets = $this->trets;
if(is_string($trets)) $atrets = array($trets);
elseif(is_array($trets)) $atrets = $trets;
$this->debug($this, 'init', $this->_text);
$this->_text = $this->safe_blocks($this->_text, true);
$this->debug($this, 'safe_blocks', $this->_text);
$this->_text = EMT_Lib::safe_tag_chars($this->_text, true);
$this->debug($this, 'safe_tag_chars', $this->_text);
$this->_text = EMT_Lib::clear_special_chars($this->_text);
$this->debug($this, 'clear_special_chars', $this->_text);
foreach ($atrets as $tret)
{
// если установлен режим разметки тэгов то выставим его
if($this->use_layout_set)
$this->tret_objects[$tret]->set_tag_layout_ifnotset($this->use_layout);
if($this->class_layout_prefix)
$this->tret_objects[$tret]->set_class_layout_prefix($this->class_layout_prefix);
// влючаем, если нужно
if($this->debug_enabled) $this->tret_objects[$tret]->debug_on();
if($this->logging) $this->tret_objects[$tret]->logging = true;
// применяем трэт
//$this->tret_objects[$tret]->set_text(&$this->_text);
$this->tret_objects[$tret]->set_text($this->_text);
$this->tret_objects[$tret]->apply();
// соберём ошибки если таковые есть
if(count($this->tret_objects[$tret]->errors)>0)
foreach($this->tret_objects[$tret]->errors as $err )
$this->tret_error($tret, $err['info'], $err['data']);
// логгирование
if($this->logging)
if(count($this->tret_objects[$tret]->logs)>0)
foreach($this->tret_objects[$tret]->logs as $log )
$this->tret_log($tret, $log['info'], $log['data']);
// отладка
if($this->debug_enabled)
foreach($this->tret_objects[$tret]->debug_info as $di)
{
$unsafetext = $di['text'];
$unsafetext = EMT_Lib::safe_tag_chars($unsafetext, false);
$unsafetext = $this->safe_blocks($unsafetext, false);
$this->debug($tret, $di['place'], $unsafetext, $di['text']);
}
}
$this->_text = $this->decode_internal_blocks($this->_text);
$this->debug($this, 'decode_internal_blocks', $this->_text);
if($this->is_on('dounicode'))
{
EMT_Lib::convert_html_entities_to_unicode($this->_text);
}
$this->_text = EMT_Lib::safe_tag_chars($this->_text, false);
$this->debug($this, 'unsafe_tag_chars', $this->_text);
$this->_text = $this->safe_blocks($this->_text, false);
$this->debug($this, 'unsafe_blocks', $this->_text);
if(!$this->disable_notg_replace)
{
$repl = array('<span class="_notg_start"></span>', '<span class="_notg_end"></span>');
if($this->remove_notg) $repl = "";
$this->_text = str_replace( array('<notg>','</notg>'), $repl , $this->_text);
}
$this->_text = trim($this->_text);
$this->ok = (count($this->errors)==0);
return $this->_text;
}
/**
* Получить содержимое <style></style> при использовании классов
*
* @param bool $list false - вернуть в виде строки для style или как массив
* @param bool $compact не выводить пустые классы
* @return string|array
*/
public function get_style($list = false, $compact = false)
{
$this->_init();
$res = array();
foreach ($this->trets as $tret)
{
$arr =$this->tret_objects[$tret]->classes;
if(!is_array($arr)) continue;
foreach($arr as $classname => $str)
{
if(($compact) && (!$str)) continue;
$clsname = ($this->class_layout_prefix ? $this->class_layout_prefix : "" ).(isset($this->tret_objects[$tret]->class_names[$classname]) ? $this->tret_objects[$tret]->class_names[$classname] :$classname);
$res[$clsname] = $str;
}
}
if($list) return $res;
$str = "";
foreach($res as $k => $v)
{
$str .= ".$k { $v }\n";
}
return $str;
}
/**
* Установить режим разметки,
* EMT_Lib::LAYOUT_STYLE - с помощью стилей
* EMT_Lib::LAYOUT_CLASS - с помощью классов
* EMT_Lib::LAYOUT_STYLE|EMT_Lib::LAYOUT_CLASS - оба метода
*
* @param int $layout
*/
public function set_tag_layout($layout = EMT_Lib::LAYOUT_STYLE)
{
$this->use_layout = $layout;
$this->use_layout_set = true;
}
/**
* Установить префикс для классов
*
* @param string|bool $prefix если true то префикс 'emt_', иначе то, что передали
*/
public function set_class_layout_prefix($prefix )
{
$this->class_layout_prefix = $prefix === true ? "emt_" : $prefix;
}
/**
* Включить/отключить правила, согласно карте
* Формат карты:
* 'Название трэта 1' => array ( 'правило1', 'правило2' , ... )
* 'Название трэта 2' => array ( 'правило1', 'правило2' , ... )
*
* @param array $map
* @param boolean $disable если ложно, то $map соотвествует тем правилам, которые надо включить
* иначе это список правил, которые надо выключить
* @param boolean $strict строго, т.е. те которые не в списку будут тоже обработаны
*/
public function set_enable_map($map, $disable = false, $strict = true)
{
if(!is_array($map)) return;
$trets = array();
foreach($map as $tret => $list)
{
$tretx = $this->get_tret($tret);
if(!$tretx)
{
$this->log("Трэт $tret не найден при применении карты включаемых правил");
continue;
}
$trets[] = $tretx;
if($list === true) // все
{
$tretx->activate(array(), !$disable , true);
} elseif(is_string($list)) {
$tretx->activate(array($list), $disable , $strict);
} elseif(is_array($list)) {
$tretx->activate($list, $disable , $strict);
}
}
if($strict)
{
foreach($this->trets as $tret)
{
if(in_array($this->tret_objects[$tret], $trets)) continue;
$this->tret_objects[$tret]->activate(array(), $disable , true);
}
}
}
/**
* Установлена ли настройка
*
* @param string $key
*/
public function is_on($key)
{
if(!isset($this->settings[$key])) return false;
$kk = $this->settings[$key];
return ((strtolower($kk)=="on") || ($kk === "1") || ($kk === true) || ($kk === 1));
}
/**
* Установить настройку
*
* @param mixed $selector
* @param string $setting
* @param mixed $value
*/
protected function doset($selector, $key, $value)
{
$tret_pattern = false;
$rule_pattern = false;
//if(($selector === false) || ($selector === null) || ($selector === false) || ($selector === "*")) $type = 0;
if(is_string($selector))
{
if(strpos($selector,".")===false)
{
$tret_pattern = $selector;
} else {
$pa = explode(".", $selector);
$tret_pattern = $pa[0];
array_shift($pa);
$rule_pattern = implode(".", $pa);
}
}
EMT_Lib::_process_selector_pattern($tret_pattern);
EMT_Lib::_process_selector_pattern($rule_pattern);
if($selector == "*") $this->settings[$key] = $value;
foreach ($this->trets as $tret)
{
$t1 = $this->get_short_tret($tret);
if(!EMT_Lib::_test_pattern($tret_pattern, $t1)) if(!EMT_Lib::_test_pattern($tret_pattern, $tret)) continue;
$tret_obj = $this->get_tret($tret);
if($key == "active")
{
foreach($tret_obj->rules as $rulename => $v)
{
if(!EMT_Lib::_test_pattern($rule_pattern, $rulename)) continue;
if((strtolower($value) === "on") || ($value===1) || ($value === true) || ($value=="1")) $tret_obj->enable_rule($rulename);
if((strtolower($value) === "off") || ($value===0) || ($value === false) || ($value=="0")) $tret_obj->disable_rule($rulename);
}
} else {
if($rule_pattern===false)
{
$tret_obj->set($key, $value);
} else {
foreach($tret_obj->rules as $rulename => $v)
{
if(!EMT_Lib::_test_pattern($rule_pattern, $rulename)) continue;
$tret_obj->set_rule($rulename, $key, $value);
}
}
}
}
}
/**
* Установить настройки для тертов и правил
* 1. если селектор является массивом, то тогда утсановка правил будет выполнена для каждого
* элемента этого массива, как отдельного селектора.
* 2. Если $key не является массивом, то эта настрока будет проставлена согласно селектору
* 3. Если $key массив - то будет задана группа настроек
* - если $value массив , то настройки определяются по ключам из массива $key, а значения из $value
* - иначе, $key содержит ключ-значение как массив
*
* @param mixed $selector
* @param mixed $key
* @param mixed $value
*/
public function set($selector, $key , $value = false)
{
if(is_array($selector))
{
foreach($selector as $val) $this->set($val, $key, $value);
return;
}
if(is_array($key))
{
foreach($key as $x => $y)
{
if(is_array($value))
{
$kk = $y;
$vv = $value[$x];
} else {
$kk = $x;
$vv = $y;
}
$this->set($selector, $kk, $vv);
}
}
$this->doset($selector, $key, $value);
}
/**
* Возвращает список текущих третов, которые установлены
*
*/
public function get_trets_list()
{
return $this->trets;
}
/**
* Установка одной метанастройки
*
* @param string $name
* @param mixed $value
*/
public function do_setup($name, $value)
{
}
/**
* Установить настройки
*
* @param array $setupmap
*/
public function setup($setupmap)
{
if(!is_array($setupmap)) return;
if(isset($setupmap['map']) || isset($setupmap['maps']))
{
if(isset($setupmap['map']))
{
$ret['map'] = $test['params']['map'];
$ret['disable'] = $test['params']['map_disable'];
$ret['strict'] = $test['params']['map_strict'];
$test['params']['maps'] = array($ret);
unset($setupmap['map']);
unset($setupmap['map_disable']);
unset($setupmap['map_strict']);
}
if(is_array($setupmap['maps']))
{
foreach($setupmap['maps'] as $map)
{
$this->set_enable_map
($map['map'],
isset($map['disable']) ? $map['disable'] : false,
isset($map['strict']) ? $map['strict'] : false
);
}
}
unset($setupmap['maps']);
}
foreach($setupmap as $k => $v) $this->do_setup($k , $v);
}
}