2019-04-22 17:22:17 +01:00
|
|
|
<?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
|
|
|
* Table for storing 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 2018-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-08-12 04:45:25 +01:00
|
|
|
defined('GNUSOCIAL') || die();
|
2019-04-22 17:22:17 +01:00
|
|
|
|
|
|
|
/**
|
2019-08-12 04:45:25 +01:00
|
|
|
* Table Definition for usage_stats and some getters
|
|
|
|
*
|
|
|
|
* @copyright 2018-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
|
|
|
*/
|
|
|
|
class Usage_stats extends Managed_DataObject
|
|
|
|
{
|
|
|
|
public $__table = 'usage_stats'; // table name
|
|
|
|
public $type; // varchar(191) unique_key not 255 because utf8mb4 takes more space
|
|
|
|
public $count; // int(4)
|
2019-08-12 04:45:25 +01:00
|
|
|
public $modified; // datetime() not_null default_CURRENT_TIMESTAMP
|
2019-04-22 17:22:17 +01:00
|
|
|
|
2019-08-12 04:45:25 +01:00
|
|
|
/**
|
|
|
|
* Table Definition for usage_stats
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public static function schemaDef(): array
|
2019-04-22 17:22:17 +01:00
|
|
|
{
|
|
|
|
return [
|
|
|
|
'description' => 'node stats',
|
|
|
|
'fields' => [
|
2019-08-12 04:45:25 +01:00
|
|
|
'type' => ['type' => 'varchar', 'not null' => true, 'length' => 191, 'description' => 'Type of countable entity'],
|
2019-04-22 17:22:17 +01:00
|
|
|
'count' => ['type' => 'int', 'size' => 'int', 'default' => 0, 'description' => 'Number of entities of this type'],
|
2019-08-12 04:45:25 +01:00
|
|
|
'modified' => ['type' => 'datetime', 'not null' => true, 'default' => 'CURRENT_TIMESTAMP', 'description' => 'date this record was modified'],
|
2019-04-22 17:22:17 +01:00
|
|
|
],
|
|
|
|
'primary key' => ['type'],
|
|
|
|
'indexes' => [
|
|
|
|
'user_stats_idx' => ['type'],
|
|
|
|
],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2019-08-12 04:45:25 +01:00
|
|
|
/**
|
|
|
|
* Total number of users
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getUserCount(): int
|
2019-04-22 17:22:17 +01:00
|
|
|
{
|
2019-08-12 04:45:25 +01:00
|
|
|
return Usage_stats::getKV('type', 'users')->count;
|
2019-04-22 17:22:17 +01:00
|
|
|
}
|
|
|
|
|
2019-08-12 04:45:25 +01:00
|
|
|
/**
|
|
|
|
* Total number of dents
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getPostCount(): int
|
2019-04-22 17:22:17 +01:00
|
|
|
{
|
2019-08-12 04:45:25 +01:00
|
|
|
return Usage_stats::getKV('type', 'posts')->count;
|
2019-04-22 17:22:17 +01:00
|
|
|
}
|
|
|
|
|
2019-08-12 04:45:25 +01:00
|
|
|
/**
|
|
|
|
* Total number of replies
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getCommentCount(): int
|
2019-04-22 17:22:17 +01:00
|
|
|
{
|
2019-08-12 04:45:25 +01:00
|
|
|
return Usage_stats::getKV('type', 'comments')->count;
|
2019-04-22 17:22:17 +01:00
|
|
|
}
|
|
|
|
}
|