summaryrefslogtreecommitdiffstats
path: root/controller/appcontroller.php
blob: 138668950cb148b458c60900c4a76614871b47cd (plain)
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
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
/**
 * ownCloud - News
 *
 * This file is licensed under the Affero General Public License version 3 or
 * later. See the COPYING file.
 *
 * @author Alessandro Cosentino <cosenal@gmail.com>
 * @author Bernhard Posselt <dev@bernhard-posselt.com>
 * @copyright Alessandro Cosentino 2014
 * @copyright Bernhard Posselt 2014
 */

namespace OCA\News\Controller;

use \OCP\IRequest;
use \OCP\IURLGenerator;
use \OCP\AppFramework\Controller;
use \OCP\AppFramework\Http;
use \OCP\AppFramework\Http\JSONResponse;

use \OCA\News\Config\AppConfig;

class AppController extends Controller {

    private $urlGenerator;
    private $appConfig;

    public function __construct($appName,
                                IRequest $request,
                                IURLGenerator $urlGenerator,
                                AppConfig $appConfig){
        parent::__construct($appName, $request);
        $this->urlGenerator = $urlGenerator;
        $this->appConfig = $appConfig;
    }

    /**
     * @NoCSRFRequired
     * @PublicPage
     *
     * Generates a web app manifest, according to specs in:
     * https://developer.mozilla.org/en-US/Apps/Build/Manifest
     */
    public function manifest() {
        $config = $this->appConfig->getConfig();

        // size of the icons: 128x128 is required by FxOS for all app manifests
        $iconSizes = ['128', '512'];
        $icons = [];

        foreach ($iconSizes as $size) {
            $filename = 'app-' . $size . '.png';
            if (file_exists(__DIR__ . '/../img/' . $filename)) {
                $icons[$size] = $this->urlGenerator->imagePath($config['id'],
                    $filename);
            }
        }

        $authors = [];
        foreach ($config['authors'] as $author) {
            $authors[] = $author['name'];
        }

        return [
            "name" => $config['name'],
            "description" => $config['description'],
            "launch_path" => $this->urlGenerator->linkToRoute(
                $config['id'] . '.page.index'),
            "icons" => $icons,
            "developer" => [
                "name" => implode(', ', $authors),
                "url" => $config['homepage']
            ]
        ];
    }

}