Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SettingsController.php « Controller « lib - github.com/sualko/cloud_piwik.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bbfe123e0a7c4318ad889f65c2f9732bff535e6b (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
<?php
namespace OCA\Piwik\Controller;

use OCP\AppFramework\Controller;
use OCP\IRequest;
use OCA\Piwik\Config;

class SettingsController extends Controller
{
    private $config;

    public function __construct(
        $appName,
        IRequest $request,
        Config $config
    ) {
        parent::__construct($appName, $request);

        $this->config = $config;
    }

    /**
     * @NoAdminRequired
     * @PublicPage
     */
    public function index()
    {
        return [
            'result' => 'success',
            'data' => [
                'url' => $this->config->getAppValue('url'),
                'siteId' => $this->config->getAppValue('siteId'),
                'trackDir' => $this->config->getBooleanAppValue('trackDir')
            ],
        ];
    }

    public function update($key)
    {
        if (!in_array($key, ['url', 'siteId', 'trackDir', 'trackUser'])) {
            return [
                'result' => 'error',
                'message' => 'Tried to update not allowed param.',
            ];
        }

        $this->config->setAppValue($key, $this->getTrimParam('value'));

        return [
            'status' => 'success',
        ];
    }

    private function getTrimParam($key)
    {
        return trim($this->request->getParam($key));
    }

    private function getCheckboxParam($key)
    {
        return $this->getCheckboxValue($this->request->getParam($key));
    }

    private function getCheckboxValue($var)
    {
        return (isset($var)) ? $var : 'false';
    }
}