summaryrefslogtreecommitdiffstats
path: root/lib/genalloc.c
AgeCommit message (Expand)Author
2011-08-03lib, Make gen_pool memory allocator locklessHuang Ying
2011-05-25lib/genalloc.c: add support for specifying the physical addressJean-Christophe PLAGNIOL-VILLARD
2010-06-29genalloc: fix allocation from end of poolImre Deak
2010-03-30include cleanup: Update gfp.h and slab.h includes to prepare for breaking imp...Tejun Heo
2009-12-16genalloc: use bitmap_find_next_zero_areaAkinobu Mita
2009-06-16lib/genalloc.c: remove unmatched write_lock() in gen_pool_destroyZygo Blaxell
2007-07-17Slab allocators: Replace explicit zeroing with __GFP_ZEROChristoph Lameter
2007-02-20[PATCH] genalloc warning fixesAndrew Morton
2006-10-02[PATCH] make genpool allocator adhere to kernel-doc standardsDean Nelson
2006-10-02[PATCH] LIB: add gen_pool_destroy()Steve Wise
2006-06-23[PATCH] change gen_pool allocator to not touch managed memoryDean Nelson
2005-11-28[PATCH] fix broken lib/genalloc.cChris Humbert
2005-06-21[PATCH] ia64 uncached allocJes Sorensen
t-plugin-8.2.0 Mirror of https://github.com/nextcloud/newsmatthias
summaryrefslogtreecommitdiffstats
path: root/ajax/setitemstatus.php
blob: 03dff7d9403c20c2e55b152786c61ccfe1a797e5 (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
<?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();

$itemId = $_POST['itemId'];
$status = $_POST['status'];

$itemMapper = new OCA\News\ItemMapper();
$item = $itemMapper->find($itemId);

switch ($status) {
    case 'read':
        $item->setRead();
        break;
    case 'unread':
        $item->setUnread();
        break;
    case 'important':
        $item->setImportant();
        break;
    case 'unimportant':
        $item->setUnimportant();
        break;
    default:
        break;
}

$success = $itemMapper->update($item);

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

if(!$success) {
	OCP\JSON::error(array('data' => array('message' => $l->t('Error marking item as read.'))));
	OCP\Util::writeLog('news','ajax/setitemstatus.php: Error setting itemstatus to '. $status .': '.$_POST['itemid'], OCP\Util::ERROR);
	exit();
}

//TODO: replace the following with a real success case. see contact/ajax/createaddressbook.php for inspirations
OCP\JSON::success(array('data' => array('itemId' => $itemId )));