summaryrefslogtreecommitdiffstats
path: root/controller/pagecontroller.php
blob: fe6fe967aaac2b433a5ba36b8622e637851834cc (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\IRequest;
use \OCP\IConfig;
use \OCP\AppFramework\Http\JSONResponse;
use \OCP\AppFramework\Controller;

class PageController extends Controller {

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

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


	/**
	 * @NoAdminRequired
	 * @NoCSRFRequired
	 */
	public function index() {
		return $this->render('main');
	}


	/**
	 * @NoAdminRequired
	 */
	public function settings() {
		$showAll = $this->settings->getUserValue($this->userId, $this->appName, 
			'showAll');
		$compact = $this->settings->getUserValue($this->userId, $this->appName, 
			'compact');
		$language = $this->l10n->findLanguage();

		$settings = array(
			'showAll' => $showAll === '1',
			'compact' => $compact === '1',
			'language' => $language
		);

		return new JSONResponse($settings);
	}


	/**
	 * @NoAdminRequired
	 */
	public function updateSettings() {
		$isShowAll = $this->params('showAll', null);
		$isCompact = $this->params('compact', null);
		
		if($isShowAll !== null) {
			$this->settings->setUserValue($this->userId, $this->appName, 
				'showAll', $isShowAll);
		}

		if($isCompact !== null) {
			$this->settings->setUserValue($this->userId, $this->appName,
				'compact', $isCompact);
		}

		return new JSONResponse();
	}

}