2019-04-22 17:22:17 +01:00
|
|
|
#!/usr/bin/env php
|
|
|
|
<?php
|
2019-08-12 04:45:25 +01:00
|
|
|
// This file is part of GNU social - https://www.gnu.org/software/social
|
|
|
|
//
|
|
|
|
// GNU social is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// GNU social 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 Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with GNU social. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2019-04-22 17:22:17 +01:00
|
|
|
/**
|
2019-08-12 04:45:25 +01:00
|
|
|
* Fix Nodeinfo statistics
|
2019-04-22 17:22:17 +01:00
|
|
|
*
|
2019-08-12 04:45:25 +01:00
|
|
|
* @package NodeInfo
|
|
|
|
* @author Diogo Cordeiro <diogo@fc.up.pt>
|
|
|
|
* @copyright 2019 Free Software Foundation, Inc http://www.fsf.org
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2019-04-22 17:22:17 +01:00
|
|
|
*/
|
|
|
|
|
2019-09-18 15:15:00 +01:00
|
|
|
define('INSTALLDIR', dirname(__DIR__, 3));
|
|
|
|
define('PUBLICDIR', INSTALLDIR . DIRECTORY_SEPARATOR . 'public');
|
2019-04-22 17:22:17 +01:00
|
|
|
|
2019-06-03 02:39:39 +01:00
|
|
|
if (!defined('NODEINFO_UPGRADE')) {
|
|
|
|
$longoptions = ['type='];
|
|
|
|
|
|
|
|
$helptext = <<<END_OF_HELP
|
2019-04-22 17:22:17 +01:00
|
|
|
fix_stats.php [options]
|
|
|
|
Counts the stats from database values and updates the table.
|
|
|
|
|
2019-05-04 22:51:30 +01:00
|
|
|
--type Type: can be 'users', 'posts' or 'comments'. Or 'all', to update all the types.
|
2019-04-22 17:22:17 +01:00
|
|
|
|
|
|
|
END_OF_HELP;
|
|
|
|
|
2019-06-03 02:39:39 +01:00
|
|
|
require_once INSTALLDIR . '/scripts/commandline.inc';
|
2019-04-22 17:22:17 +01:00
|
|
|
|
2019-06-03 02:39:39 +01:00
|
|
|
$valid_types = ['all', 'users', 'posts', 'comments'];
|
2019-04-22 17:22:17 +01:00
|
|
|
|
2019-06-03 02:39:39 +01:00
|
|
|
$verbose = have_option('v', 'verbose');
|
2019-04-22 17:22:17 +01:00
|
|
|
|
2019-06-03 02:39:39 +01:00
|
|
|
$type_to_fix = get_option_value('type');
|
|
|
|
if (!in_array($type_to_fix, $valid_types)) {
|
|
|
|
echo "You must provide a valid type!\n\n";
|
|
|
|
show_help();
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($verbose) {
|
|
|
|
echo "Started.\n\n";
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
echo "Nodeinfo will now fix stats\n";
|
|
|
|
$type_to_fix = 'all';
|
|
|
|
$verbose = true;
|
2019-04-22 17:22:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($type_to_fix == 'all' || $type_to_fix == 'users') {
|
|
|
|
if ($verbose) {
|
|
|
|
echo "[+] Updating Users stats...\n";
|
|
|
|
}
|
|
|
|
$us = Usage_stats::getKV('users');
|
|
|
|
$us->count = getUserCount();
|
|
|
|
$us->update();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($type_to_fix == 'all' || $type_to_fix == 'posts') {
|
|
|
|
if ($verbose) {
|
|
|
|
echo "[+] Updating Posts stats...\n";
|
|
|
|
}
|
|
|
|
$us = Usage_stats::getKV('posts');
|
|
|
|
$us->count = getPostCount();
|
|
|
|
$us->update();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($type_to_fix == 'all' || $type_to_fix == 'comments') {
|
|
|
|
if ($verbose) {
|
|
|
|
echo "[+] Updating Comments stats...\n";
|
|
|
|
}
|
|
|
|
$us = Usage_stats::getKV('comments');
|
|
|
|
$us->count = getCommentCount();
|
|
|
|
$us->update();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($verbose) {
|
|
|
|
echo "\nDONE.\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Counting functions
|
|
|
|
*/
|
|
|
|
|
2019-08-12 04:45:25 +01:00
|
|
|
/**
|
|
|
|
* Total number of users
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
* @author Stéphane Bérubé <chimo@chromic.org>
|
|
|
|
*/
|
|
|
|
function getUserCount(): int
|
2019-04-22 17:22:17 +01:00
|
|
|
{
|
|
|
|
$users = new User();
|
|
|
|
$userCount = $users->count();
|
|
|
|
|
|
|
|
return $userCount;
|
|
|
|
}
|
|
|
|
|
2019-08-12 04:45:25 +01:00
|
|
|
/**
|
|
|
|
* Total number of dents
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
* @author Stéphane Bérubé <chimo@chromic.org>
|
|
|
|
*/
|
2019-04-22 17:22:17 +01:00
|
|
|
function getPostCount()
|
|
|
|
{
|
|
|
|
$notices = new Notice();
|
|
|
|
$notices->is_local = Notice::LOCAL_PUBLIC;
|
|
|
|
$notices->whereAdd('reply_to IS NULL');
|
|
|
|
$noticeCount = $notices->count();
|
|
|
|
|
|
|
|
return $noticeCount;
|
|
|
|
}
|
|
|
|
|
2019-08-12 04:45:25 +01:00
|
|
|
/**
|
|
|
|
* Total number of replies
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
* @author Stéphane Bérubé <chimo@chromic.org>
|
|
|
|
*/
|
2019-04-22 17:22:17 +01:00
|
|
|
function getCommentCount()
|
|
|
|
{
|
|
|
|
$notices = new Notice();
|
|
|
|
$notices->is_local = Notice::LOCAL_PUBLIC;
|
|
|
|
$notices->whereAdd('reply_to IS NOT NULL');
|
|
|
|
$commentCount = $notices->count();
|
|
|
|
|
|
|
|
return $commentCount;
|
|
|
|
}
|