summaryrefslogtreecommitdiffstats
path: root/controller/pagecontroller.php
blob: 27377eab426cfce1b941777333305e6512035b7d (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
<?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 2012
 * @copyright Bernhard Posselt 2012, 2014
 */

namespace OCA\News\Controller;

use OCP\AppFramework\Http\TemplateResponse;
use \OCP\IRequest;
use \OCP\IConfig;
use \OCP\IL10N;
use \OCP\AppFramework\Controller;


class PageController extends Controller {

	private $settings;
	private $l10n;
	private $userId;

	public function __construct($appName,
	                            IRequest $request,
	                            IConfig $settings,
	                            IL10N $l10n,
	                            $userId){
		parent::__construct($appName, $request);
		$this->settings = $settings;
		$this->l10n = $l10n;
		$this->userId = $userId;
	}


	/**
	 * @NoAdminRequired
	 * @NoCSRFRequired
	 */
	public function index() {
		return new TemplateResponse($this->appName, 'index');
	}


	/**
	 * @NoAdminRequired
	 */
	public function settings() {
		$settings = ['showAll', 'compact', 'preventReadOnScroll', 'oldestFirst'];

		$result = ['language' => $this->l10n->getLanguageCode()];

		foreach ($settings as $setting) {
			$result[$setting] = $this->settings->getUserValue(
				$this->userId, $this->appName, $setting
			) === '1';
		}
		return ['settings' => $result];
	}


	/**
	 * @NoAdminRequired
	 *
	 * @param bool $showAll
	 * @param bool $compact
	 * @param bool $preventReadOnScroll
	 * @param bool $oldestFirst
	 */
	public function updateSettings($showAll, $compact, $preventReadOnScroll, $oldestFirst) {
		$settings = ['showAll', 'compact', 'preventReadOnScroll', 'oldestFirst'];

		foreach ($settings as $setting) {
			$this->settings->setUserValue($this->userId, $this->appName,
			                              $setting, ${$setting});
		}
	}


}