blob: c7667520d9aa42d39083c0ec85073a52a21f8af9 (
plain)
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
|
<?php
/**
* @file
* @ingroup Maintenance
*/
/** */
$optionsWithArgs = array('batch-size', 'm', 'e' );
require_once( "commandLine.inc" );
require_once( "refreshLinks.inc" );
if( isset( $options['help'] ) ) {
echo <<<TEXT
Usage:
php refreshLinks.php --help
php refreshLinks.php [<start>] [-e <end>] [-m <maxlag>] [--dfn-only]
[--batch-size <size>] [--new-only] [--redirects-only]
php refreshLinks.php [<start>] [-e <end>] [-m <maxlag>] --old-redirects-only
--help : This help message
--dfn-only : Delete links from nonexistent articles only
--batch-size <number> : The delete batch size when removing links from
nonexistent articles (defaults to 100)
--new-only : Only affect articles with just a single edit
--redirects-only : Only fix redirects, not all links
--old-redirects-only : Only fix redirects with no redirect table entry
-m <number> : Maximum replication lag
<start> : First page id to refresh
-e <number> : Last page id to refresh
TEXT;
exit(0);
}
error_reporting( E_ALL & (~E_NOTICE) );
if ( !$options['dfn-only'] ) {
if ( isset( $args[0] ) ) {
$start = (int)$args[0];
} else {
$start = 1;
}
refreshLinks( $start, $options['new-only'], $options['m'], $options['e'], $options['redirects-only'], $options['old-redirects-only'] );
}
if ( !isset( $options['batch-size'] ) ) {
$options['batch-size'] = 100;
}
deleteLinksFromNonexistent($options['m'], $options['batch-size']);
if ( $options['globals'] ) {
print_r( $GLOBALS );
}
|