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: 36745a5dbdd8f566b3bd21c3672c026fd43c6576 (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
79
80
81
82
83
84
85
86
87
88
89
90
<?php
namespace OCA\Piwik\Controller;

use OCP\AppFramework\Controller;
use OCP\IConfig;
use OCP\IRequest;

class SettingsController extends Controller
{
    private $config;

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

        $this->config = $config;
    }

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

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

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

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

    private function getAppValue($key, $default = null)
    {
        $value = $this->config->getAppValue($this->appName, $key, $default);
        return (empty($value)) ? $default : $value;
    }

    private function setAppValue($key, $value)
    {
        return $this->config->setAppValue($this->appName, $key, $value);
    }

    private function getBooleanAppValue($key)
    {
        return $this->validateBoolean($this->getAppValue($key));
    }

    private function validateBoolean($val)
	{
		return $val === true || $val === 'true';
	}

    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';
    }
}