2014-05-27 17:59:35 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ownCloud - Tasks
|
|
|
|
*
|
|
|
|
* @author Raimund Schlüßler
|
|
|
|
* @copyright 2014 Raimund Schlüßler raimund.schluessler@googlemail.com
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2014-07-30 19:03:54 +00:00
|
|
|
namespace OCA\Tasks\Controller;
|
2014-05-27 17:59:35 +00:00
|
|
|
|
2014-08-08 07:15:03 +00:00
|
|
|
use OCA\Tasks\Controller;
|
|
|
|
use OCP\AppFramework\Http\JSONResponse;
|
2014-05-27 17:59:35 +00:00
|
|
|
|
|
|
|
class CollectionsController extends Controller {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @NoAdminRequired
|
|
|
|
*/
|
|
|
|
public function getCollections(){
|
2014-07-30 19:03:54 +00:00
|
|
|
$l = \OCP\Util::getL10N('tasks');
|
2014-05-27 17:59:35 +00:00
|
|
|
$collections = array(
|
|
|
|
array(
|
|
|
|
'id' => "starred",
|
|
|
|
'displayname' => (string)$l->t('Important'),
|
|
|
|
'show' => 2),
|
|
|
|
array(
|
|
|
|
'id' => "today",
|
|
|
|
'displayname' => (string)$l->t('Today'),
|
|
|
|
'show' => 2),
|
|
|
|
array(
|
|
|
|
'id' => "week",
|
|
|
|
'displayname' => (string)$l->t('Week'),
|
|
|
|
'show' => 2),
|
|
|
|
array(
|
|
|
|
'id' => "all",
|
|
|
|
'displayname' => (string)$l->t('All'),
|
|
|
|
'show' => 2),
|
|
|
|
array(
|
|
|
|
'id' => "current",
|
|
|
|
'displayname' => (string)$l->t('Current'),
|
|
|
|
'show' => 2),
|
|
|
|
array(
|
|
|
|
'id' => "completed",
|
2014-08-18 21:44:15 +00:00
|
|
|
'displayname' => (string)$l->t('Completed'),
|
2014-05-27 17:59:35 +00:00
|
|
|
'show' => 2)
|
|
|
|
);
|
|
|
|
foreach ($collections as $key => $collection){
|
|
|
|
try{
|
2014-07-30 19:03:54 +00:00
|
|
|
$tmp = \OCP\Config::getUserValue($this->api->getUserId(), 'tasks','show_'.$collection['id']);
|
2014-07-15 16:58:51 +00:00
|
|
|
if (!in_array((int)$tmp, array(0,1,2)) || $tmp === null) {
|
2014-05-27 17:59:35 +00:00
|
|
|
$tmp = 2;
|
2014-07-30 19:03:54 +00:00
|
|
|
\OCP\Config::setUserValue($this->api->getUserId(), 'tasks','show_'.$collection['id'],$tmp);
|
2014-05-27 17:59:35 +00:00
|
|
|
}
|
2014-07-15 16:58:51 +00:00
|
|
|
$collections[$key]['show'] = (int)$tmp;
|
2014-05-27 17:59:35 +00:00
|
|
|
}catch(\Exception $e) {
|
2014-07-30 19:03:54 +00:00
|
|
|
\OCP\Util::writeLog('tasks', $e->getMessage(), \OCP\Util::ERROR);
|
2014-05-27 17:59:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
$result = array(
|
|
|
|
'data' => array(
|
|
|
|
'collections' => $collections
|
|
|
|
)
|
|
|
|
);
|
|
|
|
$response = new JSONResponse();
|
|
|
|
$response->setData($result);
|
|
|
|
return $response;
|
|
|
|
}
|
|
|
|
|
2014-05-27 18:29:38 +00:00
|
|
|
/**
|
|
|
|
* @NoAdminRequired
|
|
|
|
*/
|
2014-05-27 17:59:35 +00:00
|
|
|
public function setVisibility(){
|
|
|
|
$collectionId = (string) $this->params('collectionID');
|
|
|
|
$vis = (int) $this->params('visibility');
|
|
|
|
if (in_array($vis, array(0,1,2))){
|
2014-07-30 19:03:54 +00:00
|
|
|
\OCP\Config::setUserValue($this->api->getUserId(), 'tasks','show_'.$collectionId,$vis);
|
2014-05-27 17:59:35 +00:00
|
|
|
}
|
|
|
|
$response = new JSONResponse();
|
|
|
|
return $response;
|
|
|
|
}
|
|
|
|
}
|