streams/Code/Widget/Album.php

118 lines
3.6 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
require_once('include/attach.php');
2022-10-23 21:18:44 +00:00
class Album implements WidgetInterface
2021-12-02 23:02:31 +00:00
{
2022-10-24 03:39:49 +00:00
public function widget(array $arguments): string
2021-12-02 23:02:31 +00:00
{
$owner_uid = App::$profile_uid;
$sql_extra = permissions_sql($owner_uid);
if (!perm_is_allowed($owner_uid, get_observer_hash(), 'view_storage')) {
return '';
}
2022-09-03 05:23:54 +00:00
// We will need this to map mimetypes to appropriate file extensions
$ph = photo_factory('');
$phototypes = $ph->supportedTypes();
$album = '';
$title = '';
2022-10-24 03:39:49 +00:00
if ($arguments['album']) {
$album = $arguments['album'];
2021-12-02 23:02:31 +00:00
}
2022-09-03 05:23:54 +00:00
2022-10-24 03:39:49 +00:00
if ($arguments['title']) {
$title = $arguments['title'];
2021-12-02 23:02:31 +00:00
}
/**
* 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)
);
2022-10-24 03:39:49 +00:00
// edit album name
2021-12-02 23:02:31 +00:00
$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']);
2022-10-23 21:18:44 +00:00
$photos[] = [
2021-12-02 23:02:31 +00:00
'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-10-23 21:18:44 +00:00
];
2021-12-02 23:02:31 +00:00
}
}
2022-09-03 05:23:54 +00:00
return replace_macros(Theme::get_template('photo_album.tpl'), [
2021-12-02 23:02:31 +00:00
'$photos' => $photos,
2022-09-03 05:23:54 +00:00
'$album' => ($title) ?: $album,
2021-12-02 23:02:31 +00:00
'$album_id' => rand(),
2022-09-03 05:23:54 +00:00
'$album_edit' => [t('Edit Album'), $album_edit],
2021-12-02 23:02:31 +00:00
'$can_post' => false,
2022-09-03 05:23:54 +00:00
'$upload' => [t('Upload'), z_root() . '/photos/' . App::$profile['channel_address'] . '/upload/' . bin2hex($album)],
2021-12-02 23:02:31 +00:00
'$order' => false,
2022-09-03 05:23:54 +00:00
'$upload_form' => '',
'$usage' => ''
]);
2021-12-02 23:02:31 +00:00
}
}