summaryrefslogtreecommitdiffstats
path: root/ajax/createfolder.php
blob: ecc44df4962c2d1ef1bbadb1c4e0a99c9271e243 (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
<?php
/**
* ownCloud - News app
*
* @author Alessandro Cosentino
* Copyright (c) 2012 - Alessandro Cosentino <cosenal@gmail.com>
* 
* This file is licensed under the Affero General Public License version 3 or later.
* See the COPYING-README file
* 
*/

// Check if we are a user
OCP\JSON::checkLoggedIn();
OCP\JSON::checkAppEnabled('news');
OCP\JSON::callCheck();

$userid = OCP\USER::getUser();

$name = trim($_POST['name']);
$folder = new OC_News_Folder($name);
$foldermapper = new OC_News_FolderMapper($userid);
$folderid = $foldermapper->save($folder);

$l = OC_L10N::get('news');

if(!$folderid) {
	OCP\JSON::error(array('data' => array('message' => $l->t('Error adding folder.'))));
	OCP\Util::writeLog('news','ajax/createfolder.php: Error adding folder: '.$_POST['name'], OCP\Util::ERROR);
	exit();
}

//TODO: replace the following with the success case. see contact/ajax/createaddressbook.php for inspirations
OCP\JSON::error(array('data' => array('message' => $l->t('Error adding folder.'))));