-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEMT_Tret_Quote.php
173 lines (155 loc) · 7.01 KB
/
EMT_Tret_Quote.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
<?php
namespace corpsepk\yii2emt;
/**
* @see EMT_Tret
*/
class EMT_Tret_Quote extends \corpsepk\yii2emt\EMT_Tret
{
/**
* Базовые параметры тофа
*
* @var array
*/
public $title = "Кавычки";
public $rules = array(
'quotes_outside_a' => array(
'description' => 'Кавычки вне тэга <a>',
//'pattern' => '/(\<%%\_\_.+?\>)\"(.+?)\"(\<\/%%\_\_.+?\>)/s',
'pattern' => '/(\<%%\_\_[^\>]+\>)\"(.+?)\"(\<\/%%\_\_[^\>]+\>)/s',
'replacement' => '"\1\2\3"'
),
'open_quote' => array(
'description' => 'Открывающая кавычка',
'pattern' => '/(^|\(|\s|\>|-)(\"|\\\")(\S+)/iue',
'replacement' => '$m[1] . self::QUOTE_FIRS_OPEN . $m[3]'
),
'close_quote' => array(
'description' => 'Закрывающая кавычка',
'pattern' => '/([a-zа-яё0-9]|\.|\&hellip\;|\!|\?|\>|\)|\:)((\"|\\\")+)(\.|\&hellip\;|\;|\:|\?|\!|\,|\s|\)|\<\/|$)/uie',
'replacement' => '$m[1] . str_repeat(self::QUOTE_FIRS_CLOSE, substr_count($m[2],"\"") ) . $m[4]'
),
'close_quote_adv' => array(
'description' => 'Закрывающая кавычка особые случаи',
//'pattern' => '/([a-zа-яё0-9]|\.|\&hellip\;|\!|\?|\>|\)|\:)((\"|\\\"|\«\;)+)(\<.+?\>)(\.|\&hellip\;|\;|\:|\?|\!|\,|\s|\)|\<\/|$)/uie',
'pattern' =>
array(
'/([a-zа-яё0-9]|\.|\&hellip\;|\!|\?|\>|\)|\:)((\"|\\\"|\«\;)+)(\<[^\>]+\>)(\.|\&hellip\;|\;|\:|\?|\!|\,|\)|\<\/|$| )/uie',
'/([a-zа-яё0-9]|\.|\&hellip\;|\!|\?|\>|\)|\:)(\s+)((\"|\\\")+)(\s+)(\.|\&hellip\;|\;|\:|\?|\!|\,|\)|\<\/|$| )/uie',
'/\>(\«\;)\.($|\s|\<)/ui',
'/\>(\«\;),($|\s|\<|\S)/ui',
'/\>(\«\;):($|\s|\<|\S)/ui',
),
'replacement' =>
array(
'$m[1] . str_repeat(self::QUOTE_FIRS_CLOSE, substr_count($m[2],"\"")+substr_count($m[2],"«") ) . $m[4]. $m[5]',
'$m[1] .$m[2]. str_repeat(self::QUOTE_FIRS_CLOSE, substr_count($m[3],"\"")+substr_count($m[3],"«") ) . $m[5]. $m[6]',
'>».\2',
'>»,\2',
'>»:\2',
),
),
'open_quote_adv' => array(
'description' => 'Открывающая кавычка особые случаи',
'pattern' => '/(^|\(|\s|\>)(\"|\\\")(\s)(\S+)/iue',
'replacement' => '$m[1] . self::QUOTE_FIRS_OPEN .$m[4]'
),
'quotation' => array(
'description' => 'Внутренние кавычки-лапки и дюймы',
'function' => 'build_sub_quotations'
),
);
protected function inject_in($pos, $text)
{
for($i=0;$i<strlen($text);$i++) $this->_text[$pos+$i] = $text[$i];
}
protected function build_sub_quotations()
{
global $__ax,$__ay;
$okposstack = array('0');
$okpos = 0;
$level = 0;
$off = 0;
while(true)
{
$p = EMT_Lib::strpos_ex($this->_text, array("«", "»"), $off);
if($p===false) break;
if($p['str'] == "«")
{
if($level>0) if(!$this->is_on('no_bdquotes')) $this->inject_in($p['pos'], self::QUOTE_CRAWSE_OPEN);
$level++;
}
if($p['str'] == "»")
{
$level--;
if($level>0) if(!$this->is_on('no_bdquotes')) $this->inject_in($p['pos'], self::QUOTE_CRAWSE_CLOSE);
}
$off = $p['pos']+strlen($p['str']);
if($level == 0)
{
$okpos = $off;
array_push($okposstack, $okpos);
} elseif($level<0) // уровень стал меньше нуля
{
if(!$this->is_on('no_inches'))
{
do{
$lokpos = array_pop($okposstack);
$k = substr($this->_text, $lokpos, $off-$lokpos);
$k = str_replace(self::QUOTE_CRAWSE_OPEN, self::QUOTE_FIRS_OPEN, $k);
$k = str_replace(self::QUOTE_CRAWSE_CLOSE, self::QUOTE_FIRS_CLOSE, $k);
//$k = preg_replace("/(^|[^0-9])([0-9]+)\»\;/ui", '\1\2″', $k, 1, $amount);
$amount = 0;
$__ax = preg_match_all("/(^|[^0-9])([0-9]+)\»\;/ui", $k, $m);
$__ay = 0;
if($__ax)
{
$k = preg_replace_callback(
"/(^|[^0-9])([0-9]+)\»\;/ui",
function ($m) {
global $__ax,$__ay;
$__ay++;
if ($__ay==$__ax) {
return $m[1].$m[2]."″";
}
return $m[0];
},
$k
);
$amount = 1;
}
} while(($amount==0) && count($okposstack));
// успешно сделали замену
if($amount == 1)
{
// заново просмотрим содержимое
$this->_text = substr($this->_text, 0, $lokpos). $k . substr($this->_text, $off);
$off = $lokpos;
$level = 0;
continue;
}
// иначе просто заменим последнюю явно на " от отчаяния
if($amount == 0)
{
// говорим, что всё в порядке
$level = 0;
$this->_text = substr($this->_text, 0, $p['pos']). '"' . substr($this->_text, $off);
$off = $p['pos'] + strlen('"');
$okposstack = array($off);
continue;
}
}
}
}
// не совпало количество, отменяем все подкавычки
if($level != 0 ){
// закрывающих меньше, чем надо
if($level>0)
{
$k = substr($this->_text, $okpos);
$k = str_replace(self::QUOTE_CRAWSE_OPEN, self::QUOTE_FIRS_OPEN, $k);
$k = str_replace(self::QUOTE_CRAWSE_CLOSE, self::QUOTE_FIRS_CLOSE, $k);
$this->_text = substr($this->_text, 0, $okpos). $k;
}
}
}
}