* @copyright Loic Blot 2015 */ namespace OCA\Weather\Controller; use \OCP\IRequest; use \OCP\AppFramework\Http\TemplateResponse; use \OCP\AppFramework\Controller; use \OCP\AppFramework\Http\JSONResponse; use \OCP\AppFramework\Http; use \OCA\Weather\Db\SettingsMapper; use \OCA\Weather\Db\CityMapper; class SettingsController extends Controller { private $userId; private $mapper; public function __construct ($appName, IRequest $request, $userId, SettingsMapper $mapper, CityMapper $cityMapper) { parent::__construct($appName, $request); $this->userId = $userId; $this->mapper = $mapper; $this->cityMapper = $cityMapper; } /** * @NoAdminRequired * @NoCSRFRequired */ public function homeSet ($city) { if (!$city || !is_numeric($city)) { return new JSONResponse(array(), Http::STATUS_BAD_REQUEST); } if (!$this->cityMapper->exists($city)) { return new JSONResponse(array(), Http::STATUS_NOT_FOUND); } $this->mapper->setHome($this->userId, $city); return new JSONResponse(array("set" => true)); } /** * @NoAdminRequired * @NoCSRFRequired */ public function apiKeySet ($apikey) { $this->mapper->setApiKey($this->userId, $apikey); return new JSONResponse(array("set" => true)); } /** * @NoAdminRequired * @NoCSRFRequired */ public function apiKeyGet () { return new JSONResponse(array("apikey" => $this->mapper->getApiKey($this->userId))); } /** * @NoAdminRequired * @NoCSRFRequired */ public function metricSet ($metric) { $this->mapper->setMetric($this->userId, $metric); return new JSONResponse(array("set" => true)); } /** * @NoAdminRequired * @NoCSRFRequired */ public function metricGet () { $metric = $this->mapper->getMetric($this->userId); if ($metric === 0) { $this->mapper->setMetric($this->userId, "metric"); $metric = "metric"; } return new JSONResponse(array("metric" => $metric)); } }; ?>