possibly improve the album list query and save the result in App::$data
This commit is contained in:
@@ -691,20 +691,17 @@ class Photos extends \Zotlabs\Web\Controller {
|
||||
}
|
||||
|
||||
$album = (($datum) ? hex2bin($datum) : '');
|
||||
|
||||
|
||||
|
||||
\App::$page['htmlhead'] .= "\r\n" . '<link rel="alternate" type="application/json+oembed" href="' . z_root() . '/oep?f=&url=' . urlencode(z_root() . '/' . \App::$cmd) . '" title="oembed" />' . "\r\n";
|
||||
|
||||
$r = q("SELECT resource_id, max(imgscale) AS imgscale FROM photo WHERE uid = %d AND album = '%s'
|
||||
AND imgscale <= 4 and photo_usage IN ( %d, %d ) and is_nsfw = %d $sql_extra GROUP BY resource_id",
|
||||
|
||||
//check if the album exists and if we have perms
|
||||
$r = q("SELECT album FROM photo WHERE uid = %d AND album = '%s' and is_nsfw = %d $sql_extra LIMIT 1",
|
||||
intval($owner_uid),
|
||||
dbesc($album),
|
||||
intval(PHOTO_NORMAL),
|
||||
intval(PHOTO_PROFILE),
|
||||
intval($unsafe)
|
||||
);
|
||||
if(count($r)) {
|
||||
\App::set_pager_total(count($r));
|
||||
|
||||
if($r) {
|
||||
\App::set_pager_itemspage(60);
|
||||
} else {
|
||||
goaway(z_root() . '/photos/' . \App::$data['channel']['channel_address']);
|
||||
|
Reference in New Issue
Block a user