mirror of
https://github.com/appwrite/appwrite
synced 2026-05-24 09:28:40 +00:00
Fix datetime calculation
This commit is contained in:
parent
e7298b13b0
commit
292037f90b
1 changed files with 39 additions and 18 deletions
|
|
@ -6,6 +6,8 @@ use Exception;
|
||||||
use Appwrite\Usage\Calculator;
|
use Appwrite\Usage\Calculator;
|
||||||
use Utopia\Database\Database as UtopiaDatabase;
|
use Utopia\Database\Database as UtopiaDatabase;
|
||||||
use Utopia\Database\Document;
|
use Utopia\Database\Document;
|
||||||
|
use Utopia\Database\Exception\Authorization;
|
||||||
|
use Utopia\Database\Exception\Structure;
|
||||||
use Utopia\Database\Query;
|
use Utopia\Database\Query;
|
||||||
|
|
||||||
class Database extends Calculator
|
class Database extends Calculator
|
||||||
|
|
@ -34,14 +36,24 @@ class Database extends Calculator
|
||||||
* @param string $projectId
|
* @param string $projectId
|
||||||
* @param string $metric
|
* @param string $metric
|
||||||
* @param int $value
|
* @param int $value
|
||||||
*
|
* @param bool $monthly
|
||||||
* @return void
|
* @return void
|
||||||
|
* @throws Authorization
|
||||||
|
* @throws Structure
|
||||||
*/
|
*/
|
||||||
protected function createPerPeriodMetric(string $projectId, string $metric, int $value, bool $monthly = false): void
|
protected function createPerPeriodMetric(string $projectId, string $metric, int $value, bool $monthly = false): void
|
||||||
{
|
{
|
||||||
foreach ($this->periods as $options) {
|
foreach ($this->periods as $options) {
|
||||||
$period = $options['key'];
|
$period = $options['key'];
|
||||||
$time = (int) (floor(time() / $options['multiplier']) * $options['multiplier']);
|
$date = new \DateTime();
|
||||||
|
if ($period === '30m') {
|
||||||
|
$minutes = $date->format('i') >= '30' ? "30" : "00";
|
||||||
|
$time = $date->format('Y-m-d H:' . $minutes . ':00');
|
||||||
|
} elseif ($period === '1d') {
|
||||||
|
$time = $date->format('Y-m-d 00:00:00');
|
||||||
|
} else {
|
||||||
|
throw new Exception("Period type not found", 500);
|
||||||
|
}
|
||||||
$this->createOrUpdateMetric($projectId, $metric, $period, $time, $value);
|
$this->createOrUpdateMetric($projectId, $metric, $period, $time, $value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -58,23 +70,16 @@ class Database extends Calculator
|
||||||
*
|
*
|
||||||
* @param string $projectId
|
* @param string $projectId
|
||||||
* @param string $metric
|
* @param string $metric
|
||||||
|
* @param string $period
|
||||||
|
* @param string $time
|
||||||
* @param int $value
|
* @param int $value
|
||||||
*
|
*
|
||||||
* @return void
|
* @return void
|
||||||
* @throws Exception
|
* @throws Authorization
|
||||||
|
* @throws Structure
|
||||||
*/
|
*/
|
||||||
protected function createOrUpdateMetric(string $projectId, string $metric, string $period, int $time, int $value): void
|
protected function createOrUpdateMetric(string $projectId, string $metric, string $period, string $time, int $value): void
|
||||||
{
|
{
|
||||||
$date = new \DateTime();
|
|
||||||
if ($period === '30m') {
|
|
||||||
$minutes = $date->format('i') >= '30' ? "30" : "00";
|
|
||||||
$time = $date->format('Y-m-d H:' . $minutes . ':00');
|
|
||||||
} elseif ($period === '1d') {
|
|
||||||
$time = $date->format('Y-m-d 00:00:00');
|
|
||||||
} else {
|
|
||||||
throw new Exception("Period type not found", 500);
|
|
||||||
}
|
|
||||||
|
|
||||||
$id = \md5("{$time}_{$period}_{$metric}");
|
$id = \md5("{$time}_{$period}_{$metric}");
|
||||||
$this->database->setNamespace('_' . $projectId);
|
$this->database->setNamespace('_' . $projectId);
|
||||||
|
|
||||||
|
|
@ -107,6 +112,7 @@ class Database extends Calculator
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Foreach Document
|
* Foreach Document
|
||||||
|
*
|
||||||
* Call provided callback for each document in the collection
|
* Call provided callback for each document in the collection
|
||||||
*
|
*
|
||||||
* @param string $projectId
|
* @param string $projectId
|
||||||
|
|
@ -115,6 +121,7 @@ class Database extends Calculator
|
||||||
* @param callable $callback
|
* @param callable $callback
|
||||||
*
|
*
|
||||||
* @return void
|
* @return void
|
||||||
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
protected function foreachDocument(string $projectId, string $collection, array $queries, callable $callback): void
|
protected function foreachDocument(string $projectId, string $collection, array $queries, callable $callback): void
|
||||||
{
|
{
|
||||||
|
|
@ -156,13 +163,14 @@ class Database extends Calculator
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sum
|
* Sum
|
||||||
|
*
|
||||||
* Calculate sum of a attribute of documents in collection
|
* Calculate sum of a attribute of documents in collection
|
||||||
*
|
*
|
||||||
* @param string $projectId
|
* @param string $projectId
|
||||||
* @param string $collection
|
* @param string $collection
|
||||||
* @param string $attribute
|
* @param string $attribute
|
||||||
* @param string $metric
|
* @param string|null $metric
|
||||||
*
|
* @param int $multiplier
|
||||||
* @return int
|
* @return int
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
|
|
@ -190,16 +198,17 @@ class Database extends Calculator
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Count
|
* Count
|
||||||
|
*
|
||||||
* Count number of documents in collection
|
* Count number of documents in collection
|
||||||
*
|
*
|
||||||
* @param string $projectId
|
* @param string $projectId
|
||||||
* @param string $collection
|
* @param string $collection
|
||||||
* @param string? $metric
|
* @param ?string $metric
|
||||||
*
|
*
|
||||||
* @return int
|
* @return int
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
private function count(string $projectId, string $collection, string $metric = null): int
|
private function count(string $projectId, string $collection, ?string $metric = null): int
|
||||||
{
|
{
|
||||||
$this->database->setNamespace('_' . $projectId);
|
$this->database->setNamespace('_' . $projectId);
|
||||||
|
|
||||||
|
|
@ -221,11 +230,13 @@ class Database extends Calculator
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Deployments Total
|
* Deployments Total
|
||||||
|
*
|
||||||
* Total sum of storage used by deployments
|
* Total sum of storage used by deployments
|
||||||
*
|
*
|
||||||
* @param string $projectId
|
* @param string $projectId
|
||||||
*
|
*
|
||||||
* @return int
|
* @return int
|
||||||
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
private function deploymentsTotal(string $projectId): int
|
private function deploymentsTotal(string $projectId): int
|
||||||
{
|
{
|
||||||
|
|
@ -234,11 +245,13 @@ class Database extends Calculator
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Users Stats
|
* Users Stats
|
||||||
|
*
|
||||||
* Metric: users.count
|
* Metric: users.count
|
||||||
*
|
*
|
||||||
* @param string $projectId
|
* @param string $projectId
|
||||||
*
|
*
|
||||||
* @return void
|
* @return void
|
||||||
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
private function usersStats(string $projectId): void
|
private function usersStats(string $projectId): void
|
||||||
{
|
{
|
||||||
|
|
@ -247,12 +260,15 @@ class Database extends Calculator
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Storage Stats
|
* Storage Stats
|
||||||
|
*
|
||||||
* Metrics: buckets.$all.count.total, files.$all.count.total, files.bucketId,count.total,
|
* Metrics: buckets.$all.count.total, files.$all.count.total, files.bucketId,count.total,
|
||||||
* files.$all.storage.size, files.bucketId.storage.size, project.$all.storage.size
|
* files.$all.storage.size, files.bucketId.storage.size, project.$all.storage.size
|
||||||
*
|
*
|
||||||
* @param string $projectId
|
* @param string $projectId
|
||||||
*
|
*
|
||||||
* @return void
|
* @return void
|
||||||
|
* @throws Authorization
|
||||||
|
* @throws Structure
|
||||||
*/
|
*/
|
||||||
private function storageStats(string $projectId): void
|
private function storageStats(string $projectId): void
|
||||||
{
|
{
|
||||||
|
|
@ -281,6 +297,7 @@ class Database extends Calculator
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Database Stats
|
* Database Stats
|
||||||
|
*
|
||||||
* Collect all database stats
|
* Collect all database stats
|
||||||
* Metrics: databases.$all.count.total, collections.$all.count.total, collections.databaseId.count.total,
|
* Metrics: databases.$all.count.total, collections.$all.count.total, collections.databaseId.count.total,
|
||||||
* documents.$all.count.all, documents.databaseId.count.total, documents.databaseId/collectionId.count.total
|
* documents.$all.count.all, documents.databaseId.count.total, documents.databaseId/collectionId.count.total
|
||||||
|
|
@ -288,6 +305,8 @@ class Database extends Calculator
|
||||||
* @param string $projectId
|
* @param string $projectId
|
||||||
*
|
*
|
||||||
* @return void
|
* @return void
|
||||||
|
* @throws Authorization
|
||||||
|
* @throws Structure
|
||||||
*/
|
*/
|
||||||
private function databaseStats(string $projectId): void
|
private function databaseStats(string $projectId): void
|
||||||
{
|
{
|
||||||
|
|
@ -319,9 +338,11 @@ class Database extends Calculator
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Collect Stats
|
* Collect Stats
|
||||||
|
*
|
||||||
* Collect all database related stats
|
* Collect all database related stats
|
||||||
*
|
*
|
||||||
* @return void
|
* @return void
|
||||||
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function collect(): void
|
public function collect(): void
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue