Skip to content

Commit

Permalink
implement dashboard api
Browse files Browse the repository at this point in the history
  • Loading branch information
icewind1991 committed Aug 23, 2022
1 parent 0342f4c commit a93b9a5
Showing 1 changed file with 41 additions and 2 deletions.
43 changes: 41 additions & 2 deletions lib/Dashboard/RecommendationWidget.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,21 +24,37 @@
namespace OCA\Recommendations\Dashboard;

use OCA\Recommendations\AppInfo\Application;
use OCA\Recommendations\Service\IRecommendation;
use OCA\Recommendations\Service\RecommendationService;
use OCP\Dashboard\IAPIWidget;
use OCP\Dashboard\IIconWidget;
use OCP\Dashboard\IWidget;
use OCP\Dashboard\Model\WidgetItem;
use OCP\IL10N;
use OCP\IURLGenerator;
use OCP\IUserManager;
use OCP\IUserSession;
use OCP\Util;

class RecommendationWidget implements IWidget {
class RecommendationWidget implements IWidget, IIconWidget, IAPIWidget {
private IUserSession $userSession;
private IL10N $l10n;
private IURLGenerator $urlGenerator;
private RecommendationService $recommendationService;
private IUserManager $userManager;

public function __construct(
IUserSession $userSession,
IL10N $l10n
IL10N $l10n,
IURLGenerator $urlGenerator,
RecommendationService $recommendationService,
IUserManager $userManager
) {
$this->userSession = $userSession;
$this->l10n = $l10n;
$this->urlGenerator = $urlGenerator;
$this->recommendationService = $recommendationService;
$this->userManager = $userManager;
}

public function getId(): string {
Expand All @@ -57,6 +73,10 @@ public function getIconClass(): string {
return 'icon-files-dark';
}

public function getIconUrl(): string {
return $this->urlGenerator->getAbsoluteURL($this->urlGenerator->imagePath('files', 'app.svg'));
}

public function getUrl(): ?string {
return null;
}
Expand All @@ -68,4 +88,23 @@ public function load(): void {
}
Util::addScript(Application::APP_ID, 'files_recommendation-dashboard');
}

public function getItems(string $userId, ?string $since = null, int $limit = 7): array {
$user = $this->userManager->get($userId);
if (!$user) {
return [];
}
$recommendations = $this->recommendationService->getRecommendations($user, $limit);

return array_map(function(IRecommendation $recommendation) {
$url = $this->urlGenerator->linkToRouteAbsolute('files.viewcontroller.showFile', ['fileid' => $recommendation->getNode()->getId()]);
$icon = $this->urlGenerator->linkToRouteAbsolute('core.Preview.getPreviewByFileId', [
'x' => 256,
'y' => 256,
'fileId' => $recommendation->getNode()->getId(),
'c' => $recommendation->getNode()->getEtag(),
]);
return new WidgetItem($recommendation->getNode()->getName(), '', $url, $icon, $recommendation->getTimestamp());
}, $recommendations);
}
}

0 comments on commit a93b9a5

Please sign in to comment.