summaryrefslogtreecommitdiffstats
path: root/apps/gallery/ajax/getAlbums.php
blob: 3fc1b7467e81fefc0cc54b08a90308abb2485381 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?
require_once('../../../lib/base.php');

if (!OC_User::IsLoggedIn()) {
  echo json_encode(array('status' => 'error', 'message' => 'You need to log in'));
  exit();
}

$a = array();
$stmt = OC_DB::prepare('SELECT * FROM *PREFIX*gallery_albums WHERE uid_owner = ?');
$result = $stmt->execute(array(OC_User::getUser()));

while ($r = $result->fetchRow()) {
  $album_name = $r['album_name'];
  $stmt = OC_DB::prepare('SELECT * FROM *PREFIX*gallery_photos WHERE album_id = ?');
  $tmp_res = $stmt->execute(array($r['album_id']));
  $a[] = array('name' => $album_name, 'numOfItems' => min($tmp_res->numRows(), 10));
}

echo json_encode(array('status'=>'success', 'albums'=>$a));

?>