streams/Zotlabs/Widget/Portfolio.php

133 lines
4 KiB
PHP
Raw Normal View History

2017-06-13 19:08:21 +00:00
<?php
namespace Zotlabs\Widget;
2021-12-02 22:33:36 +00:00
use App;
2022-02-12 20:43:29 +00:00
use Zotlabs\Render\Theme;
2021-12-02 22:33:36 +00:00
2017-06-13 19:08:21 +00:00
require_once('include/attach.php');
2021-12-02 23:02:31 +00:00
class Portfolio
{
public function widget($args)
{
$owner_uid = App::$profile_uid;
$sql_extra = permissions_sql($owner_uid);
2021-12-03 03:01:39 +00:00
if (!perm_is_allowed($owner_uid, get_observer_hash(), 'view_storage')) {
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
2021-12-03 03:01:39 +00:00
if ($args['album']) {
2021-12-02 23:02:31 +00:00
$album = $args['album'];
2021-12-03 03:01:39 +00:00
}
if ($args['title']) {
2021-12-02 23:02:31 +00:00
$title = $args['title'];
2021-12-03 03:01:39 +00:00
}
if (array_key_exists('mode', $args) && isset($args['mode'])) {
2021-12-02 23:02:31 +00:00
$mode = $args['mode'];
2021-12-03 03:01:39 +00:00
} else {
2021-12-02 23:02:31 +00:00
$mode = '';
2021-12-03 03:01:39 +00:00
}
if (array_key_exists('count', $args) && isset($args['count'])) {
2021-12-02 23:02:31 +00:00
$count = $args['count'];
2021-12-03 03:01:39 +00:00
} else {
2021-12-02 23:02:31 +00:00
$count = '';
2021-12-03 03:01:39 +00:00
}
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
*/
if ($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
2017-06-13 19:08:21 +00:00
(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,
'fullsrc' => z_root() . '/photo/' . $rr['resource_id'] . '-' . '1' . '.' . $ext,
'resource_id' => $rr['resource_id'],
'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_portfolio.tpl');
2021-12-02 23:02:31 +00:00
$o .= replace_macros($tpl, array(
'$photos' => $photos,
'$mode' => $mode,
'$count' => $count,
'$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;
}
2017-06-13 19:08:21 +00:00
}