Nodeinfo has a special rule for upgrades
This commit is contained in:
parent
2f118fde9e
commit
df84ccd916
@ -176,4 +176,13 @@ class NodeinfoPlugin extends Plugin
|
|||||||
'description' => _m('Plugin that presents basic instance information using the NodeInfo standard.')];
|
'description' => _m('Plugin that presents basic instance information using the NodeInfo standard.')];
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function onEndUpgrade()
|
||||||
|
{
|
||||||
|
$users = new Usage_stats();
|
||||||
|
if ($users->getUserCount() == 0) {
|
||||||
|
define('NODEINFO_UPGRADE', true);
|
||||||
|
require_once __DIR__ . DIRECTORY_SEPARATOR . 'scripts' . DIRECTORY_SEPARATOR . 'fix_stats.php';
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -25,9 +25,11 @@
|
|||||||
|
|
||||||
define('INSTALLDIR', realpath(__DIR__ . '/../../..'));
|
define('INSTALLDIR', realpath(__DIR__ . '/../../..'));
|
||||||
|
|
||||||
$longoptions = ['type='];
|
if (!defined('NODEINFO_UPGRADE')) {
|
||||||
|
|
||||||
$helptext = <<<END_OF_HELP
|
$longoptions = ['type='];
|
||||||
|
|
||||||
|
$helptext = <<<END_OF_HELP
|
||||||
fix_stats.php [options]
|
fix_stats.php [options]
|
||||||
Counts the stats from database values and updates the table.
|
Counts the stats from database values and updates the table.
|
||||||
|
|
||||||
@ -35,21 +37,27 @@ Counts the stats from database values and updates the table.
|
|||||||
|
|
||||||
END_OF_HELP;
|
END_OF_HELP;
|
||||||
|
|
||||||
require_once INSTALLDIR . '/scripts/commandline.inc';
|
require_once INSTALLDIR . '/scripts/commandline.inc';
|
||||||
|
|
||||||
$valid_types = ['all', 'users', 'posts', 'comments'];
|
$valid_types = ['all', 'users', 'posts', 'comments'];
|
||||||
|
|
||||||
$verbose = have_option('v', 'verbose');
|
$verbose = have_option('v', 'verbose');
|
||||||
|
|
||||||
$type_to_fix = get_option_value('type');
|
$type_to_fix = get_option_value('type');
|
||||||
if (!in_array($type_to_fix, $valid_types)) {
|
if (!in_array($type_to_fix, $valid_types)) {
|
||||||
echo "You must provide a valid type!\n\n";
|
echo "You must provide a valid type!\n\n";
|
||||||
show_help();
|
show_help();
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($verbose) {
|
if ($verbose) {
|
||||||
echo "Started.\n\n";
|
echo "Started.\n\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
} else {
|
||||||
|
echo "Nodeinfo will now fix stats\n";
|
||||||
|
$type_to_fix = 'all';
|
||||||
|
$verbose = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($type_to_fix == 'all' || $type_to_fix == 'users') {
|
if ($type_to_fix == 'all' || $type_to_fix == 'users') {
|
||||||
|
Loading…
Reference in New Issue
Block a user