/var/www/html_nl/wp-content/plugins/query-monitor/collectors/languages.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
<?php declare(strict_types 1);
/**
 * Language and locale collector.
 *
 * @package query-monitor
 */

if ( ! defined'ABSPATH' ) ) {
    exit;
}

/**
 * @extends QM_DataCollector<QM_Data_Languages>
 */
class QM_Collector_Languages extends QM_DataCollector {

    public 
$id 'languages';

    public function 
get_storage(): QM_Data {
        return new 
QM_Data_Languages();
    }

    
/**
     * @return void
     */
    
public function set_up() {

        
parent::set_up();

        
add_filter'load_textdomain_mofile', array( $this'log_mo_file_load' ), 9999);
        
add_filter'load_translation_file', array( $this'log_translation_file_load' ), 9999);
        
add_filter'load_script_translation_file', array( $this'log_script_file_load' ), 9999);
        
add_action'init', array( $this'collect_locale_data' ), 9999 );

    }

    
/**
     * @return void
     */
    
public function tear_down() {
        
remove_filter'load_textdomain_mofile', array( $this'log_mo_file_load' ), 9999 );
        
remove_filter'load_translation_file', array( $this'log_translation_file_load' ), 9999 );
        
remove_filter'load_script_translation_file', array( $this'log_script_file_load' ), 9999 );
        
remove_action'init', array( $this'collect_locale_data' ), 9999 );

        
parent::tear_down();
    }

    
/**
     * @return void
     */
    
public function collect_locale_data() {
        
$this->data->locale get_locale();
        
$this->data->user_locale get_user_locale();
        
$this->data->determined_locale determine_locale();
        
$this->data->language_attributes get_language_attributes();

        if ( 
function_exists'\Inpsyde\MultilingualPress\siteLanguageTag' ) ) {
            
$this->data->mlp_language \Inpsyde\MultilingualPress\siteLanguageTag();
        }

        if ( 
function_exists'pll_current_language' ) ) {
            
$this->data->pll_language pll_current_language();
        }
    }

    
/**
     * @return array<int, string>
     */
    
public function get_concerned_actions() {
        return array(
            
'load_textdomain',
            
'unload_textdomain',
        );
    }

    
/**
     * @return array<int, string>
     */
    
public function get_concerned_filters() {
        return array(
            
'determine_locale',
            
'gettext',
            
'gettext_with_context',
            
'lang_dir_for_domain',
            
'language_attributes',
            
'load_script_textdomain_relative_path',
            
'load_script_translation_file',
            
'load_script_translations',
            
'load_textdomain_mofile',
            
'load_translation_file',
            
'locale',
            
'ngettext',
            
'ngettext_with_context',
            
'override_load_textdomain',
            
'override_unload_textdomain',
            
'plugin_locale',
            
'pre_determine_locale',
            
'pre_get_language_files_from_path',
            
'pre_load_script_translations',
            
'pre_load_textdomain',
            
'theme_locale',
            
'translation_file_format',
        );
    }

    
/**
     * @return array<int, string>
     */
    
public function get_concerned_options() {
        return array(
            
'WPLANG',
        );
    }

    
/**
     * @return array<int, string>
     */
    
public function get_concerned_constants() {
        return array(
            
'WPLANG',
        );
    }

    
/**
     * @return void
     */
    
public function process() {
        if ( empty( 
$this->data->languages ) ) {
            return;
        }

        
$this->data->total_size 0;

        
ksort$this->data->languages );

        foreach ( 
$this->data->languages as & $mofiles ) {
            foreach ( 
$mofiles as & $mofile ) {
                if ( 
$mofile['found'] ) {
                    
$this->data->total_size += $mofile['found'];
                }
            }
        }
    }

    
/**
     * Store log data for MO translation files prior to 6.5.
     *
     * @phpstan-template T
     *
     * @param mixed  $file Should be a string path to the MO file, could be anything.
     * @param string $domain Text domain.
     * @return string The original file path.
     * @phpstan-param T $file
     * @phpstan-return T
     */
    
public function log_mo_file_load$file$domain ) {
        if ( 
class_exists'WP_Translation_Controller' ) ) {
            return 
$file;
        }

        
$found is_string$file ) && file_exists$file );

        return 
$this->log_file_load$file$domain$found );
    }

    
/**
     * Store log data for MO and PHP translation files in 6.5 and later.
     *
     * @phpstan-template T
     *
     * @param mixed  $file   Should be a string path to the MO or PHP file, could be anything.
     * @param string $domain Text domain.
     * @param string $locale Locale. Only present in 6.6 and later.
     * @return string The original file path.
     * @phpstan-param T $file
     * @phpstan-return T
     */
    
public function log_translation_file_load$file$domain, ?string $locale null ) {
        if ( ! 
is_string$file ) ) {
            
// ¯\_(ツ)_/¯
            
return $file;
        }

        
// @phpstan-ignore WPCompat.methodNotAvailable
        
$i18n_controller \WP_Translation_Controller::get_instance();

        
// @phpstan-ignore WPCompat.methodNotAvailable
        
$found $i18n_controller->load_file$file$domain$locale ?? determine_locale() );

        return 
$this->log_file_load$file$domain$found );
    }

    
/**
     * Store log data.
     *
     * @phpstan-template T
     *
     * @param mixed  $mofile Should be a string path to the MO or PHP file, could be anything.
     * @param string $domain Text domain.
     * @param bool   $loaded Whether the translation file was found and loaded.
     * @return string The original file path.
     * @phpstan-param T $mofile
     * @phpstan-return T
     */
    
public function log_file_load$mofile$domain$loaded ) {
        if ( 
'query-monitor' === $domain && self::hide_qm() ) {
            return 
$mofile;
        }

        if ( 
is_string$mofile ) && isset( $this->data->languages$domain ][ $mofile ] ) ) {
            return 
$mofile;
        }

        
$trace = new QM_Backtrace( array(
            
'ignore_hook' => array(
                
current_filter() => true,
            ),
            
'ignore_func' => array(
                
'load_textdomain' => ( 'default' !== $domain ),
                
'load_muplugin_textdomain' => true,
                
'load_plugin_textdomain' => true,
                
'load_theme_textdomain' => true,
                
'load_child_theme_textdomain' => true,
                
'load_default_textdomain' => true,
                
'_load_textdomain_just_in_time' => true,
                
'get_translations_for_domain' => true,
                
'translate_with_gettext_context' => true,
                
'translate_settings_using_i18n_schema' => true,
            ),
        ) );

        
$found = ( $loaded && is_string$mofile ) ) ? filesize$mofile ) : false;
        
$file $mofile;

        if ( 
is_string$file ) ) {
            switch ( 
pathinfo$filePATHINFO_EXTENSION ) ) {
                case 
'mo':
                    
$type 'gettext';
                    break;
                case 
'php':
                    
$type 'php';
                    break;
                default:
                    
$type 'unknown';
                    break;
            }
        } else {
            
$type 'unknown';
            
$file $type;
        }

        
$this->data->languages$domain ][ $mofile ] = array(
            
'caller' => $trace->get_caller(),
            
'domain' => $domain,
            
'file' => $file,
            
'found' => $found,
            
'handle' => null,
            
'type' => $type,
        );

        return 
$mofile;

    }

    
/**
     * Filters the file path for loading script translations for the given script handle and textdomain.
     *
     * @param string|false $file   Path to the translation file to load. False if there isn't one.
     * @param string       $handle Name of the script to register a translation domain to.
     * @param string       $domain The textdomain.
     *
     * @return string|false Path to the translation file to load. False if there isn't one.
     */
    
public function log_script_file_load$file$handle$domain ) {
        
$trace = new QM_Backtrace( array(
            
'ignore_hook' => array(
                
current_filter() => true,
            ),
        ) );

        
$found = ( $file && file_exists$file ) ) ? filesize$file ) : false;
        
$key $file ?: uniqid();

        
$this->data->languages$domain ][ $key ] = array(
            
'caller' => $trace->get_caller(),
            
'domain' => $domain,
            
'file' => $file,
            
'found' => $found,
            
'handle' => $handle,
            
'type' => 'jed',
        );

        return 
$file;
    }

}

# Load early to catch early errors
QM_Collectors::add( new QM_Collector_Languages() );