3 * @copyright Copyright (C) 2010-2022, the Friendica project
5 * @license GNU AGPL version 3 or any later version
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as
9 * published by the Free Software Foundation, either version 3 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
23 use Friendica\Content\Nav;
24 use Friendica\Content\Pager;
25 use Friendica\Content\Text\BBCode;
26 use Friendica\Content\Widget;
27 use Friendica\Core\ACL;
28 use Friendica\Core\Addon;
29 use Friendica\Core\Hook;
30 use Friendica\Core\Logger;
31 use Friendica\Core\Renderer;
32 use Friendica\Core\System;
33 use Friendica\Database\DBA;
35 use Friendica\Model\Contact;
36 use Friendica\Model\Item;
37 use Friendica\Model\Photo;
38 use Friendica\Model\Post;
39 use Friendica\Model\Profile;
40 use Friendica\Model\Tag;
41 use Friendica\Model\User;
42 use Friendica\Module\BaseProfile;
43 use Friendica\Network\HTTPException;
44 use Friendica\Network\Probe;
45 use Friendica\Protocol\Activity;
46 use Friendica\Security\Security;
47 use Friendica\Util\Crypto;
48 use Friendica\Util\DateTimeFormat;
49 use Friendica\Util\Images;
50 use Friendica\Util\Map;
51 use Friendica\Util\Strings;
52 use Friendica\Util\Temporal;
53 use Friendica\Util\XML;
55 function photos_init(App $a)
57 if (DI::config()->get('system', 'block_public') && !DI::userSession()->isAuthenticated()) {
61 Nav::setSelected('home');
63 if (DI::args()->getArgc() > 1) {
64 $owner = User::getOwnerDataByNick(DI::args()->getArgv()[1]);
65 if (!isset($owner['account_removed']) || $owner['account_removed']) {
66 throw new HTTPException\NotFoundException(DI::l10n()->t('User not found.'));
69 $is_owner = (DI::userSession()->getLocalUserId() && (DI::userSession()->getLocalUserId() == $owner['uid']));
71 $albums = Photo::getAlbums($owner['uid']);
73 $albums_visible = ((intval($owner['hidewall']) && !DI::userSession()->isAuthenticated()) ? false : true);
75 // add various encodings to the array so we can just loop through and pick them out in a template
76 $ret = ['success' => false];
79 if ($albums_visible) {
80 $ret['success'] = true;
84 foreach ($albums as $k => $album) {
86 'text' => $album['album'],
87 'total' => $album['total'],
88 'url' => 'photos/' . $owner['nickname'] . '/album/' . bin2hex($album['album']),
89 'urlencode' => urlencode($album['album']),
90 'bin2hex' => bin2hex($album['album'])
92 $ret['albums'][] = $entry;
96 if (DI::userSession()->getLocalUserId() && $owner['uid'] == DI::userSession()->getLocalUserId()) {
102 if ($ret['success']) {
103 $photo_albums_widget = Renderer::replaceMacros(Renderer::getMarkupTemplate('photo_albums.tpl'), [
104 '$nick' => $owner['nickname'],
105 '$title' => DI::l10n()->t('Photo Albums'),
106 '$recent' => DI::l10n()->t('Recent Photos'),
107 '$albums' => $ret['albums'],
108 '$upload' => [DI::l10n()->t('Upload New Photos'), 'photos/' . $owner['nickname'] . '/upload'],
109 '$can_post' => $can_post
113 if (empty(DI::page()['aside'])) {
114 DI::page()['aside'] = '';
117 DI::page()['aside'] .= Widget\VCard::getHTML($owner);
119 if (!empty($photo_albums_widget)) {
120 DI::page()['aside'] .= $photo_albums_widget;
123 $tpl = Renderer::getMarkupTemplate("photos_head.tpl");
125 DI::page()['htmlhead'] .= Renderer::replaceMacros($tpl,[
126 '$ispublic' => DI::l10n()->t('everybody')
133 function photos_post(App $a)
135 $user = User::getByNickname(DI::args()->getArgv()[1]);
136 if (!DBA::isResult($user)) {
137 throw new HTTPException\NotFoundException(DI::l10n()->t('User not found.'));
140 $phototypes = Images::supportedTypes();
145 $page_owner_uid = intval($user['uid']);
146 $community_page = $user['page-flags'] == User::PAGE_FLAGS_COMMUNITY;
148 if (DI::userSession()->getLocalUserId() && (DI::userSession()->getLocalUserId() == $page_owner_uid)) {
150 } elseif ($community_page && !empty(DI::userSession()->getRemoteContactID($page_owner_uid))) {
151 $contact_id = DI::userSession()->getRemoteContactID($page_owner_uid);
153 $visitor = $contact_id;
157 DI::sysmsg()->addNotice(DI::l10n()->t('Permission denied.'));
161 $owner_record = User::getOwnerDataById($page_owner_uid);
163 if (!$owner_record) {
164 DI::sysmsg()->addNotice(DI::l10n()->t('Contact information unavailable'));
165 DI::logger()->info('photos_post: unable to locate contact record for page owner. uid=' . $page_owner_uid);
169 $aclFormatter = DI::aclFormatter();
170 $str_contact_allow = isset($_REQUEST['contact_allow']) ? $aclFormatter->toString($_REQUEST['contact_allow']) : $owner_record['allow_cid'] ?? '';
171 $str_group_allow = isset($_REQUEST['group_allow']) ? $aclFormatter->toString($_REQUEST['group_allow']) : $owner_record['allow_gid'] ?? '';
172 $str_contact_deny = isset($_REQUEST['contact_deny']) ? $aclFormatter->toString($_REQUEST['contact_deny']) : $owner_record['deny_cid'] ?? '';
173 $str_group_deny = isset($_REQUEST['group_deny']) ? $aclFormatter->toString($_REQUEST['group_deny']) : $owner_record['deny_gid'] ?? '';
175 $visibility = $_REQUEST['visibility'] ?? '';
176 if ($visibility === 'public') {
177 // The ACL selector introduced in version 2019.12 sends ACL input data even when the Public visibility is selected
178 $str_contact_allow = $str_group_allow = $str_contact_deny = $str_group_deny = '';
179 } else if ($visibility === 'custom') {
180 // Since we know from the visibility parameter the item should be private, we have to prevent the empty ACL
181 // case that would make it public. So we always append the author's contact id to the allowed contacts.
182 // See https://github.com/friendica/friendica/issues/9672
183 $str_contact_allow .= $aclFormatter->toString(Contact::getPublicIdByUserId($page_owner_uid));
186 if (DI::args()->getArgc() > 3 && DI::args()->getArgv()[2] === 'album') {
187 if (!Strings::isHex(DI::args()->getArgv()[3] ?? '')) {
188 DI::baseUrl()->redirect('photos/' . $user['nickname'] . '/album');
190 $album = hex2bin(DI::args()->getArgv()[3]);
192 if (!DBA::exists('photo', ['album' => $album, 'uid' => $page_owner_uid, 'photo-type' => Photo::DEFAULT])) {
193 DI::sysmsg()->addNotice(DI::l10n()->t('Album not found.'));
194 DI::baseUrl()->redirect('photos/' . $user['nickname'] . '/album');
195 return; // NOTREACHED
198 // Check if the user has responded to a delete confirmation query
199 if (!empty($_REQUEST['canceled'])) {
200 DI::baseUrl()->redirect('photos/' . $user['nickname'] . '/album/' . DI::args()->getArgv()[3]);
203 // RENAME photo album
204 $newalbum = trim($_POST['albumname'] ?? '');
205 if ($newalbum != $album) {
206 Photo::update(['album' => $newalbum], ['album' => $album, 'uid' => $page_owner_uid]);
207 // Update the photo albums cache
208 Photo::clearAlbumCache($page_owner_uid);
210 DI::baseUrl()->redirect('photos/' . $a->getLoggedInUserNickname() . '/album/' . bin2hex($newalbum));
211 return; // NOTREACHED
215 * DELETE all photos filed in a given album
217 if (!empty($_POST['dropalbum'])) {
220 // get the list of photos we are about to delete
222 $r = DBA::toArray(DBA::p("SELECT distinct(`resource-id`) as `rid` FROM `photo` WHERE `contact-id` = ? AND `uid` = ? AND `album` = ?",
228 $r = DBA::toArray(DBA::p("SELECT distinct(`resource-id`) as `rid` FROM `photo` WHERE `uid` = ? AND `album` = ?",
229 DI::userSession()->getLocalUserId(),
234 if (DBA::isResult($r)) {
235 foreach ($r as $rr) {
239 // remove the associated photos
240 Photo::delete(['resource-id' => $res, 'uid' => $page_owner_uid]);
242 // find and delete the corresponding item with all the comments and likes/dislikes
243 Item::deleteForUser(['resource-id' => $res, 'uid' => $page_owner_uid], $page_owner_uid);
245 // Update the photo albums cache
246 Photo::clearAlbumCache($page_owner_uid);
247 DI::sysmsg()->addNotice(DI::l10n()->t('Album successfully deleted'));
249 DI::sysmsg()->addNotice(DI::l10n()->t('Album was empty.'));
253 DI::baseUrl()->redirect('photos/' . $user['nickname'] . '/album');
256 if (DI::args()->getArgc() > 3 && DI::args()->getArgv()[2] === 'image') {
257 // Check if the user has responded to a delete confirmation query for a single photo
258 if (!empty($_POST['canceled'])) {
259 DI::baseUrl()->redirect('photos/' . DI::args()->getArgv()[1] . '/image/' . DI::args()->getArgv()[3]);
262 if (!empty($_POST['delete'])) {
263 // same as above but remove single photo
265 $condition = ['contact-id' => $visitor, 'uid' => $page_owner_uid, 'resource-id' => DI::args()->getArgv()[3]];
268 $condition = ['uid' => DI::userSession()->getLocalUserId(), 'resource-id' => DI::args()->getArgv()[3]];
271 $photo = DBA::selectFirst('photo', ['resource-id'], $condition);
273 if (DBA::isResult($photo)) {
274 Photo::delete(['uid' => $page_owner_uid, 'resource-id' => $photo['resource-id']]);
276 Item::deleteForUser(['resource-id' => $photo['resource-id'], 'uid' => $page_owner_uid], $page_owner_uid);
278 // Update the photo albums cache
279 Photo::clearAlbumCache($page_owner_uid);
281 DI::sysmsg()->addNotice(DI::l10n()->t('Failed to delete the photo.'));
282 DI::baseUrl()->redirect('photos/' . DI::args()->getArgv()[1] . '/image/' . DI::args()->getArgv()[3]);
285 DI::baseUrl()->redirect('profile/' . DI::args()->getArgv()[1] . '/photos');
289 if (DI::args()->getArgc() > 2 && (!empty($_POST['desc']) || !empty($_POST['newtag']) || isset($_POST['albname']))) {
290 $desc = !empty($_POST['desc']) ? trim($_POST['desc']) : '';
291 $rawtags = !empty($_POST['newtag']) ? trim($_POST['newtag']) : '';
292 $item_id = !empty($_POST['item_id']) ? intval($_POST['item_id']) : 0;
293 $albname = !empty($_POST['albname']) ? trim($_POST['albname']) : '';
294 $origaname = !empty($_POST['origaname']) ? trim($_POST['origaname']) : '';
296 $resource_id = DI::args()->getArgv()[3];
298 if (!strlen($albname)) {
299 $albname = DateTimeFormat::localNow('Y');
302 if (!empty($_POST['rotate']) && (intval($_POST['rotate']) == 1 || intval($_POST['rotate']) == 2)) {
303 Logger::debug('rotate');
305 $photo = Photo::getPhotoForUser($page_owner_uid, $resource_id);
307 if (DBA::isResult($photo)) {
308 $image = Photo::getImageForPhoto($photo);
310 if ($image->isValid()) {
311 $rotate_deg = ((intval($_POST['rotate']) == 1) ? 270 : 90);
312 $image->rotate($rotate_deg);
314 $width = $image->getWidth();
315 $height = $image->getHeight();
317 Photo::update(['height' => $height, 'width' => $width], ['resource-id' => $resource_id, 'uid' => $page_owner_uid, 'scale' => 0], $image);
319 if ($width > 640 || $height > 640) {
320 $image->scaleDown(640);
321 $width = $image->getWidth();
322 $height = $image->getHeight();
324 Photo::update(['height' => $height, 'width' => $width], ['resource-id' => $resource_id, 'uid' => $page_owner_uid, 'scale' => 1], $image);
327 if ($width > 320 || $height > 320) {
328 $image->scaleDown(320);
329 $width = $image->getWidth();
330 $height = $image->getHeight();
332 Photo::update(['height' => $height, 'width' => $width], ['resource-id' => $resource_id, 'uid' => $page_owner_uid, 'scale' => 2], $image);
338 $photos_stmt = DBA::select('photo', [], ['resource-id' => $resource_id, 'uid' => $page_owner_uid], ['order' => ['scale' => true]]);
340 $photos = DBA::toArray($photos_stmt);
342 if (DBA::isResult($photos)) {
344 $ext = $phototypes[$photo['type']];
346 ['desc' => $desc, 'album' => $albname, 'allow_cid' => $str_contact_allow, 'allow_gid' => $str_group_allow, 'deny_cid' => $str_contact_deny, 'deny_gid' => $str_group_deny],
347 ['resource-id' => $resource_id, 'uid' => $page_owner_uid]
350 // Update the photo albums cache if album name was changed
351 if ($albname !== $origaname) {
352 Photo::clearAlbumCache($page_owner_uid);
356 if (DBA::isResult($photos) && !$item_id) {
357 // Create item container
359 $uri = Item::newURI();
362 $arr['guid'] = System::createUUID();
363 $arr['uid'] = $page_owner_uid;
365 $arr['post-type'] = Item::PT_IMAGE;
367 $arr['resource-id'] = $photo['resource-id'];
368 $arr['contact-id'] = $owner_record['id'];
369 $arr['owner-name'] = $owner_record['name'];
370 $arr['owner-link'] = $owner_record['url'];
371 $arr['owner-avatar'] = $owner_record['thumb'];
372 $arr['author-name'] = $owner_record['name'];
373 $arr['author-link'] = $owner_record['url'];
374 $arr['author-avatar'] = $owner_record['thumb'];
375 $arr['title'] = $title;
376 $arr['allow_cid'] = $photo['allow_cid'];
377 $arr['allow_gid'] = $photo['allow_gid'];
378 $arr['deny_cid'] = $photo['deny_cid'];
379 $arr['deny_gid'] = $photo['deny_gid'];
383 $arr['body'] = '[url=' . DI::baseUrl() . '/photos/' . $user['nickname'] . '/image/' . $photo['resource-id'] . ']'
384 . '[img]' . DI::baseUrl() . '/photo/' . $photo['resource-id'] . '-' . $photo['scale'] . '.'. $ext . '[/img]'
387 $item_id = Item::insert($arr);
391 $item = Post::selectFirst(['inform', 'uri-id'], ['id' => $item_id, 'uid' => $page_owner_uid]);
393 if (DBA::isResult($item)) {
394 $old_inform = $item['inform'];
398 if (strlen($rawtags)) {
401 // if the new tag doesn't have a namespace specifier (@foo or #foo) give it a hashtag
402 $x = substr($rawtags, 0, 1);
403 if ($x !== '@' && $x !== '#') {
404 $rawtags = '#' . $rawtags;
408 $tags = BBCode::getTags($rawtags);
411 foreach ($tags as $tag) {
412 if (strpos($tag, '@') === 0) {
415 $name = substr($tag,1);
417 if ((strpos($name, '@')) || (strpos($name, 'http://'))) {
419 $links = @Probe::lrdd($name);
422 foreach ($links as $link) {
423 if ($link['@attributes']['rel'] === 'http://webfinger.net/rel/profile-page') {
424 $profile = $link['@attributes']['href'];
427 if ($link['@attributes']['rel'] === 'salmon') {
428 $salmon = '$url:' . str_replace(',', '%sc', $link['@attributes']['href']);
430 if (strlen($inform)) {
439 $taginfo[] = [$newname, $profile, $salmon];
444 if (strrpos($newname, '+')) {
445 $tagcid = intval(substr($newname, strrpos($newname, '+') + 1));
449 $contact = DBA::selectFirst('contact', [], ['id' => $tagcid, 'uid' => $page_owner_uid]);
451 $newname = str_replace('_',' ',$name);
453 //select someone from this user's contacts by name
454 $contact = DBA::selectFirst('contact', [], ['name' => $newname, 'uid' => $page_owner_uid]);
455 if (!DBA::isResult($contact)) {
456 //select someone by attag or nick and the name passed in
457 $contact = DBA::selectFirst('contact', [],
458 ['(`attag` = ? OR `nick` = ?) AND `uid` = ?', $name, $name, $page_owner_uid],
459 ['order' => ['attag' => true]]
464 if (DBA::isResult($contact)) {
465 $newname = $contact['name'];
466 $profile = $contact['url'];
468 $notify = 'cid:' . $contact['id'];
469 if (strlen($inform)) {
477 if (!empty($contact)) {
478 $taginfo[] = [$newname, $profile, $notify, $contact];
480 $taginfo[] = [$newname, $profile, $notify, null];
483 $profile = str_replace(',', '%2c', $profile);
485 if (!empty($item['uri-id'])) {
486 Tag::store($item['uri-id'], Tag::MENTION, $newname, $profile);
489 } elseif (strpos($tag, '#') === 0) {
490 $tagname = substr($tag, 1);
491 if (!empty($item['uri-id'])) {
492 Tag::store($item['uri-id'], Tag::HASHTAG, $tagname);
498 $newinform = $old_inform ?? '';
499 if (strlen($newinform) && strlen($inform)) {
502 $newinform .= $inform;
504 $fields = ['inform' => $newinform, 'edited' => DateTimeFormat::utcNow(), 'changed' => DateTimeFormat::utcNow()];
505 $condition = ['id' => $item_id];
506 Item::update($fields, $condition);
509 foreach ($photos as $scales) {
510 if (intval($scales['scale']) == 2) {
515 if (intval($scales['scale']) == 4) {
521 if (count($taginfo)) {
522 foreach ($taginfo as $tagged) {
523 $uri = Item::newURI();
526 'guid' => System::createUUID(),
527 'uid' => $page_owner_uid,
530 'contact-id' => $owner_record['id'],
531 'owner-name' => $owner_record['name'],
532 'owner-link' => $owner_record['url'],
533 'owner-avatar' => $owner_record['thumb'],
534 'author-name' => $owner_record['name'],
535 'author-link' => $owner_record['url'],
536 'author-avatar' => $owner_record['thumb'],
538 'allow_cid' => $photo['allow_cid'],
539 'allow_gid' => $photo['allow_gid'],
540 'deny_cid' => $photo['deny_cid'],
541 'deny_gid' => $photo['deny_gid'],
543 'verb' => Activity::TAG,
544 'gravity' => Item::GRAVITY_PARENT,
545 'object-type' => Activity\ObjectType::PERSON,
546 'target-type' => Activity\ObjectType::IMAGE,
547 'inform' => $tagged[2],
549 'body' => DI::l10n()->t('%1$s was tagged in %2$s by %3$s', '[url=' . $tagged[1] . ']' . $tagged[0] . '[/url]', '[url=' . DI::baseUrl() . '/photos/' . $owner_record['nickname'] . '/image/' . $photo['resource-id'] . ']' . DI::l10n()->t('a photo') . '[/url]', '[url=' . $owner_record['url'] . ']' . $owner_record['name'] . '[/url]') . "\n\n" . '[url=' . DI::baseUrl() . '/photos/' . $owner_record['nickname'] . '/image/' . $photo['resource-id'] . ']' . '[img]' . DI::baseUrl() . '/photo/' . $photo['resource-id'] . '-' . $best . '.' . $ext . '[/img][/url]' . "\n",
550 'object' => '<object><type>' . Activity\ObjectType::PERSON . '</type><title>' . $tagged[0] . '</title><id>' . $tagged[1] . '/' . $tagged[0] . '</id><link>' . XML::escape('<link rel="alternate" type="text/html" href="' . $tagged[1] . '" />' . "\n"),
551 'target' => '<target><type>' . Activity\ObjectType::IMAGE . '</type><title>' . $photo['desc'] . '</title><id>' . DI::baseUrl() . '/photos/' . $owner_record['nickname'] . '/image/' . $photo['resource-id'] . '</id><link>' . XML::escape('<link rel="alternate" type="text/html" href="' . DI::baseUrl() . '/photos/' . $owner_record['nickname'] . '/image/' . $photo['resource-id'] . '" />' . "\n" . '<link rel="preview" type="' . $photo['type'] . '" href="' . DI::baseUrl() . '/photo/' . $photo['resource-id'] . '-' . $best . '.' . $ext . '" />') . '</link></target>',
555 $arr['object'] .= XML::escape('<link rel="photo" type="' . $photo['type'] . '" href="' . $tagged[3]['photo'] . '" />' . "\n");
557 $arr['object'] .= '</link></object>' . "\n";
563 DI::baseUrl()->redirect($_SESSION['photo_return']);
564 return; // NOTREACHED
568 function photos_content(App $a)
571 // photos/name/upload
572 // photos/name/upload/xxxxx (xxxxx is album name)
573 // photos/name/album/xxxxx
574 // photos/name/album/xxxxx/edit
575 // photos/name/album/xxxxx/drop
576 // photos/name/image/xxxxx
577 // photos/name/image/xxxxx/edit
578 // photos/name/image/xxxxx/drop
580 $user = User::getByNickname(DI::args()->getArgv()[1] ?? '');
581 if (!DBA::isResult($user)) {
582 throw new HTTPException\NotFoundException(DI::l10n()->t('User not found.'));
585 if (DI::config()->get('system', 'block_public') && !DI::userSession()->isAuthenticated()) {
586 DI::sysmsg()->addNotice(DI::l10n()->t('Public access denied.'));
591 DI::sysmsg()->addNotice(DI::l10n()->t('No photos selected'));
595 $profile = Profile::getByUID($user['uid']);
597 $phototypes = Images::supportedTypes();
599 $_SESSION['photo_return'] = DI::args()->getCommand();
603 if (DI::args()->getArgc() > 3) {
604 $datatype = DI::args()->getArgv()[2];
605 $datum = DI::args()->getArgv()[3];
606 } elseif ((DI::args()->getArgc() > 2) && (DI::args()->getArgv()[2] === 'upload')) {
607 $datatype = 'upload';
609 $datatype = 'summary';
612 if (DI::args()->getArgc() > 4) {
613 $cmd = DI::args()->getArgv()[4];
618 // Setup permissions structures
622 $remote_contact = false;
627 $owner_uid = $user['uid'];
629 $community_page = (($user['page-flags'] == User::PAGE_FLAGS_COMMUNITY) ? true : false);
631 if (DI::userSession()->getLocalUserId() && (DI::userSession()->getLocalUserId() == $owner_uid)) {
633 } elseif ($community_page && !empty(DI::userSession()->getRemoteContactID($owner_uid))) {
634 $contact_id = DI::userSession()->getRemoteContactID($owner_uid);
635 $contact = DBA::selectFirst('contact', [], ['id' => $contact_id, 'uid' => $owner_uid, 'blocked' => false, 'pending' => false]);
637 if (DBA::isResult($contact)) {
639 $remote_contact = true;
640 $visitor = $contact_id;
644 // perhaps they're visiting - but not a community page, so they wouldn't have write access
645 if (!empty(DI::userSession()->getRemoteContactID($owner_uid)) && !$visitor) {
646 $contact_id = DI::userSession()->getRemoteContactID($owner_uid);
648 $contact = DBA::selectFirst('contact', [], ['id' => $contact_id, 'uid' => $owner_uid, 'blocked' => false, 'pending' => false]);
650 $remote_contact = DBA::isResult($contact);
653 if (!$remote_contact && DI::userSession()->getLocalUserId()) {
654 $contact_id = $_SESSION['cid'];
656 $contact = DBA::selectFirst('contact', [], ['id' => $contact_id, 'uid' => $owner_uid, 'blocked' => false, 'pending' => false]);
659 if ($user['hidewall'] && !DI::userSession()->isAuthenticated()) {
660 DI::baseUrl()->redirect('profile/' . $user['nickname'] . '/restricted');
663 $sql_extra = Security::getPermissionsSQLByUserId($owner_uid);
668 $is_owner = (DI::userSession()->getLocalUserId() && (DI::userSession()->getLocalUserId() == $owner_uid));
669 $o .= BaseProfile::getTabsHTML('photos', $is_owner, $user['nickname'], $profile['hide-friends']);
671 // Display upload form
672 if ($datatype === 'upload') {
674 DI::sysmsg()->addNotice(DI::l10n()->t('Permission denied.'));
678 // This prevents the photo upload form to return to itself without a hint the picture has been correctly uploaded.
679 DI::session()->remove('photo_return');
681 $selname = (!is_null($datum) && Strings::isHex($datum)) ? hex2bin($datum) : '';
685 $albumselect .= '<option value="" ' . (!$selname ? ' selected="selected" ' : '') . '><current year></option>';
686 $albums = Photo::getAlbums($owner_uid);
687 if (!empty($albums)) {
688 foreach ($albums as $album) {
689 if ($album['album'] === '') {
692 $selected = (($selname === $album['album']) ? ' selected="selected" ' : '');
693 $albumselect .= '<option value="' . $album['album'] . '"' . $selected . '>' . $album['album'] . '</option>';
699 $ret = ['post_url' => 'profile/' . $user['nickname'] . '/photos',
700 'addon_text' => $uploader,
701 'default_upload' => true];
703 Hook::callAll('photo_upload_form',$ret);
705 $default_upload_box = Renderer::replaceMacros(Renderer::getMarkupTemplate('photos_default_uploader_box.tpl'), []);
706 $default_upload_submit = Renderer::replaceMacros(Renderer::getMarkupTemplate('photos_default_uploader_submit.tpl'), [
707 '$submit' => DI::l10n()->t('Submit'),
710 // Get the relevant size limits for uploads. Abbreviated var names: MaxImageSize -> mis; upload_max_filesize -> umf
711 $mis_bytes = Strings::getBytesFromShorthand(DI::config()->get('system', 'maximagesize'));
712 $umf_bytes = Strings::getBytesFromShorthand(ini_get('upload_max_filesize'));
714 // Per Friendica definition a value of '0' means unlimited:
715 If ($mis_bytes == 0) {
719 // When PHP is configured with upload_max_filesize less than maximagesize provide this lower limit.
720 $maximagesize_bytes = (is_numeric($mis_bytes) && ($mis_bytes < $umf_bytes) ? $mis_bytes : $umf_bytes);
722 // @todo We may be want to use appropriate binary prefixed dynamicly
723 $usage_message = DI::l10n()->t('The maximum accepted image size is %s', Strings::formatBytes($maximagesize_bytes));
725 $tpl = Renderer::getMarkupTemplate('photos_upload.tpl');
727 $aclselect_e = ($visitor ? '' : ACL::getFullSelectorHTML(DI::page(), $a->getLoggedInUserId()));
729 $o .= Renderer::replaceMacros($tpl,[
730 '$pagename' => DI::l10n()->t('Upload Photos'),
731 '$sessid' => session_id(),
732 '$usage' => $usage_message,
733 '$nickname' => $user['nickname'],
734 '$newalbum' => DI::l10n()->t('New album name: '),
735 '$existalbumtext' => DI::l10n()->t('or select existing album:'),
736 '$nosharetext' => DI::l10n()->t('Do not show a status post for this upload'),
737 '$albumselect' => $albumselect,
738 '$permissions' => DI::l10n()->t('Permissions'),
739 '$aclselect' => $aclselect_e,
740 '$lockstate' => ACL::getLockstateForUserId($a->getLoggedInUserId()) ? 'lock' : 'unlock',
741 '$alt_uploader' => $ret['addon_text'],
742 '$default_upload_box' => ($ret['default_upload'] ? $default_upload_box : ''),
743 '$default_upload_submit' => ($ret['default_upload'] ? $default_upload_submit : ''),
744 '$uploadurl' => $ret['post_url'],
746 // ACL permissions box
747 '$return_path' => DI::args()->getQueryString(),
753 // Display a single photo album
754 if ($datatype === 'album') {
755 // if $datum is not a valid hex, redirect to the default page
756 if (is_null($datum) || !Strings::isHex($datum)) {
757 DI::baseUrl()->redirect('photos/' . $user['nickname']. '/album');
759 $album = hex2bin($datum);
761 if ($can_post && !Photo::exists(['uid' => $owner_uid, 'album' => $album, 'photo-type' => Photo::DEFAULT])) {
766 $r = DBA::toArray(DBA::p("SELECT `resource-id`, max(`scale`) AS `scale` FROM `photo` WHERE `uid` = ? AND `album` = ?
767 AND `scale` <= 4 $sql_extra GROUP BY `resource-id`",
771 if (DBA::isResult($r)) {
775 $pager = new Pager(DI::l10n(), DI::args()->getQueryString(), 20);
777 /// @TODO I have seen this many times, maybe generalize it script-wide and encapsulate it?
778 $order_field = $_GET['order'] ?? '';
779 if ($order_field === 'created') {
785 $r = DBA::toArray(DBA::p("SELECT `resource-id`, ANY_VALUE(`id`) AS `id`, ANY_VALUE(`filename`) AS `filename`,
786 ANY_VALUE(`type`) AS `type`, max(`scale`) AS `scale`, ANY_VALUE(`desc`) as `desc`,
787 ANY_VALUE(`created`) as `created`
788 FROM `photo` WHERE `uid` = ? AND `album` = ?
789 AND `scale` <= 4 $sql_extra GROUP BY `resource-id` ORDER BY `created` $order LIMIT ? , ?",
793 $pager->getItemsPerPage()
796 if ($cmd === 'drop') {
797 $drop_url = DI::args()->getQueryString();
799 return Renderer::replaceMacros(Renderer::getMarkupTemplate('confirm.tpl'), [
801 'message' => DI::l10n()->t('Do you really want to delete this photo album and all its photos?'),
802 'confirm' => DI::l10n()->t('Delete Album'),
803 'cancel' => DI::l10n()->t('Cancel'),
806 '$confirm_url' => $drop_url,
807 '$confirm_name' => 'dropalbum',
808 '$confirm_value' => 'dropalbum',
813 if ($cmd === 'edit') {
815 $edit_tpl = Renderer::getMarkupTemplate('album_edit.tpl');
819 $o .= Renderer::replaceMacros($edit_tpl,[
820 '$nametext' => DI::l10n()->t('New album name: '),
821 '$nickname' => $user['nickname'],
822 '$album' => $album_e,
823 '$hexalbum' => bin2hex($album),
824 '$submit' => DI::l10n()->t('Submit'),
825 '$dropsubmit' => DI::l10n()->t('Delete Album')
828 } elseif ($can_post) {
829 $edit = [DI::l10n()->t('Edit Album'), 'photos/' . $user['nickname'] . '/album/' . bin2hex($album) . '/edit'];
830 $drop = [DI::l10n()->t('Drop Album'), 'photos/' . $user['nickname'] . '/album/' . bin2hex($album) . '/drop'];
833 if ($order_field === 'created') {
834 $order = [DI::l10n()->t('Show Newest First'), 'photos/' . $user['nickname'] . '/album/' . bin2hex($album), 'oldest'];
836 $order = [DI::l10n()->t('Show Oldest First'), 'photos/' . $user['nickname'] . '/album/' . bin2hex($album) . '?order=created', 'newest'];
841 if (DBA::isResult($r)) {
842 // "Twist" is only used for the duepunto theme with style "slackr"
844 foreach ($r as $rr) {
847 $ext = $phototypes[$rr['type']];
849 $imgalt_e = $rr['filename'];
850 $desc_e = $rr['desc'];
854 'twist' => ' ' . ($twist ? 'rotleft' : 'rotright') . rand(2,4),
855 'link' => 'photos/' . $user['nickname'] . '/image/' . $rr['resource-id']
856 . ($order_field === 'created' ? '?order=created' : ''),
857 'title' => DI::l10n()->t('View Photo'),
858 'src' => 'photo/' . $rr['resource-id'] . '-' . $rr['scale'] . '.' .$ext,
862 'hash'=> $rr['resource-id'],
867 $tpl = Renderer::getMarkupTemplate('photo_album.tpl');
868 $o .= Renderer::replaceMacros($tpl, [
869 '$photos' => $photos,
871 '$can_post' => $can_post,
872 '$upload' => [DI::l10n()->t('Upload New Photos'), 'photos/' . $user['nickname'] . '/upload/' . bin2hex($album)],
876 '$paginate' => $pager->renderFull($total),
884 if ($datatype === 'image') {
885 // fetch image, item containing image, then comments
886 $ph = Photo::selectToArray([], ["`uid` = ? AND `resource-id` = ? " . $sql_extra, $owner_uid, $datum], ['order' => ['scale']]);
888 if (!DBA::isResult($ph)) {
889 if (DBA::exists('photo', ['resource-id' => $datum, 'uid' => $owner_uid])) {
890 DI::sysmsg()->addNotice(DI::l10n()->t('Permission denied. Access to this item may be restricted.'));
892 DI::sysmsg()->addNotice(DI::l10n()->t('Photo not available'));
897 if ($cmd === 'drop') {
898 $drop_url = DI::args()->getQueryString();
900 return Renderer::replaceMacros(Renderer::getMarkupTemplate('confirm.tpl'), [
902 'message' => DI::l10n()->t('Do you really want to delete this photo?'),
903 'confirm' => DI::l10n()->t('Delete Photo'),
904 'cancel' => DI::l10n()->t('Cancel'),
907 '$confirm_url' => $drop_url,
908 '$confirm_name' => 'delete',
909 '$confirm_value' => 'delete',
917 * @todo This query is totally bad, the whole functionality has to be changed
918 * The query leads to a really intense used index.
919 * By now we hide it if someone wants to.
921 if ($cmd === 'view' && !DI::config()->get('system', 'no_count', false)) {
922 $order_field = $_GET['order'] ?? '';
924 if ($order_field === 'created') {
925 $params = ['order' => [$order_field]];
926 } elseif (!empty($order_field)) {
927 $params = ['order' => [$order_field => true]];
932 $prvnxt = Photo::selectToArray(['resource-id'], ["`album` = ? AND `uid` = ? AND `scale` = ?" . $sql_extra, $ph[0]['album'], $owner_uid, 0], $params);
934 if (DBA::isResult($prvnxt)) {
937 foreach ($prvnxt as $z => $entry) {
938 if ($entry['resource-id'] == $ph[0]['resource-id']) {
942 $prv = count($prvnxt) - 1;
944 if ($nxt >= count($prvnxt)) {
951 if (!is_null($prv)) {
952 $prevlink = 'photos/' . $user['nickname'] . '/image/' . $prvnxt[$prv]['resource-id'] . ($order_field === 'created' ? '?order=created' : '');
954 if (!is_null($nxt)) {
955 $nextlink = 'photos/' . $user['nickname'] . '/image/' . $prvnxt[$nxt]['resource-id'] . ($order_field === 'created' ? '?order=created' : '');
958 $tpl = Renderer::getMarkupTemplate('photo_edit_head.tpl');
959 DI::page()['htmlhead'] .= Renderer::replaceMacros($tpl,[
960 '$prevlink' => $prevlink,
961 '$nextlink' => $nextlink
965 $prevlink = [$prevlink, '<div class="icon prev"></div>'];
969 $nextlink = [$nextlink, '<div class="icon next"></div>'];
974 if (count($ph) == 1) {
975 $hires = $lores = $ph[0];
978 if (count($ph) > 1) {
979 if ($ph[1]['scale'] == 2) {
980 // original is 640 or less, we can display it directly
981 $hires = $lores = $ph[0];
988 $album_link = 'photos/' . $user['nickname'] . '/album/' . bin2hex($ph[0]['album']);
992 if ($can_post && ($ph[0]['uid'] == $owner_uid)) {
994 if ($cmd === 'edit') {
995 $tools['view'] = ['photos/' . $user['nickname'] . '/image/' . $datum, DI::l10n()->t('View photo')];
997 $tools['edit'] = ['photos/' . $user['nickname'] . '/image/' . $datum . '/edit', DI::l10n()->t('Edit photo')];
998 $tools['delete'] = ['photos/' . $user['nickname'] . '/image/' . $datum . '/drop', DI::l10n()->t('Delete photo')];
999 $tools['profile'] = ['settings/profile/photo/crop/' . $ph[0]['resource-id'], DI::l10n()->t('Use as profile photo')];
1003 $ph[0]['uid'] == DI::userSession()->getLocalUserId()
1004 && (strlen($ph[0]['allow_cid']) || strlen($ph[0]['allow_gid']) || strlen($ph[0]['deny_cid']) || strlen($ph[0]['deny_gid']))
1006 $tools['lock'] = DI::l10n()->t('Private Photo');
1011 'href' => 'photo/' . $hires['resource-id'] . '-' . $hires['scale'] . '.' . $phototypes[$hires['type']],
1012 'title'=> DI::l10n()->t('View Full Size'),
1013 'src' => 'photo/' . $lores['resource-id'] . '-' . $lores['scale'] . '.' . $phototypes[$lores['type']] . '?_u=' . DateTimeFormat::utcNow('ymdhis'),
1014 'height' => $hires['height'],
1015 'width' => $hires['width'],
1016 'album' => $hires['album'],
1017 'filename' => $hires['filename'],
1024 // Do we have an item for this photo?
1026 // FIXME! - replace following code to display the conversation with our normal
1027 // conversation functions so that it works correctly and tracks changes
1028 // in the evolving conversation code.
1029 // The difference is that we won't be displaying the conversation head item
1030 // as a "post" but displaying instead the photo it is linked to
1032 $link_item = Post::selectFirst([], ["`resource-id` = ?" . $sql_extra, $datum]);
1034 if (!empty($link_item['parent']) && !empty($link_item['uid'])) {
1035 $condition = ["`parent` = ? AND `gravity` = ?", $link_item['parent'], Item::GRAVITY_COMMENT];
1036 $total = Post::count($condition);
1038 $pager = new Pager(DI::l10n(), DI::args()->getQueryString());
1040 $params = ['order' => ['id'], 'limit' => [$pager->getStart(), $pager->getItemsPerPage()]];
1041 $items = Post::toArray(Post::selectForUser($link_item['uid'], Item::ITEM_FIELDLIST, $condition, $params));
1043 if (DI::userSession()->getLocalUserId() == $link_item['uid']) {
1044 Item::update(['unseen' => false], ['parent' => $link_item['parent']]);
1048 if (!empty($link_item['coord'])) {
1049 $map = Map::byCoordinates($link_item['coord']);
1054 if (!empty($link_item['id'])) {
1055 // parse tags and add links
1057 foreach (explode(',', Tag::getCSVByURIId($link_item['uri-id'])) as $tag_name) {
1060 'name' => BBCode::toPlaintext($tag_name),
1061 'removeurl' => 'post/' . $link_item['id'] . '/tag/remove/' . bin2hex($tag_name) . '?return=' . urlencode(DI::args()->getCommand()),
1065 $tags = ['title' => DI::l10n()->t('Tags: '), 'tags' => $tag_arr];
1066 if ($cmd === 'edit') {
1067 $tags['removeanyurl'] = 'post/' . $link_item['id'] . '/tag/remove?return=' . urlencode(DI::args()->getCommand());
1068 $tags['removetitle'] = DI::l10n()->t('[Select tags to remove]');
1074 if ($cmd === 'edit' && $can_post) {
1075 $edit_tpl = Renderer::getMarkupTemplate('photo_edit.tpl');
1077 $album_e = $ph[0]['album'];
1078 $caption_e = $ph[0]['desc'];
1079 $aclselect_e = ACL::getFullSelectorHTML(DI::page(), $a->getLoggedInUserId(), false, ACL::getDefaultUserPermissions($ph[0]));
1081 $edit = Renderer::replaceMacros($edit_tpl, [
1082 '$id' => $ph[0]['id'],
1083 '$album' => ['albname', DI::l10n()->t('New album name'), $album_e,''],
1084 '$caption' => ['desc', DI::l10n()->t('Caption'), $caption_e, ''],
1085 '$tags' => ['newtag', DI::l10n()->t('Add a Tag'), "", DI::l10n()->t('Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping')],
1086 '$rotate_none' => ['rotate', DI::l10n()->t('Do not rotate'),0,'', true],
1087 '$rotate_cw' => ['rotate', DI::l10n()->t("Rotate CW \x28right\x29"),1,''],
1088 '$rotate_ccw' => ['rotate', DI::l10n()->t("Rotate CCW \x28left\x29"),2,''],
1090 '$nickname' => $user['nickname'],
1091 '$resource_id' => $ph[0]['resource-id'],
1092 '$permissions' => DI::l10n()->t('Permissions'),
1093 '$aclselect' => $aclselect_e,
1095 '$item_id' => $link_item['id'] ?? 0,
1096 '$submit' => DI::l10n()->t('Submit'),
1097 '$delete' => DI::l10n()->t('Delete Photo'),
1099 // ACL permissions box
1100 '$return_path' => DI::args()->getQueryString(),
1110 if (!empty($link_item['id']) && !empty($link_item['uri'])) {
1111 $cmnt_tpl = Renderer::getMarkupTemplate('comment_item.tpl');
1112 $tpl = Renderer::getMarkupTemplate('photo_item.tpl');
1113 $return_path = DI::args()->getCommand();
1115 if (!DBA::isResult($items)) {
1116 if (($can_post || Security::canWriteToUserWall($owner_uid))) {
1118 * Hmmm, code depending on the presence of a particular addon?
1119 * This should be better if done by a hook
1122 if (Addon::isEnabled('qcomment')) {
1123 $words = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'qcomment', 'words');
1124 $qcomment = $words ? explode("\n", $words) : [];
1127 $comments .= Renderer::replaceMacros($cmnt_tpl, [
1128 '$return_path' => '',
1129 '$jsreload' => $return_path,
1130 '$id' => $link_item['id'],
1131 '$parent' => $link_item['id'],
1132 '$profile_uid' => $owner_uid,
1133 '$mylink' => $contact['url'],
1134 '$mytitle' => DI::l10n()->t('This is you'),
1135 '$myphoto' => $contact['thumb'],
1136 '$comment' => DI::l10n()->t('Comment'),
1137 '$submit' => DI::l10n()->t('Submit'),
1138 '$preview' => DI::l10n()->t('Preview'),
1139 '$loading' => DI::l10n()->t('Loading...'),
1140 '$qcomment' => $qcomment,
1141 '$rand_num' => Crypto::randomDigits(12)
1154 if (DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'system', 'hide_dislike')) {
1155 unset($conv_responses['dislike']);
1159 if (DBA::isResult($items)) {
1160 foreach ($items as $item) {
1161 DI::conversation()->builtinActivityPuller($item, $conv_responses);
1164 if (!empty($conv_responses['like'][$link_item['uri']])) {
1165 $like = DI::conversation()->formatActivity($conv_responses['like'][$link_item['uri']]['links'], 'like', $link_item['id']);
1168 if (!empty($conv_responses['dislike'][$link_item['uri']])) {
1169 $dislike = DI::conversation()->formatActivity($conv_responses['dislike'][$link_item['uri']]['links'], 'dislike', $link_item['id']);
1172 if (($can_post || Security::canWriteToUserWall($owner_uid))) {
1174 * Hmmm, code depending on the presence of a particular addon?
1175 * This should be better if done by a hook
1178 if (Addon::isEnabled('qcomment')) {
1179 $words = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'qcomment', 'words');
1180 $qcomment = $words ? explode("\n", $words) : [];
1183 $comments .= Renderer::replaceMacros($cmnt_tpl,[
1184 '$return_path' => '',
1185 '$jsreload' => $return_path,
1186 '$id' => $link_item['id'],
1187 '$parent' => $link_item['id'],
1188 '$profile_uid' => $owner_uid,
1189 '$mylink' => $contact['url'],
1190 '$mytitle' => DI::l10n()->t('This is you'),
1191 '$myphoto' => $contact['thumb'],
1192 '$comment' => DI::l10n()->t('Comment'),
1193 '$submit' => DI::l10n()->t('Submit'),
1194 '$preview' => DI::l10n()->t('Preview'),
1195 '$qcomment' => $qcomment,
1196 '$rand_num' => Crypto::randomDigits(12)
1200 foreach ($items as $item) {
1204 $activity = DI::activity();
1206 if (($activity->match($item['verb'], Activity::LIKE) ||
1207 $activity->match($item['verb'], Activity::DISLIKE)) &&
1208 ($item['gravity'] != Item::GRAVITY_PARENT)) {
1212 $author = ['uid' => 0, 'id' => $item['author-id'],
1213 'network' => $item['author-network'], 'url' => $item['author-link']];
1214 $profile_url = Contact::magicLinkByContact($author);
1215 if (strpos($profile_url, 'contact/redir/') === 0) {
1216 $sparkle = ' sparkle';
1221 $dropping = (($item['contact-id'] == $contact_id) || ($item['uid'] == DI::userSession()->getLocalUserId()));
1223 'dropping' => $dropping,
1224 'pagedrop' => false,
1225 'select' => DI::l10n()->t('Select'),
1226 'delete' => DI::l10n()->t('Delete'),
1229 $title_e = $item['title'];
1230 $body_e = BBCode::convertForUriId($item['uri-id'], $item['body']);
1232 $comments .= Renderer::replaceMacros($template,[
1233 '$id' => $item['id'],
1234 '$profile_url' => $profile_url,
1235 '$name' => $item['author-name'],
1236 '$thumb' => $item['author-avatar'],
1237 '$sparkle' => $sparkle,
1238 '$title' => $title_e,
1240 '$ago' => Temporal::getRelativeDate($item['created']),
1241 '$indent' => (($item['parent'] != $item['id']) ? ' comment' : ''),
1243 '$comment' => $comment
1246 if (($can_post || Security::canWriteToUserWall($owner_uid))) {
1248 * Hmmm, code depending on the presence of a particular addon?
1249 * This should be better if done by a hook
1252 if (Addon::isEnabled('qcomment')) {
1253 $words = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'qcomment', 'words');
1254 $qcomment = $words ? explode("\n", $words) : [];
1257 $comments .= Renderer::replaceMacros($cmnt_tpl, [
1258 '$return_path' => '',
1259 '$jsreload' => $return_path,
1260 '$id' => $item['id'],
1261 '$parent' => $item['parent'],
1262 '$profile_uid' => $owner_uid,
1263 '$mylink' => $contact['url'],
1264 '$mytitle' => DI::l10n()->t('This is you'),
1265 '$myphoto' => $contact['thumb'],
1266 '$comment' => DI::l10n()->t('Comment'),
1267 '$submit' => DI::l10n()->t('Submit'),
1268 '$preview' => DI::l10n()->t('Preview'),
1269 '$qcomment' => $qcomment,
1270 '$rand_num' => Crypto::randomDigits(12)
1277 foreach ($conv_responses as $verb => $activity) {
1278 if (isset($activity[$link_item['uri']])) {
1279 $responses[$verb] = $activity[$link_item['uri']];
1283 if ($cmd === 'view' && ($can_post || Security::canWriteToUserWall($owner_uid))) {
1284 $like_tpl = Renderer::getMarkupTemplate('like_noshare.tpl');
1285 $likebuttons = Renderer::replaceMacros($like_tpl, [
1286 '$id' => $link_item['id'],
1287 '$like' => DI::l10n()->t('Like'),
1288 '$like_title' => DI::l10n()->t('I like this (toggle)'),
1289 '$dislike' => DI::l10n()->t('Dislike'),
1290 '$wait' => DI::l10n()->t('Please wait'),
1291 '$dislike_title' => DI::l10n()->t('I don\'t like this (toggle)'),
1292 '$hide_dislike' => DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'system', 'hide_dislike'),
1293 '$responses' => $responses,
1294 '$return_path' => DI::args()->getQueryString(),
1298 $paginate = $pager->renderFull($total);
1301 $photo_tpl = Renderer::getMarkupTemplate('photo_view.tpl');
1302 $o .= Renderer::replaceMacros($photo_tpl, [
1303 '$id' => $ph[0]['id'],
1304 '$album' => [$album_link, $ph[0]['album']],
1307 '$prevlink' => $prevlink,
1308 '$nextlink' => $nextlink,
1309 '$desc' => $ph[0]['desc'],
1313 '$map_text' => DI::l10n()->t('Map'),
1314 '$likebuttons' => $likebuttons,
1316 '$dislike' => $dislike,
1317 '$comments' => $comments,
1318 '$paginate' => $paginate,
1321 DI::page()['htmlhead'] .= "\n" . '<meta name="twitter:card" content="summary_large_image" />' . "\n";
1322 DI::page()['htmlhead'] .= '<meta name="twitter:title" content="' . $photo["album"] . '" />' . "\n";
1323 DI::page()['htmlhead'] .= '<meta name="twitter:image" content="' . DI::baseUrl() . "/" . $photo["href"] . '" />' . "\n";
1324 DI::page()['htmlhead'] .= '<meta name="twitter:image:width" content="' . $photo["width"] . '" />' . "\n";
1325 DI::page()['htmlhead'] .= '<meta name="twitter:image:height" content="' . $photo["height"] . '" />' . "\n";