class-wpml-st-strings.php
10.3 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
<?php
use WPML\API\Sanitize;
class WPML_ST_Strings {
const EMPTY_CONTEXT_LABEL = 'empty-context-domain';
/**
* @var SitePress
*/
private $sitepress;
/**
* @var WP_Query
*/
private $wp_query;
/**
* @var wpdb
*/
private $wpdb;
public function __construct( $sitepress, $wpdb, $wp_query ) {
$this->wpdb = $wpdb;
$this->sitepress = $sitepress;
$this->wp_query = $wp_query;
}
public function get_string_translations() {
$string_translations = array();
$extra_cond = '';
$active_languages = $this->sitepress->get_active_languages();
// phpcs:disable WordPress.CSRF.NonceVerification.NoNonceVerification
$status_filter = isset( $_GET['status'] ) ? (int) $_GET['status'] : false;
$translation_priority = isset( $_GET['translation-priority'] ) ? $_GET['translation-priority'] : false;
if ( false !== $status_filter ) {
if ( ICL_TM_COMPLETE === $status_filter ) {
$extra_cond .= ' AND s.status = ' . ICL_TM_COMPLETE;
} elseif ( ICL_STRING_TRANSLATION_PARTIAL === $status_filter ) {
$extra_cond .= ' AND s.status = ' . ICL_STRING_TRANSLATION_PARTIAL;
} elseif ( ICL_TM_WAITING_FOR_TRANSLATOR !== $status_filter ) {
$extra_cond .= ' AND s.status IN (' . ICL_STRING_TRANSLATION_PARTIAL . ',' . ICL_TM_NEEDS_UPDATE . ',' . ICL_TM_NOT_TRANSLATED . ',' . ICL_TM_WAITING_FOR_TRANSLATOR . ')';
}
}
if ( false !== $translation_priority ) {
/** @var string $esc_translation_priority */
$esc_translation_priority = esc_sql( $translation_priority );
if ( __( 'Optional', 'sitepress' ) === $translation_priority ) {
$extra_cond .= " AND s.translation_priority IN ( '" . $esc_translation_priority . "', '' ) ";
} else {
$extra_cond .= " AND s.translation_priority = '" . $esc_translation_priority . "' ";
}
}
if ( array_key_exists( 'context', $_GET ) ) {
$context = stripslashes( html_entity_decode( (string) Sanitize::stringProp( 'context', $_GET ), ENT_QUOTES ) );
if ( self::EMPTY_CONTEXT_LABEL === $context ) {
$context = '';
}
}
if ( isset( $context ) ) {
/** @phpstan-ignore-next-line */
$extra_cond .= $this->wpdb->prepare( ' AND s.context = %s ', $context );
}
if ( $this->must_show_all_results() ) {
$limit = 9999;
$offset = 0;
} else {
$limit = $this->get_strings_per_page();
$_GET['paged'] = isset( $_GET['paged'] ) ? $_GET['paged'] : 1;
$offset = ( $_GET['paged'] - 1 ) * $limit;
}
$search_filter = $this->get_search_filter();
$joins = [];
$sql_query = ' WHERE 1 ';
if ( ICL_TM_WAITING_FOR_TRANSLATOR === $status_filter ) {
$sql_query .= ' AND s.status = ' . ICL_TM_WAITING_FOR_TRANSLATOR;
} elseif ( $active_languages && $search_filter && ! $this->must_show_all_results() ) {
$sql_query .= ' AND ' . $this->get_value_search_query();
$joins[] = "LEFT JOIN {$this->wpdb->prefix}icl_string_translations str ON str.string_id = s.id";
}
if ( $this->is_troubleshooting_filter_enabled() ) {
// This is a troubleshooting filter, it should display only String Translation elements that are in a wrong state.
// @see wpmldev-1920 - Strings that are incorrectly duplicated when re-translating a post that was edited using native editor.
$joins[] = ' LEFT JOIN ' . $this->wpdb->prefix . 'icl_string_packages sp ON sp.ID = s.string_package_id';
$joins[] = ' INNER JOIN ' . $this->wpdb->prefix . 'icl_translate it ON it.field_data_translated = sp.name';
$sql_query .=' AND it.field_type="original_id"';
}
$res = $this->get_results( $sql_query, $extra_cond, $offset, $limit, $joins );
if ( $res ) {
$extra_cond = '';
if ( isset( $_GET['translation_language'] ) ) {
/** @var string $translation_language */
$translation_language = esc_sql( $_GET['translation_language'] );
$extra_cond .= " AND language='" . $translation_language . "'";
}
foreach ( $res as $row ) {
$string_translations[ $row['string_id'] ] = $row;
// phpcs:disable WordPress.WP.PreparedSQL.NotPrepared
$tr = $this->wpdb->get_results(
$this->wpdb->prepare(
"
SELECT id, language, status, value, mo_string, translator_id, translation_date
FROM {$this->wpdb->prefix}icl_string_translations
WHERE string_id=%d {$extra_cond}
",
$row['string_id']
),
ARRAY_A
);
if ( $tr ) {
foreach ( $tr as $t ) {
$string_translations[ $row['string_id'] ]['translations'][ $t['language'] ] = $t;
}
}
}
}
return WPML\ST\Basket\Status::add( $string_translations, array_keys( $active_languages ) );
}
/**
* @return string
*/
private function get_value_search_query() {
$language_where = wpml_collect(
[
$this->get_original_value_filter_sql(),
$this->get_name_filter_sql(),
$this->get_context_filter_sql(),
]
);
$search_context = $this->get_search_context_filter();
if ( $search_context['translation'] ) {
$language_where->push( $this->get_translation_value_filter_sql() );
}
if ( $search_context['mo_string'] ) {
$language_where->push( $this->get_mo_file_value_filter_sql() );
}
return sprintf( '((%s))', $language_where->implode( ') OR (' ) );
}
/**
* @return string
*/
private function get_original_value_filter_sql() {
return $this->get_column_filter_sql( 's.value', $this->get_search_filter(), $this->is_exact_match() );
}
/**
* @return string
*/
private function get_name_filter_sql() {
return $this->get_column_filter_sql( 's.name', $this->get_search_filter(), $this->is_exact_match() );
}
/**
* @return string
*/
private function get_context_filter_sql() {
return $this->get_column_filter_sql( 's.gettext_context', $this->get_search_filter(), $this->is_exact_match() );
}
/**
* @return string
*/
private function get_translation_value_filter_sql() {
return $this->get_column_filter_sql( 'str.value', $this->get_search_filter(), $this->is_exact_match() );
}
/**
* @return string
*/
private function get_mo_file_value_filter_sql() {
return $this->get_column_filter_sql( 'str.mo_string', $this->get_search_filter(), $this->is_exact_match() );
}
/**
* @param string $column
* @param string|null|false $search_filter
* @param bool|null $exact_match
*
* @return string
*/
private function get_column_filter_sql( $column, $search_filter, $exact_match ) {
/** @var string $search_filter_html */
$search_filter_html = esc_html( (string) $search_filter );
$column = esc_sql( $column );
$search_filter = esc_sql( (string) $search_filter );
$search_filter_html = esc_sql( $search_filter_html );
if ( $search_filter === $search_filter_html ) {
// No special characters involved.
return $exact_match
? "$column = '$search_filter'"
: "$column LIKE '%$search_filter%'";
}
/** @var string $replaced_search_filter */
$replaced_search_filter = $search_filter ? str_replace( "'", "'", $search_filter ) : '';
// Special characters involved - search also for HTML version.
return $exact_match
? "($column = '$search_filter' OR $column = '$search_filter_html')"
: "($column LIKE '%$search_filter%' OR $column LIKE '%$search_filter_html%')";
}
public function get_per_domain_counts( $status ) {
$extra_cond = '';
if ( false !== $status ) {
if ( ICL_TM_COMPLETE === $status ) {
$extra_cond .= ' AND s.status = ' . ICL_TM_COMPLETE;
} else {
$extra_cond .= ' AND s.status IN (' . ICL_STRING_TRANSLATION_PARTIAL . ',' . ICL_TM_NEEDS_UPDATE . ',' . ICL_TM_NOT_TRANSLATED . ')';
}
}
$results = $this->wpdb->get_results(
"
SELECT context, COUNT(context) AS c
FROM {$this->wpdb->prefix}icl_strings s
WHERE 1 {$extra_cond} AND TRIM(s.value) <> ''
GROUP BY context
ORDER BY context ASC"
);
return $results;
}
private function get_strings_per_page() {
$st_settings = $this->sitepress->get_setting( 'st' );
return isset( $st_settings['strings_per_page'] ) ? $st_settings['strings_per_page'] : WPML_ST_DEFAULT_STRINGS_PER_PAGE;
}
private function get_results( $where_snippet, $extra_cond, $offset, $limit, $joins = array(), $selects = array() ) {
$query = $this->build_sql_start( $selects, $joins );
$query .= $where_snippet;
$query .= " {$extra_cond} ";
$query .= $this->filter_empty_order_snippet( $offset, $limit );
$res = $this->wpdb->get_results( $query, ARRAY_A );
$this->set_pagination_counts( $limit );
return $res;
}
private function filter_empty_order_snippet( $offset, $limit ) {
return " AND TRIM(s.value) <> '' ORDER BY string_id DESC LIMIT {$offset},{$limit}";
}
private function set_pagination_counts( $limit ) {
if ( ! is_null( $this->wp_query ) ) {
$this->wp_query->found_posts = $this->wpdb->get_var( 'SELECT FOUND_ROWS()' );
$this->wp_query->query_vars['posts_per_page'] = $limit;
$this->wp_query->max_num_pages = ceil( $this->wp_query->found_posts / $limit );
}
}
private function build_sql_start( $selects = array(), $joins = array() ) {
array_unshift( $selects, 'SQL_CALC_FOUND_ROWS DISTINCT(s.id) AS string_id, s.language AS string_language, s.string_package_id, s.context, s.gettext_context, s.name, s.value, s.status AS status, s.translation_priority' );
return 'SELECT ' . implode( ', ', $selects ) . " FROM {$this->wpdb->prefix}icl_strings s " . implode( PHP_EOL, $joins ) . ' ';
}
/**
* @return string|false
*/
private function get_search_filter() {
if ( array_key_exists( 'search', $_GET ) ) {
return stripcslashes( $_GET['search'] );
}
return false;
}
/**
* @return bool
*/
private function is_exact_match() {
if ( array_key_exists( 'em', $_GET ) ) {
return 1 === (int) $_GET['em'];
}
return false;
}
/**
* @return array
*/
private function get_search_context_filter() {
$result = array(
'original' => true,
'translation' => false,
'mo_string' => false,
);
if ( array_key_exists( 'search_translation', $_GET ) && ! $this->must_show_all_results() ) {
$result['translation'] = (bool) $_GET['search_translation'];
$result['mo_string'] = (bool) $_GET['search_translation'];
}
return $result;
}
/**
* @return bool
*/
private function is_troubleshooting_filter_enabled() {
return array_key_exists( 'troubleshooting', $_GET ) && $_GET['troubleshooting'] === '1';
}
/**
* @return bool
*/
private function must_show_all_results() {
return isset( $_GET['show_results'] ) && 'all' === $_GET['show_results'];
}
}