-
Notifications
You must be signed in to change notification settings - Fork 72
/
locallib.php
444 lines (395 loc) · 16.2 KB
/
locallib.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
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* Code checker library code.
*
* @package local_codechecker
* @copyright 2011 The Open University
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die;
require_once($CFG->libdir . '/formslib.php');
// Default errors severity level.
if (defined('PHPCS_DEFAULT_ERROR_SEV') === false) {
define('PHPCS_DEFAULT_ERROR_SEV', 5);
}
// Default warnings severity level.
if (defined('PHPCS_DEFAULT_WARN_SEV') === false) {
define('PHPCS_DEFAULT_WARN_SEV', 5);
}
/**
* Settings form for the code checker.
*
* @copyright 2011 The Open University
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class local_codechecker_form extends moodleform {
/**
* Define all the elements of the form.
*/
protected function definition() {
$mform = $this->_form;
$a = new stdClass();
$a->link = html_writer::link('https://moodledev.io/general/development/policies/codingstyle',
get_string('moodlecodingguidelines', 'local_codechecker'));
$a->path = html_writer::tag('tt', 'local/codechecker');
$a->excludeexample = html_writer::tag('tt', 'db, backup/*1, *lib*');
$mform->addElement('static', '', '', get_string('info', 'local_codechecker', $a));
$mform->addElement('textarea', 'path', get_string('path', 'local_codechecker'), ['rows' => '4', 'cols' => 48]);
$mform->setType('path', PARAM_RAW);
$mform->addRule('path', null, 'required', null, 'client');
$mform->addElement('text', 'exclude', get_string('exclude', 'local_codechecker'), ['size' => '48']);
$mform->setType('exclude', PARAM_NOTAGS);
$mform->setDefault('exclude', '');
$mform->addElement('advcheckbox', 'includewarnings', get_string('includewarnings', 'local_codechecker'));
$mform->setType('includewarnings', PARAM_BOOL);
$mform->addElement('advcheckbox', 'showstandard', get_string('showstandard', 'local_codechecker'));
$mform->setType('showstandard', PARAM_BOOL);
$mform->setDefault('showstandard', false);
$mform->addElement('submit', 'submitbutton', get_string('check', 'local_codechecker'));
}
}
/**
* Auto load all the tools that codechecker needs.
*
* @return bool true on success, false with problems.
*/
function autoload_tools(): bool {
$vendordir = '';
$phpcsdir = '';
// Verify that we have the vendor directory at hand (it contains all the tools).
if (is_dir(__DIR__ . '/vendor') &&
file_exists(__DIR__ . '/vendor/autoload.php')) {
$vendordir = __DIR__ . '/vendor';
} else {
return false;
}
// Verify that the vendor dir has phpcs installed.
if (is_dir($vendordir . '/squizlabs/php_codesniffer') &&
file_exists($vendordir . '/squizlabs/php_codesniffer/autoload.php')) {
$phpcsdir = $vendordir . '/squizlabs/php_codesniffer';
} else {
return false;
}
require_once($phpcsdir . '/autoload.php');
return true;
}
/**
* Convert a full path name to a relative one, for output.
* @param string $file a full path name of a file.
* @return string the prettied up path name.
*/
function local_codechecker_pretty_path($file) {
global $CFG;
return substr($file, strlen($CFG->dirroot) + 1);
}
/**
* Get a list of folders to ignores.
*
* @param string $extraignorelist optional comma separated list of substring matching paths to ignore.
* @return array of paths.
*/
function local_codesniffer_get_ignores($extraignorelist = '') {
global $CFG;
$files = []; // XML files to be processed.
$paths = []; // Absolute paths to be excluded.
$files['core'] = $CFG->libdir . DIRECTORY_SEPARATOR . '/thirdpartylibs.xml'; // This one always exists.
// With MDL-42148, for 2.6 and upwards, the general 'thirdpartylibs.xml' file
// has been split so any plugin with dependencies can have its own. In order to
// keep main compatibility with older branches we are doing some
// conditional coding here.
if (file_exists($CFG->dirroot . '/' . $CFG->admin . '/' . 'thirdpartylibs.php')) {
// New behavior, distributed XML files, let's look for them.
$plugintypes = core_component::get_plugin_types();
foreach ($plugintypes as $type => $ignored) {
$plugins = core_component::get_plugin_list_with_file($type, 'thirdpartylibs.xml', false);
foreach ($plugins as $plugin => $path) {
$files[$type.'_'.$plugin] = $path;
}
}
}
// Let's extract all the paths from the XML files.
foreach ($files as $file) {
$base = realpath(dirname($file));
$thirdparty = simplexml_load_file($file);
foreach ($thirdparty->xpath('/libraries/library/location') as $location) {
$location = substr($base, strlen($CFG->dirroot)) . '/' . $location;
// This was happening since ages ago, leading to incorrect excluded
// paths like: "/lib/theme/bootstrapbase/less/bootstrap", so we try
// reducing it. Note this does not affect 2.6 and up, where all
// locations are relative to their xml file so this problem cannot happen.
if (!file_exists(dirname($CFG->dirroot . DIRECTORY_SEPARATOR . $location))) {
// Only if it starts with '/lib'.
if (strpos($location, DIRECTORY_SEPARATOR . 'lib') === 0) {
$candidate = substr($location, strlen(DIRECTORY_SEPARATOR . 'lib'));
// Only modify the original location if the candidate exists.
if (file_exists(dirname($CFG->dirroot . DIRECTORY_SEPARATOR . $candidate))) {
$location = $candidate;
}
}
}
// Accept only correct paths from XML files.
if (file_exists(dirname($CFG->dirroot . DIRECTORY_SEPARATOR . $location))) {
$paths[] = preg_quote(local_codechecker_clean_path($location));
} else {
debugging("Processing $file for exclusions, incorrect $location path found. Please fix it");
}
}
}
// Manually add our own phpcs stuff to be excluded.
$paths[] = preg_quote(local_codechecker_clean_path(
'/local/codechecker' . DIRECTORY_SEPARATOR . 'phpcs'));
// Changed in PHP_CodeSniffer 1.4.4 and upwards, so we apply the
// same here: Paths go to keys and mark all them as 'absolute'.
$finalpaths = [];
foreach ($paths as $pattern) {
$finalpaths[$pattern] = 'absolute';
}
// Let's add any substring matching path passed in $extraignorelist.
if ($extraignorelist) {
$extraignorearr = explode(',', $extraignorelist);
foreach ($extraignorearr as $extraignore) {
// Don't register empty ignores.
if (trim($extraignore)) {
$extrapath = trim($extraignore);
$finalpaths[$extrapath] = 'absolute';
}
}
}
// Ignore any compiled JS and test fixtures.
$finalpaths['*/amd/build/*'] = 'absolute';
$finalpaths['*/yui/build/*'] = 'absolute';
if (!defined('BEHAT_SITE_RUNNING')) { // We need testing fixtures at hand for testing purposes, heh.
$finalpaths['*/tests/fixtures/*'] = 'absolute';
}
return $finalpaths;
}
/**
* Get the source code for a given file and line.
*
* @param int $line line number.
* @param string $prettypath file to get the source code from
*
* @return string the contents of the requested line.
*/
function local_codechecker_get_line_of_code($line, $prettypath) {
global $CFG;
static $lastfilename = null;
static $file = null;
if ($prettypath != $lastfilename) {
$file = file($CFG->dirroot . '/' . $prettypath);
$lastfilename = $prettypath;
}
// Handle empty files.
$linecontents = empty($file) ? '' : $file[$line - 1];
// Handle empty lines.
if (trim($linecontents) === '') {
$linecontents = 'Ø';
}
return $linecontents;
}
/**
* Clean paths, normalising separators.
*
* The code-checker code assumes that paths always use DIRECTORY_SEPARATOR,
* whereas Moodle is more relaxed than that. This method cleans up file paths by
* converting all / and \ to DIRECTORY_SEPARATOR. It should be used whenever a
* path is passed to the CodeSniffer library.
*
* @param string $path a file path
*
* @return string The path with all directory separators changed to DIRECTORY_SEPARATOR.
*/
function local_codechecker_clean_path($path) {
return str_replace(['\\', '/'], DIRECTORY_SEPARATOR, $path);
}
/**
* Recursively finds all files within a folder that match particular extensions.
*
* @param array $arr Array to add file paths to
* @param string $folder Path to search (or may be a single file)
* @param array $ignores list of paths (substring matching, asterisk as wild-char that must be ignored).
* @param array $extensions File extensions to include (not including .)
*/
function local_codechecker_find_other_files(&$arr, $folder, $ignores, $extensions = ['txt', 'html', 'csv']) {
// To detect changes in the passed params.
static $stignores = [];
static $stextensions = [];
// To set the regex only once while the params don't change).
static $regex = '';
static $ignoresregex = '';
// If the ignores or the extensions have changed, recalculate regex expressions.
if ($stignores !== $ignores || $stextensions !== $extensions) {
// Save last params.
$stignores = $ignores;
$stextensions = $extensions;
// Finder regex.
$regex = '~\.(' . implode('|', $extensions) . ')$~';
// Ignores regex.
$ignoresarr = [];
$ignoresregex = '~THIS_IS_A_NON_MATCHER~';
foreach ($ignores as $ignore) {
$ignore = preg_quote($ignore);
$ignore = str_replace('\*', '.*', $ignore);
$ignoresarr[] = $ignore;
}
if ($ignoresarr) {
$ignoresregex = '~(' . implode('|', $ignoresarr) . ')~';
}
}
// Handle if this is called directly with a file and not folder.
if (is_file($folder)) {
if (preg_match($regex, $folder) && !preg_match($ignoresregex, $folder)) {
$arr[] = $folder;
}
return;
}
if (is_dir($folder)) {
$handle = opendir($folder);
while (($file = readdir($handle)) !== false) {
$fullpath = $folder . '/' . $file;
if ($file === '.' || $file === '..') {
continue;
} else if (is_file($fullpath)) {
if (preg_match($regex, $fullpath) && !preg_match($ignoresregex, $fullpath)) {
$arr[] = $fullpath;
}
} else if (is_dir($fullpath)) {
local_codechecker_find_other_files($arr, $fullpath, $ignores, $extensions);
}
}
closedir($handle);
} else {
throw new moodle_exception('error_find', 'local_codechecker');
}
}
/**
* Adds a problem report with a given file.
*
* @param SimpleXMLElement $fileinxml structure to which new problem will be added.
* @param string $file File path
* @param int $line Line number (1-based)
* @param string $key key within language file ('other_' will be prepended)
* @param bool $warning if true is warning, otherwise error
*/
function local_codechecker_add_problem($fileinxml, $file, $line, $key, $warning=false) {
$type = $warning ? 'warning' : 'error';
$counter = $warning ? 'warnings' : 'errors';
// Add the new problem.
$newproblem = $fileinxml->addChild($type, get_string('other_' . $key, 'local_codechecker'));
$newproblem->addAttribute('line', $line);
$newproblem->addAttribute('column', 0);
$newproblem->addAttribute('source', 'other.' . $key);
$newproblem->addAttribute('severity', $warning ? PHPCS_DEFAULT_WARN_SEV : PHPCS_DEFAULT_ERROR_SEV);
// Increment error/warning counters.
$fileinxml[$counter] = $fileinxml[$counter] + 1;
}
/**
* Checks an individual other file and adds basic problems to result.
* @param string $file File to check
* @param SimpleXMLElement $xml structure containin all violations
* to which new problems will be added.
*/
function local_codechecker_check_other_file($file, $xml) {
// If the file does not exist, add it.
$fileinxml = $xml->xpath("file[@name='$file']");
if (!count($fileinxml)) {
$fileinxml = $xml->addChild('file');
$fileinxml->addAttribute('name', $file);
$fileinxml->addAttribute('errors', 0);
$fileinxml->addAttribute('warnings', 0);
}
// Certain files are permitted lines of any length because they are
// Auto-generated.
$allowanylength = in_array(basename($file), ['install.xml']) ||
substr($file, -4, 4) === '.csv';
// We allow CRLF line endings in .csv tests/fixtures files (see #203).
$allowcrlf = substr($file, -4, 4) === '.csv' &&
strpos($file, '/tests/fixtures/') !== false;
$lines = file($file);
$index = 0;
$blankrun = 0;
$donecrlf = false;
foreach ($lines as $l) {
$index++;
// Incorrect [Windows] line ending.
if (!$donecrlf && !$allowcrlf && (strpos($l, "\r\n") !== false)) {
local_codechecker_add_problem($fileinxml, $file, $index, 'crlf');
$donecrlf = true;
}
// Missing line ending (at EOF presumably).
if (strpos($l, "\n") === false) {
local_codechecker_add_problem($fileinxml, $file, $index, 'missinglf');
}
$l = rtrim($l);
if ($l === '') {
$blankrun++;
} else {
$blankrun = 0;
}
// Whitespace at EOL.
if (preg_match('~ +$~', $l)) {
local_codechecker_add_problem($fileinxml, $file, $index, 'eol');
}
// Tab anywhere in line.
if (preg_match('~\t~', $l)) {
local_codechecker_add_problem($fileinxml, $file, $index, 'tab');
}
if (strlen($l) > 180 && !$allowanylength) {
// Line length > 180.
local_codechecker_add_problem($fileinxml, $file, $index, 'toolong');
} else if (strlen($l) > 132 && !$allowanylength) {
// Line length > 132.
local_codechecker_add_problem($fileinxml, $file, $index, 'ratherlong', true);
}
}
if ($blankrun > 0) {
local_codechecker_add_problem($fileinxml, $file, $index - $blankrun, 'extralfs');
}
}
/**
* Checking the parts that PHPCodeSniffer can't reach (i.e. anything except
* php, css, js) for basic whitespace problems.
* @param string $path Path to search (may be file or folder)
* @param SimpleXMLElement $xml structure containin all violations.
* to which new problems will be added
* @param array $ignores list of paths (substring matching, asterisk as wild-char that must be ignored).
*/
function local_codechecker_check_other_files($path, $xml, $ignores) {
$files = [];
local_codechecker_find_other_files($files, $path, $ignores);
foreach ($files as $file) {
local_codechecker_check_other_file($file, $xml);
}
}
/**
* Calculate the total number of errors and warnings in the execution
*
* @param SimpleXMLElement $xml structure containin all violations
* for which total number of errors and warnings will be counted.
* @return array with the total count of errors and warnings.
*/
function local_codechecker_count_problems($xml) {
$errors = 0;
$warnings = 0;
// Get all the files in the xml.
$files = $xml->xpath('file');
foreach ($files as $file) {
$errors += $file['errors'];
$warnings += $file['warnings'];
}
return [$errors, $warnings];
}