aboutsummaryrefslogtreecommitdiffhomepage
path: root/application/front/controller/admin/ThumbnailsController.php
blob: 5dfea0964378a13aaba22516d755137d2e8b734f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php

declare(strict_types=1);

namespace Shaarli\Front\Controller\Admin;

use Shaarli\Bookmark\Exception\BookmarkNotFoundException;
use Shaarli\Render\TemplatePage;
use Slim\Http\Request;
use Slim\Http\Response;

/**
 * Class ToolsController
 *
 * Slim controller used to handle thumbnails update.
 */
class ThumbnailsController extends ShaarliAdminController
{
    /**
     * GET /admin/thumbnails - Display thumbnails update page
     */
    public function index(Request $request, Response $response): Response
    {
        $ids = [];
        foreach ($this->container->bookmarkService->search()->getBookmarks() as $bookmark) {
            // A note or not HTTP(S)
            if ($bookmark->isNote() || !startsWith(strtolower($bookmark->getUrl()), 'http')) {
                continue;
            }

            $ids[] = $bookmark->getId();
        }

        $this->assignView('ids', $ids);
        $this->assignView(
            'pagetitle',
            t('Thumbnails update') . ' - ' . $this->container->conf->get('general.title', 'Shaarli')
        );

        return $response->write($this->render(TemplatePage::THUMBNAILS));
    }

    /**
     * PATCH /admin/shaare/{id}/thumbnail-update - Route for AJAX calls
     */
    public function ajaxUpdate(Request $request, Response $response, array $args): Response
    {
        $id = $args['id'] ?? null;

        if (false === ctype_digit($id)) {
            return $response->withStatus(400);
        }

        try {
            $bookmark = $this->container->bookmarkService->get((int) $id);
        } catch (BookmarkNotFoundException $e) {
            return $response->withStatus(404);
        }

        $bookmark->setThumbnail($this->container->thumbnailer->get($bookmark->getUrl()));
        $this->container->bookmarkService->set($bookmark);

        return $response->withJson($this->container->formatterFactory->getFormatter('raw')->format($bookmark));
    }
}