streams/Code/Widget/Album.php

118 lines
3.5 KiB
PHP
Raw Normal View History

<?php
2022-02-16 04:08:28 +00:00
namespace Code\Widget;
2020-03-04 02:00:20 +00:00
use App;
2022-02-16 04:08:28 +00:00
use Code\Render\Theme;
2022-02-12 20:43:29 +00:00
2021-12-03 03:01:39 +00:00
require_once('include/attach.php');
2021-12-02 23:02:31 +00:00
class Album
{
public function widget($args)
{
$owner_uid = App::$profile_uid;
$sql_extra = permissions_sql($owner_uid);
if (!perm_is_allowed($owner_uid, get_observer_hash(), 'view_storage')) {
return '';
}
if ($args['album']) {
$album = $args['album'];
}
if ($args['title']) {
$title = $args['title'];
}
/**
* This may return incorrect permissions if you have multiple directories of the same name.
* It is a limitation of the photo table using a name for a photo album instead of a folder hash
*/
2022-09-01 20:50:26 +00:00
if (!empty($album)) {
2021-12-03 03:01:39 +00:00
$x = q(
"select hash from attach where filename = '%s' and uid = %d limit 1",
2021-12-02 23:02:31 +00:00
dbesc($album),
intval($owner_uid)
);
if ($x) {
$y = attach_can_view_folder($owner_uid, get_observer_hash(), $x[0]['hash']);
2021-12-03 03:01:39 +00:00
if (!$y) {
2021-12-02 23:02:31 +00:00
return '';
2021-12-03 03:01:39 +00:00
}
2021-12-02 23:02:31 +00:00
}
}
$order = 'DESC';
2021-12-03 03:01:39 +00:00
$r = q(
"SELECT p.resource_id, p.id, p.filename, p.mimetype, p.imgscale, p.description, p.created FROM photo p INNER JOIN
(SELECT resource_id, max(imgscale) imgscale FROM photo WHERE uid = %d AND album = '%s' AND imgscale <= 4 AND photo_usage IN ( %d, %d ) $sql_extra GROUP BY resource_id) ph
ON (p.resource_id = ph.resource_id AND p.imgscale = ph.imgscale)
ORDER BY created $order ",
2021-12-02 23:02:31 +00:00
intval($owner_uid),
dbesc($album),
intval(PHOTO_NORMAL),
intval(PHOTO_PROFILE)
);
//edit album name
$album_edit = null;
$photos = [];
if ($r) {
$twist = 'rotright';
foreach ($r as $rr) {
2021-12-03 03:01:39 +00:00
if ($twist == 'rotright') {
2021-12-02 23:02:31 +00:00
$twist = 'rotleft';
2021-12-03 03:01:39 +00:00
} else {
2021-12-02 23:02:31 +00:00
$twist = 'rotright';
2021-12-03 03:01:39 +00:00
}
2021-12-02 23:02:31 +00:00
$ext = $phototypes[$rr['mimetype']];
$imgalt_e = $rr['filename'];
$desc_e = $rr['description'];
$imagelink = (z_root() . '/photos/' . App::$profile['channel_address'] . '/image/' . $rr['resource_id']);
$photos[] = array(
'id' => $rr['id'],
'twist' => ' ' . $twist . rand(2, 4),
'link' => $imagelink,
'title' => t('View Photo'),
'src' => z_root() . '/photo/' . $rr['resource_id'] . '-' . $rr['imgscale'] . '.' . $ext,
'alt' => $imgalt_e,
'desc' => $desc_e,
'ext' => $ext,
'hash' => $rr['resource_id'],
'unknown' => t('Unknown')
);
}
}
2022-02-12 20:43:29 +00:00
$tpl = Theme::get_template('photo_album.tpl');
2021-12-02 23:02:31 +00:00
$o .= replace_macros($tpl, array(
'$photos' => $photos,
'$album' => (($title) ? $title : $album),
'$album_id' => rand(),
'$album_edit' => array(t('Edit Album'), $album_edit),
'$can_post' => false,
'$upload' => array(t('Upload'), z_root() . '/photos/' . App::$profile['channel_address'] . '/upload/' . bin2hex($album)),
'$order' => false,
'$upload_form' => $upload_form,
'$usage' => $usage_message
));
return $o;
}
}