95 lines
3.1 KiB
PHP
95 lines
3.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
/**
|
|
* Nextcloud - Related Resources
|
|
*
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
* later. See the COPYING file.
|
|
*
|
|
* @author Maxence Lange <maxence@artificial-owl.com>
|
|
* @copyright 2022
|
|
* @license GNU AGPL version 3 or any later version
|
|
*
|
|
* This program 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.
|
|
*
|
|
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
|
|
namespace OCA\RelatedResources\LinkWeightCalculators;
|
|
|
|
use OCA\RelatedResources\ILinkWeightCalculator;
|
|
use OCA\RelatedResources\IRelatedResource;
|
|
use OCA\RelatedResources\Model\RelatedResource;
|
|
use OCA\RelatedResources\Tools\Traits\TArrayTools;
|
|
|
|
class TimeWeightCalculator implements ILinkWeightCalculator {
|
|
use TArrayTools;
|
|
|
|
private const DELAY_1 = 120;
|
|
private const DELAY_2 = 900;
|
|
private const DELAY_3 = 7200;
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function weight(IRelatedResource $current, array &$result): void {
|
|
if (!$current->hasMeta(RelatedResource::LINK_CREATION)
|
|
|| !$current->hasMeta(RelatedResource::LINK_CREATOR)
|
|
|| !$current->hasMeta(RelatedResource::LINK_RECIPIENT)) {
|
|
return;
|
|
}
|
|
|
|
foreach ($result as $entry) {
|
|
if (!$entry->hasMeta(RelatedResource::LINK_CREATION)
|
|
|| !$entry->hasMeta(RelatedResource::LINK_CREATOR)
|
|
|| !$entry->hasMeta(RelatedResource::LINK_RECIPIENT)) {
|
|
continue;
|
|
}
|
|
|
|
// check if link is initiated from same entity
|
|
if ($entry->getMeta(RelatedResource::LINK_CREATOR)
|
|
!== $current->getMeta(RelatedResource::LINK_CREATOR)) {
|
|
continue;
|
|
}
|
|
|
|
if ($entry->getMetaInt(RelatedResource::LINK_CREATION)
|
|
< $current->getMetaInt(RelatedResource::LINK_CREATION) + self::DELAY_1
|
|
&& $entry->getMetaInt(RelatedResource::LINK_CREATION)
|
|
> $current->getMetaInt(RelatedResource::LINK_CREATION) - self::DELAY_1) {
|
|
$entry->improve(RelatedResource::$IMPROVE_HIGH_LINK, 'time_delay_1');
|
|
continue;
|
|
}
|
|
|
|
if ($entry->getMetaInt(RelatedResource::LINK_CREATION)
|
|
< $current->getMetaInt(RelatedResource::LINK_CREATION) + self::DELAY_2
|
|
&& $entry->getMetaInt(RelatedResource::LINK_CREATION)
|
|
> $current->getMetaInt(RelatedResource::LINK_CREATION) - self::DELAY_2) {
|
|
$entry->improve(RelatedResource::$IMPROVE_MEDIUM_LINK, 'time_delay_2');
|
|
continue;
|
|
}
|
|
|
|
if ($entry->getMetaInt(RelatedResource::LINK_CREATION)
|
|
< $current->getMetaInt(RelatedResource::LINK_CREATION) + self::DELAY_3
|
|
&& $entry->getMetaInt(RelatedResource::LINK_CREATION)
|
|
> $current->getMetaInt(RelatedResource::LINK_CREATION) - self::DELAY_3) {
|
|
$entry->improve(RelatedResource::$IMPROVE_LOW_LINK, 'time_delay_3');
|
|
continue;
|
|
}
|
|
}
|
|
}
|
|
}
|