7 use Friendica\Content\Feature;
8 use Friendica\Content\Nav;
9 use Friendica\Content\Pager;
10 use Friendica\Content\Text\BBCode;
11 use Friendica\Core\ACL;
12 use Friendica\Core\Config;
13 use Friendica\Core\Hook;
14 use Friendica\Core\L10n;
15 use Friendica\Core\Logger;
16 use Friendica\Core\Renderer;
17 use Friendica\Core\System;
18 use Friendica\Database\DBA;
19 use Friendica\Model\Contact;
20 use Friendica\Model\Group;
21 use Friendica\Model\Item;
22 use Friendica\Model\Photo;
23 use Friendica\Model\Profile;
24 use Friendica\Model\User;
25 use Friendica\Network\Probe;
26 use Friendica\Object\Image;
27 use Friendica\Protocol\DFRN;
28 use Friendica\Util\Crypto;
29 use Friendica\Util\DateTimeFormat;
30 use Friendica\Util\Map;
31 use Friendica\Util\Security;
32 use Friendica\Util\Temporal;
33 use Friendica\Util\Strings;
34 use Friendica\Util\XML;
36 function photos_init(App $a) {
39 DFRN::autoRedir($a, $a->argv[1]);
42 if (Config::get('system', 'block_public') && !local_user() && !remote_user()) {
46 Nav::setSelected('home');
50 $user = q("SELECT * FROM `user` WHERE `nickname` = '%s' AND `blocked` = 0 LIMIT 1",
54 if (!DBA::isResult($user)) {
58 $a->data['user'] = $user[0];
59 $a->profile_uid = $user[0]['uid'];
60 $is_owner = (local_user() && (local_user() == $a->profile_uid));
62 $profile = Profile::getByNickname($nick, $a->profile_uid);
64 $account_type = Contact::getAccountType($profile);
66 $tpl = Renderer::getMarkupTemplate("vcard-widget.tpl");
68 $vcard_widget = Renderer::replaceMacros($tpl, [
69 '$name' => $profile['name'],
70 '$photo' => $profile['photo'],
71 '$addr' => defaults($profile, 'addr', ''),
72 '$account_type' => $account_type,
73 '$pdesc' => defaults($profile, 'pdesc', ''),
76 $albums = Photo::getAlbums($a->data['user']['uid']);
78 $albums_visible = ((intval($a->data['user']['hidewall']) && !local_user() && !remote_user()) ? false : true);
80 // add various encodings to the array so we can just loop through and pick them out in a template
81 $ret = ['success' => false];
84 $a->data['albums'] = $albums;
86 if ($albums_visible) {
87 $ret['success'] = true;
91 foreach ($albums as $k => $album) {
92 //hide profile photos to others
93 if (!$is_owner && !remote_user() && ($album['album'] == L10n::t('Profile Photos')))
96 'text' => $album['album'],
97 'total' => $album['total'],
98 'url' => 'photos/' . $a->data['user']['nickname'] . '/album/' . bin2hex($album['album']),
99 'urlencode' => urlencode($album['album']),
100 'bin2hex' => bin2hex($album['album'])
102 $ret['albums'][] = $entry;
106 if (local_user() && $a->data['user']['uid'] == local_user()) {
112 if ($ret['success']) {
113 $photo_albums_widget = Renderer::replaceMacros(Renderer::getMarkupTemplate('photo_albums.tpl'), [
114 '$nick' => $a->data['user']['nickname'],
115 '$title' => L10n::t('Photo Albums'),
116 '$recent' => L10n::t('Recent Photos'),
117 '$albums' => $ret['albums'],
118 '$baseurl' => System::baseUrl(),
119 '$upload' => [L10n::t('Upload New Photos'), 'photos/' . $a->data['user']['nickname'] . '/upload'],
120 '$can_post' => $can_post
124 if (empty($a->page['aside'])) {
125 $a->page['aside'] = '';
128 $a->page['aside'] .= $vcard_widget;
130 if (!empty($photo_albums_widget)) {
131 $a->page['aside'] .= $photo_albums_widget;
134 $tpl = Renderer::getMarkupTemplate("photos_head.tpl");
136 $a->page['htmlhead'] .= Renderer::replaceMacros($tpl,[
137 '$ispublic' => L10n::t('everybody')
144 function photos_post(App $a)
146 Logger::log('mod-photos: photos_post: begin' , Logger::DEBUG);
147 Logger::log('mod_photos: REQUEST ' . print_r($_REQUEST, true), Logger::DATA);
148 Logger::log('mod_photos: FILES ' . print_r($_FILES, true), Logger::DATA);
150 $phototypes = Image::supportedTypes();
155 $page_owner_uid = $a->data['user']['uid'];
156 $community_page = $a->data['user']['page-flags'] == User::PAGE_FLAGS_COMMUNITY;
158 if (local_user() && (local_user() == $page_owner_uid)) {
160 } elseif ($community_page && remote_user()) {
163 if (!empty($_SESSION['remote']) && is_array($_SESSION['remote'])) {
164 foreach ($_SESSION['remote'] as $v) {
165 if ($v['uid'] == $page_owner_uid) {
166 $contact_id = $v['cid'];
172 if ($contact_id > 0) {
173 $r = q("SELECT `uid` FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `id` = %d AND `uid` = %d LIMIT 1",
175 intval($page_owner_uid)
178 if (DBA::isResult($r)) {
180 $visitor = $contact_id;
186 notice(L10n::t('Permission denied.') . EOL);
190 $owner_record = User::getOwnerDataById($page_owner_uid);
192 if (!$owner_record) {
193 notice(L10n::t('Contact information unavailable') . EOL);
194 Logger::log('photos_post: unable to locate contact record for page owner. uid=' . $page_owner_uid);
198 if ($a->argc > 3 && $a->argv[2] === 'album') {
199 $album = hex2bin($a->argv[3]);
201 if ($album === L10n::t('Profile Photos') || $album === 'Contact Photos' || $album === L10n::t('Contact Photos')) {
202 $a->internalRedirect($_SESSION['photo_return']);
203 return; // NOTREACHED
206 $r = q("SELECT `album` FROM `photo` WHERE `album` = '%s' AND `uid` = %d",
208 intval($page_owner_uid)
211 if (!DBA::isResult($r)) {
212 notice(L10n::t('Album not found.') . EOL);
213 $a->internalRedirect($_SESSION['photo_return']);
214 return; // NOTREACHED
217 // Check if the user has responded to a delete confirmation query
218 if (!empty($_REQUEST['canceled'])) {
219 $a->internalRedirect($_SESSION['photo_return']);
222 // RENAME photo album
223 $newalbum = Strings::escapeTags(trim($_POST['albumname']));
224 if ($newalbum != $album) {
225 q("UPDATE `photo` SET `album` = '%s' WHERE `album` = '%s' AND `uid` = %d",
226 DBA::escape($newalbum),
228 intval($page_owner_uid)
230 // Update the photo albums cache
231 Photo::clearAlbumCache($page_owner_uid);
233 $a->internalRedirect('photos/' . $a->user['nickname'] . '/album/' . bin2hex($newalbum));
234 return; // NOTREACHED
238 * DELETE photo album and all its photos
241 if ($_POST['dropalbum'] == L10n::t('Delete Album')) {
242 // Check if we should do HTML-based delete confirmation
243 if (!empty($_REQUEST['confirm'])) {
244 $drop_url = $a->query_string;
247 ['name' => 'albumname', 'value' => $_POST['albumname']],
250 $a->page['content'] = Renderer::replaceMacros(Renderer::getMarkupTemplate('confirm.tpl'), [
252 '$message' => L10n::t('Do you really want to delete this photo album and all its photos?'),
253 '$extra_inputs' => $extra_inputs,
254 '$confirm' => L10n::t('Delete Album'),
255 '$confirm_url' => $drop_url,
256 '$confirm_name' => 'dropalbum', // Needed so that confirmation will bring us back into this if statement
257 '$cancel' => L10n::t('Cancel'),
260 $a->error = 1; // Set $a->error so the other module functions don't execute
266 // get the list of photos we are about to delete
269 $r = q("SELECT distinct(`resource-id`) as `rid` FROM `photo` WHERE `contact-id` = %d AND `uid` = %d AND `album` = '%s'",
271 intval($page_owner_uid),
275 $r = q("SELECT distinct(`resource-id`) as `rid` FROM `photo` WHERE `uid` = %d AND `album` = '%s'",
276 intval(local_user()),
281 if (DBA::isResult($r)) {
282 foreach ($r as $rr) {
286 $a->internalRedirect($_SESSION['photo_return']);
287 return; // NOTREACHED
290 // remove the associated photos
291 Photo::delete(['resource-id' => $res, 'uid' => $page_owner_uid]);
293 // find and delete the corresponding item with all the comments and likes/dislikes
294 Item::deleteForUser(['resource-id' => $res, 'uid' => $page_owner_uid], $page_owner_uid);
296 // Update the photo albums cache
297 Photo::clearAlbumCache($page_owner_uid);
300 $a->internalRedirect('photos/' . $a->data['user']['nickname']);
301 return; // NOTREACHED
305 // Check if the user has responded to a delete confirmation query for a single photo
306 if ($a->argc > 2 && !empty($_REQUEST['canceled'])) {
307 $a->internalRedirect($_SESSION['photo_return']);
310 if ($a->argc > 2 && defaults($_POST, 'delete', '') === L10n::t('Delete Photo')) {
312 // same as above but remove single photo
314 // Check if we should do HTML-based delete confirmation
315 if (!empty($_REQUEST['confirm'])) {
316 $drop_url = $a->query_string;
318 $a->page['content'] = Renderer::replaceMacros(Renderer::getMarkupTemplate('confirm.tpl'), [
320 '$message' => L10n::t('Do you really want to delete this photo?'),
321 '$extra_inputs' => [],
322 '$confirm' => L10n::t('Delete Photo'),
323 '$confirm_url' => $drop_url,
324 '$confirm_name' => 'delete', // Needed so that confirmation will bring us back into this if statement
325 '$cancel' => L10n::t('Cancel'),
328 $a->error = 1; // Set $a->error so the other module functions don't execute
333 $r = q("SELECT `id`, `resource-id` FROM `photo` WHERE `contact-id` = %d AND `uid` = %d AND `resource-id` = '%s' LIMIT 1",
335 intval($page_owner_uid),
336 DBA::escape($a->argv[2])
339 $r = q("SELECT `id`, `resource-id` FROM `photo` WHERE `uid` = %d AND `resource-id` = '%s' LIMIT 1",
340 intval(local_user()),
341 DBA::escape($a->argv[2])
345 if (DBA::isResult($r)) {
346 Photo::delete(['uid' => $page_owner_uid, 'resource-id' => $r[0]['resource-id']]);
348 Item::deleteForUser(['resource-id' => $r[0]['resource-id'], 'uid' => $page_owner_uid], $page_owner_uid);
350 // Update the photo albums cache
351 Photo::clearAlbumCache($page_owner_uid);
354 $a->internalRedirect('photos/' . $a->data['user']['nickname']);
355 return; // NOTREACHED
358 if ($a->argc > 2 && (!empty($_POST['desc']) || !empty($_POST['newtag']) || isset($_POST['albname']))) {
359 $desc = !empty($_POST['desc']) ? Strings::escapeTags(trim($_POST['desc'])) : '';
360 $rawtags = !empty($_POST['newtag']) ? Strings::escapeTags(trim($_POST['newtag'])) : '';
361 $item_id = !empty($_POST['item_id']) ? intval($_POST['item_id']) : 0;
362 $albname = !empty($_POST['albname']) ? Strings::escapeTags(trim($_POST['albname'])) : '';
363 $origaname = !empty($_POST['origaname']) ? Strings::escapeTags(trim($_POST['origaname'])) : '';
365 $str_group_allow = !empty($_POST['group_allow']) ? perms2str($_POST['group_allow']) : '';
366 $str_contact_allow = !empty($_POST['contact_allow']) ? perms2str($_POST['contact_allow']) : '';
367 $str_group_deny = !empty($_POST['group_deny']) ? perms2str($_POST['group_deny']) : '';
368 $str_contact_deny = !empty($_POST['contact_deny']) ? perms2str($_POST['contact_deny']) : '';
370 $resource_id = $a->argv[2];
372 if (!strlen($albname)) {
373 $albname = DateTimeFormat::localNow('Y');
376 if (!empty($_POST['rotate']) && (intval($_POST['rotate']) == 1 || intval($_POST['rotate']) == 2)) {
377 Logger::log('rotate');
379 $photo = Photo::getPhotoForUser($page_owner_uid, $resource_id);
381 if (DBA::isResult($photo)) {
382 $image = Photo::getImageForPhoto($photo);
384 if ($image->isValid()) {
385 $rotate_deg = ((intval($_POST['rotate']) == 1) ? 270 : 90);
386 $image->rotate($rotate_deg);
388 $width = $image->getWidth();
389 $height = $image->getHeight();
391 Photo::update(['height' => $height, 'width' => $width], ['resource-id' => $resource_id, 'uid' => $page_owner_uid, 'scale' => 0], $image);
393 if ($width > 640 || $height > 640) {
394 $image->scaleDown(640);
395 $width = $image->getWidth();
396 $height = $image->getHeight();
398 Photo::update(['height' => $height, 'width' => $width], ['resource-id' => $resource_id, 'uid' => $page_owner_uid, 'scale' => 1], $image);
401 if ($width > 320 || $height > 320) {
402 $image->scaleDown(320);
403 $width = $image->getWidth();
404 $height = $image->getHeight();
406 Photo::update(['height' => $height, 'width' => $width], ['resource-id' => $resource_id, 'uid' => $page_owner_uid, 'scale' => 2], $image);
412 $photos_stmt = DBA::select('photo', [], ['resource-id' => $resource_id, 'uid' => $page_owner_uid], ['order' => ['scale' => true]]);
414 $photos = DBA::toArray($photos_stmt);
416 if (DBA::isResult($photos)) {
418 $ext = $phototypes[$photo['type']];
420 ['desc' => $desc, 'album' => $albname, 'allow_cid' => $str_contact_allow, 'allow_gid' => $str_group_allow, 'deny_cid' => $str_contact_deny, 'deny_gid' => $str_group_deny],
421 ['resource-id' => $resource_id, 'uid' => $page_owner_uid]
424 // Update the photo albums cache if album name was changed
425 if ($albname !== $origaname) {
426 Photo::clearAlbumCache($page_owner_uid);
428 /* Don't make the item visible if the only change was the album name */
431 if ($photo['desc'] !== $desc || strlen($rawtags)) {
436 if (DBA::isResult($photos) && !$item_id) {
437 // Create item container
439 $uri = Item::newURI($page_owner_uid);
442 $arr['guid'] = System::createUUID();
443 $arr['uid'] = $page_owner_uid;
445 $arr['parent-uri'] = $uri;
446 $arr['post-type'] = Item::PT_IMAGE;
448 $arr['resource-id'] = $photo['resource-id'];
449 $arr['contact-id'] = $owner_record['id'];
450 $arr['owner-name'] = $owner_record['name'];
451 $arr['owner-link'] = $owner_record['url'];
452 $arr['owner-avatar'] = $owner_record['thumb'];
453 $arr['author-name'] = $owner_record['name'];
454 $arr['author-link'] = $owner_record['url'];
455 $arr['author-avatar'] = $owner_record['thumb'];
456 $arr['title'] = $title;
457 $arr['allow_cid'] = $photo['allow_cid'];
458 $arr['allow_gid'] = $photo['allow_gid'];
459 $arr['deny_cid'] = $photo['deny_cid'];
460 $arr['deny_gid'] = $photo['deny_gid'];
461 $arr['visible'] = $visibility;
464 $arr['body'] = '[url=' . System::baseUrl() . '/photos/' . $a->data['user']['nickname'] . '/image/' . $photo['resource-id'] . ']'
465 . '[img]' . System::baseUrl() . '/photo/' . $photo['resource-id'] . '-' . $photo['scale'] . '.'. $ext . '[/img]'
468 $item_id = Item::insert($arr);
472 $item = Item::selectFirst(['tag', 'inform'], ['id' => $item_id, 'uid' => $page_owner_uid]);
474 if (DBA::isResult($item)) {
475 $old_tag = $item['tag'];
476 $old_inform = $item['inform'];
479 if (strlen($rawtags)) {
483 // if the new tag doesn't have a namespace specifier (@foo or #foo) give it a hashtag
484 $x = substr($rawtags, 0, 1);
485 if ($x !== '@' && $x !== '#') {
486 $rawtags = '#' . $rawtags;
490 $tags = BBCode::getTags($rawtags);
493 foreach ($tags as $tag) {
494 if (strpos($tag, '@') === 0) {
496 $name = substr($tag,1);
498 if ((strpos($name, '@')) || (strpos($name, 'http://'))) {
500 $links = @Probe::lrdd($name);
503 foreach ($links as $link) {
504 if ($link['@attributes']['rel'] === 'http://webfinger.net/rel/profile-page') {
505 $profile = $link['@attributes']['href'];
508 if ($link['@attributes']['rel'] === 'salmon') {
509 $salmon = '$url:' . str_replace(',', '%sc', $link['@attributes']['href']);
511 if (strlen($inform)) {
520 $taginfo[] = [$newname, $profile, $salmon];
525 if (strrpos($newname, '+')) {
526 $tagcid = intval(substr($newname, strrpos($newname, '+') + 1));
530 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
532 intval($page_owner_uid)
535 $newname = str_replace('_',' ',$name);
537 //select someone from this user's contacts by name
538 $r = q("SELECT * FROM `contact` WHERE `name` = '%s' AND `uid` = %d LIMIT 1",
539 DBA::escape($newname),
540 intval($page_owner_uid)
543 if (!DBA::isResult($r)) {
544 //select someone by attag or nick and the name passed in
545 $r = q("SELECT * FROM `contact` WHERE `attag` = '%s' OR `nick` = '%s' AND `uid` = %d ORDER BY `attag` DESC LIMIT 1",
548 intval($page_owner_uid)
553 if (DBA::isResult($r)) {
554 $newname = $r[0]['name'];
555 $profile = $r[0]['url'];
557 $notify = 'cid:' . $r[0]['id'];
558 if (strlen($inform)) {
566 if (substr($notify, 0, 4) === 'cid:') {
567 $taginfo[] = [$newname, $profile, $notify, $r[0], '@[url=' . str_replace(',','%2c',$profile) . ']' . $newname . '[/url]'];
569 $taginfo[] = [$newname, $profile, $notify, null, $str_tags .= '@[url=' . $profile . ']' . $newname . '[/url]'];
572 if (strlen($str_tags)) {
576 $profile = str_replace(',', '%2c', $profile);
577 $str_tags .= '@[url=' . $profile . ']' . $newname . '[/url]';
579 } elseif (strpos($tag, '#') === 0) {
580 $tagname = substr($tag, 1);
581 $str_tags .= '#[url=' . System::baseUrl() . "/search?tag=" . $tagname . ']' . $tagname . '[/url],';
587 if (strlen($newtag) && strlen($str_tags)) {
590 $newtag .= $str_tags;
592 $newinform = $old_inform;
593 if (strlen($newinform) && strlen($inform)) {
596 $newinform .= $inform;
598 $fields = ['tag' => $newtag, 'inform' => $newinform, 'edited' => DateTimeFormat::utcNow(), 'changed' => DateTimeFormat::utcNow()];
599 $condition = ['id' => $item_id];
600 Item::update($fields, $condition);
603 foreach ($photos as $scales) {
604 if (intval($scales['scale']) == 2) {
609 if (intval($scales['scale']) == 4) {
615 if (count($taginfo)) {
616 foreach ($taginfo as $tagged) {
617 $uri = Item::newURI($page_owner_uid);
620 $arr['guid'] = System::createUUID();
621 $arr['uid'] = $page_owner_uid;
623 $arr['parent-uri'] = $uri;
625 $arr['contact-id'] = $owner_record['id'];
626 $arr['owner-name'] = $owner_record['name'];
627 $arr['owner-link'] = $owner_record['url'];
628 $arr['owner-avatar'] = $owner_record['thumb'];
629 $arr['author-name'] = $owner_record['name'];
630 $arr['author-link'] = $owner_record['url'];
631 $arr['author-avatar'] = $owner_record['thumb'];
633 $arr['allow_cid'] = $photo['allow_cid'];
634 $arr['allow_gid'] = $photo['allow_gid'];
635 $arr['deny_cid'] = $photo['deny_cid'];
636 $arr['deny_gid'] = $photo['deny_gid'];
638 $arr['verb'] = ACTIVITY_TAG;
639 $arr['gravity'] = GRAVITY_PARENT;
640 $arr['object-type'] = ACTIVITY_OBJ_PERSON;
641 $arr['target-type'] = ACTIVITY_OBJ_IMAGE;
642 $arr['tag'] = $tagged[4];
643 $arr['inform'] = $tagged[2];
645 $arr['body'] = L10n::t('%1$s was tagged in %2$s by %3$s', '[url=' . $tagged[1] . ']' . $tagged[0] . '[/url]', '[url=' . System::baseUrl() . '/photos/' . $owner_record['nickname'] . '/image/' . $photo['resource-id'] . ']' . L10n::t('a photo') . '[/url]', '[url=' . $owner_record['url'] . ']' . $owner_record['name'] . '[/url]') ;
646 $arr['body'] .= "\n\n" . '[url=' . System::baseUrl() . '/photos/' . $owner_record['nickname'] . '/image/' . $photo['resource-id'] . ']' . '[img]' . System::baseUrl() . "/photo/" . $photo['resource-id'] . '-' . $best . '.' . $ext . '[/img][/url]' . "\n" ;
648 $arr['object'] = '<object><type>' . ACTIVITY_OBJ_PERSON . '</type><title>' . $tagged[0] . '</title><id>' . $tagged[1] . '/' . $tagged[0] . '</id>';
649 $arr['object'] .= '<link>' . XML::escape('<link rel="alternate" type="text/html" href="' . $tagged[1] . '" />' . "\n");
651 $arr['object'] .= XML::escape('<link rel="photo" type="' . $photo['type'] . '" href="' . $tagged[3]['photo'] . '" />' . "\n");
653 $arr['object'] .= '</link></object>' . "\n";
655 $arr['target'] = '<target><type>' . ACTIVITY_OBJ_IMAGE . '</type><title>' . $photo['desc'] . '</title><id>'
656 . System::baseUrl() . '/photos/' . $owner_record['nickname'] . '/image/' . $photo['resource-id'] . '</id>';
657 $arr['target'] .= '<link>' . XML::escape('<link rel="alternate" type="text/html" href="' . System::baseUrl() . '/photos/' . $owner_record['nickname'] . '/image/' . $photo['resource-id'] . '" />' . "\n" . '<link rel="preview" type="' . $photo['type'] . '" href="' . System::baseUrl() . "/photo/" . $photo['resource-id'] . '-' . $best . '.' . $ext . '" />') . '</link></target>';
663 $a->internalRedirect($_SESSION['photo_return']);
664 return; // NOTREACHED
668 // default post action - upload a photo
669 Hook::callAll('photo_post_init', $_POST);
671 // Determine the album to use
672 $album = !empty($_REQUEST['album']) ? Strings::escapeTags(trim($_REQUEST['album'])) : '';
673 $newalbum = !empty($_REQUEST['newalbum']) ? Strings::escapeTags(trim($_REQUEST['newalbum'])) : '';
675 Logger::log('mod/photos.php: photos_post(): album= ' . $album . ' newalbum= ' . $newalbum , Logger::DEBUG);
677 if (!strlen($album)) {
678 if (strlen($newalbum)) {
681 $album = DateTimeFormat::localNow('Y');
686 * We create a wall item for every photo, but we don't want to
687 * overwhelm the data stream with a hundred newly uploaded photos.
688 * So we will make the first photo uploaded to this album in the last several hours
689 * visible by default, the rest will become visible over time when and if
690 * they acquire comments, likes, dislikes, and/or tags
693 $r = Photo::select([], ['`album` = ? AND `uid` = ? AND `created` > UTC_TIMESTAMP() - INTERVAL 3 HOUR', $album, $page_owner_uid]);
695 if (!DBA::isResult($r) || ($album == L10n::t('Profile Photos'))) {
701 if (!empty($_REQUEST['not_visible']) && $_REQUEST['not_visible'] !== 'false') {
705 $group_allow = defaults($_REQUEST, 'group_allow' , []);
706 $contact_allow = defaults($_REQUEST, 'contact_allow', []);
707 $group_deny = defaults($_REQUEST, 'group_deny' , []);
708 $contact_deny = defaults($_REQUEST, 'contact_deny' , []);
710 $str_group_allow = perms2str(is_array($group_allow) ? $group_allow : explode(',', $group_allow));
711 $str_contact_allow = perms2str(is_array($contact_allow) ? $contact_allow : explode(',', $contact_allow));
712 $str_group_deny = perms2str(is_array($group_deny) ? $group_deny : explode(',', $group_deny));
713 $str_contact_deny = perms2str(is_array($contact_deny) ? $contact_deny : explode(',', $contact_deny));
715 $ret = ['src' => '', 'filename' => '', 'filesize' => 0, 'type' => ''];
717 Hook::callAll('photo_post_file', $ret);
719 if (!empty($ret['src']) && !empty($ret['filesize'])) {
721 $filename = $ret['filename'];
722 $filesize = $ret['filesize'];
723 $type = $ret['type'];
724 $error = UPLOAD_ERR_OK;
725 } elseif (!empty($_FILES['userfile'])) {
726 $src = $_FILES['userfile']['tmp_name'];
727 $filename = basename($_FILES['userfile']['name']);
728 $filesize = intval($_FILES['userfile']['size']);
729 $type = $_FILES['userfile']['type'];
730 $error = $_FILES['userfile']['error'];
732 $error = UPLOAD_ERR_NO_FILE;
735 if ($error !== UPLOAD_ERR_OK) {
737 case UPLOAD_ERR_INI_SIZE:
738 notice(L10n::t('Image exceeds size limit of %s', ini_get('upload_max_filesize')) . EOL);
740 case UPLOAD_ERR_FORM_SIZE:
741 notice(L10n::t('Image exceeds size limit of %s', Strings::formatBytes(defaults($_REQUEST, 'MAX_FILE_SIZE', 0))) . EOL);
743 case UPLOAD_ERR_PARTIAL:
744 notice(L10n::t('Image upload didn\'t complete, please try again') . EOL);
746 case UPLOAD_ERR_NO_FILE:
747 notice(L10n::t('Image file is missing') . EOL);
749 case UPLOAD_ERR_NO_TMP_DIR:
750 case UPLOAD_ERR_CANT_WRITE:
751 case UPLOAD_ERR_EXTENSION:
752 notice(L10n::t('Server can\'t accept new file upload at this time, please contact your administrator') . EOL);
757 Hook::callAll('photo_post_end', $foo);
762 $type = Image::guessType($filename);
765 Logger::log('photos: upload: received file: ' . $filename . ' as ' . $src . ' ('. $type . ') ' . $filesize . ' bytes', Logger::DEBUG);
767 $maximagesize = Config::get('system', 'maximagesize');
769 if ($maximagesize && ($filesize > $maximagesize)) {
770 notice(L10n::t('Image exceeds size limit of %s', Strings::formatBytes($maximagesize)) . EOL);
773 Hook::callAll('photo_post_end', $foo);
778 notice(L10n::t('Image file is empty.') . EOL);
781 Hook::callAll('photo_post_end', $foo);
785 Logger::log('mod/photos.php: photos_post(): loading the contents of ' . $src , Logger::DEBUG);
787 $imagedata = @file_get_contents($src);
789 $image = new Image($imagedata, $type);
791 if (!$image->isValid()) {
792 Logger::log('mod/photos.php: photos_post(): unable to process image' , Logger::DEBUG);
793 notice(L10n::t('Unable to process image.') . EOL);
796 Hook::callAll('photo_post_end',$foo);
800 $exif = $image->orient($src);
803 $max_length = Config::get('system', 'max_image_length');
805 $max_length = MAX_IMAGE_LENGTH;
807 if ($max_length > 0) {
808 $image->scaleDown($max_length);
811 $width = $image->getWidth();
812 $height = $image->getHeight();
816 $photo_hash = Photo::newResource();
818 $r = Photo::store($image, $page_owner_uid, $visitor, $photo_hash, $filename, $album, 0 , 0, $str_contact_allow, $str_group_allow, $str_contact_deny, $str_group_deny);
821 Logger::log('mod/photos.php: photos_post(): image store failed', Logger::DEBUG);
822 notice(L10n::t('Image upload failed.') . EOL);
826 if ($width > 640 || $height > 640) {
827 $image->scaleDown(640);
828 Photo::store($image, $page_owner_uid, $visitor, $photo_hash, $filename, $album, 1, 0, $str_contact_allow, $str_group_allow, $str_contact_deny, $str_group_deny);
832 if ($width > 320 || $height > 320) {
833 $image->scaleDown(320);
834 Photo::store($image, $page_owner_uid, $visitor, $photo_hash, $filename, $album, 2, 0, $str_contact_allow, $str_group_allow, $str_contact_deny, $str_group_deny);
838 $uri = Item::newURI($page_owner_uid);
840 // Create item container
842 if ($exif && $exif['GPS'] && Feature::isEnabled($page_owner_uid, 'photo_location')) {
843 $lat = Photo::getGps($exif['GPS']['GPSLatitude'], $exif['GPS']['GPSLatitudeRef']);
844 $lon = Photo::getGps($exif['GPS']['GPSLongitude'], $exif['GPS']['GPSLongitudeRef']);
849 $arr['coord'] = $lat . ' ' . $lon;
852 $arr['guid'] = System::createUUID();
853 $arr['uid'] = $page_owner_uid;
855 $arr['parent-uri'] = $uri;
856 $arr['type'] = 'photo';
858 $arr['resource-id'] = $photo_hash;
859 $arr['contact-id'] = $owner_record['id'];
860 $arr['owner-name'] = $owner_record['name'];
861 $arr['owner-link'] = $owner_record['url'];
862 $arr['owner-avatar'] = $owner_record['thumb'];
863 $arr['author-name'] = $owner_record['name'];
864 $arr['author-link'] = $owner_record['url'];
865 $arr['author-avatar'] = $owner_record['thumb'];
867 $arr['allow_cid'] = $str_contact_allow;
868 $arr['allow_gid'] = $str_group_allow;
869 $arr['deny_cid'] = $str_contact_deny;
870 $arr['deny_gid'] = $str_group_deny;
871 $arr['visible'] = $visible;
874 $arr['body'] = '[url=' . System::baseUrl() . '/photos/' . $owner_record['nickname'] . '/image/' . $photo_hash . ']'
875 . '[img]' . System::baseUrl() . "/photo/{$photo_hash}-{$smallest}.".$image->getExt() . '[/img]'
878 $item_id = Item::insert($arr);
879 // Update the photo albums cache
880 Photo::clearAlbumCache($page_owner_uid);
882 Hook::callAll('photo_post_end', $item_id);
884 // addon uploaders should call "killme()" [e.g. exit] within the photo_post_end hook
885 // if they do not wish to be redirected
887 $a->internalRedirect($_SESSION['photo_return']);
891 function photos_content(App $a)
895 // photos/name/upload
896 // photos/name/upload/xxxxx (xxxxx is album name)
897 // photos/name/album/xxxxx
898 // photos/name/album/xxxxx/edit
899 // photos/name/image/xxxxx
900 // photos/name/image/xxxxx/edit
902 if (Config::get('system', 'block_public') && !local_user() && !remote_user()) {
903 notice(L10n::t('Public access denied.') . EOL);
907 if (empty($a->data['user'])) {
908 notice(L10n::t('No photos selected') . EOL);
912 $phototypes = Image::supportedTypes();
914 $_SESSION['photo_return'] = $a->cmd;
919 $datatype = $a->argv[2];
920 $datum = $a->argv[3];
921 } elseif (($a->argc > 2) && ($a->argv[2] === 'upload')) {
922 $datatype = 'upload';
924 $datatype = 'summary';
933 // Setup permissions structures
937 $remote_contact = false;
941 $owner_uid = $a->data['user']['uid'];
943 $community_page = (($a->data['user']['page-flags'] == User::PAGE_FLAGS_COMMUNITY) ? true : false);
945 if (local_user() && (local_user() == $owner_uid)) {
948 if ($community_page && remote_user()) {
949 if (is_array($_SESSION['remote'])) {
950 foreach ($_SESSION['remote'] as $v) {
951 if ($v['uid'] == $owner_uid) {
952 $contact_id = $v['cid'];
959 $r = q("SELECT `uid` FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `id` = %d AND `uid` = %d LIMIT 1",
963 if (DBA::isResult($r)) {
966 $remote_contact = true;
967 $visitor = $contact_id;
975 // perhaps they're visiting - but not a community page, so they wouldn't have write access
976 if (remote_user() && !$visitor) {
978 if (is_array($_SESSION['remote'])) {
979 foreach ($_SESSION['remote'] as $v) {
980 if ($v['uid'] == $owner_uid) {
981 $contact_id = $v['cid'];
987 $groups = Group::getIdsByContactId($contact_id);
988 $r = q("SELECT * FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `id` = %d AND `uid` = %d LIMIT 1",
992 if (DBA::isResult($r)) {
994 $remote_contact = true;
999 if (!$remote_contact && local_user()) {
1000 $contact_id = $_SESSION['cid'];
1001 $contact = $a->contact;
1004 if ($a->data['user']['hidewall'] && (local_user() != $owner_uid) && !$remote_contact) {
1005 notice(L10n::t('Access to this item is restricted.') . EOL);
1009 $sql_extra = Security::getPermissionsSQLByUserId($owner_uid, $remote_contact, $groups);
1014 $is_owner = (local_user() && (local_user() == $owner_uid));
1015 $o .= Profile::getTabs($a, $is_owner, $a->data['user']['nickname']);
1017 // Display upload form
1018 if ($datatype === 'upload') {
1020 notice(L10n::t('Permission denied.'));
1024 $selname = $datum ? hex2bin($datum) : '';
1028 $albumselect .= '<option value="" ' . (!$selname ? ' selected="selected" ' : '') . '><current year></option>';
1029 if (!empty($a->data['albums'])) {
1030 foreach ($a->data['albums'] as $album) {
1031 if (($album['album'] === '') || ($album['album'] === 'Contact Photos') || ($album['album'] === L10n::t('Contact Photos'))) {
1034 $selected = (($selname === $album['album']) ? ' selected="selected" ' : '');
1035 $albumselect .= '<option value="' . $album['album'] . '"' . $selected . '>' . $album['album'] . '</option>';
1041 $ret = ['post_url' => 'photos/' . $a->data['user']['nickname'],
1042 'addon_text' => $uploader,
1043 'default_upload' => true];
1045 Hook::callAll('photo_upload_form',$ret);
1047 $default_upload_box = Renderer::replaceMacros(Renderer::getMarkupTemplate('photos_default_uploader_box.tpl'), []);
1048 $default_upload_submit = Renderer::replaceMacros(Renderer::getMarkupTemplate('photos_default_uploader_submit.tpl'), [
1049 '$submit' => L10n::t('Submit'),
1052 $usage_message = '';
1054 $tpl = Renderer::getMarkupTemplate('photos_upload.tpl');
1056 $aclselect_e = ($visitor ? '' : ACL::getFullSelectorHTML($a->user));
1058 $o .= Renderer::replaceMacros($tpl,[
1059 '$pagename' => L10n::t('Upload Photos'),
1060 '$sessid' => session_id(),
1061 '$usage' => $usage_message,
1062 '$nickname' => $a->data['user']['nickname'],
1063 '$newalbum' => L10n::t('New album name: '),
1064 '$existalbumtext' => L10n::t('or select existing album:'),
1065 '$nosharetext' => L10n::t('Do not show a status post for this upload'),
1066 '$albumselect' => $albumselect,
1067 '$permissions' => L10n::t('Permissions'),
1068 '$aclselect' => $aclselect_e,
1069 '$lockstate' => is_array($a->user)
1070 && (strlen($a->user['allow_cid'])
1071 || strlen($a->user['allow_gid'])
1072 || strlen($a->user['deny_cid'])
1073 || strlen($a->user['deny_gid'])
1074 ) ? 'lock' : 'unlock',
1075 '$alt_uploader' => $ret['addon_text'],
1076 '$default_upload_box' => ($ret['default_upload'] ? $default_upload_box : ''),
1077 '$default_upload_submit' => ($ret['default_upload'] ? $default_upload_submit : ''),
1078 '$uploadurl' => $ret['post_url'],
1080 // ACL permissions box
1081 '$group_perms' => L10n::t('Show to Groups'),
1082 '$contact_perms' => L10n::t('Show to Contacts'),
1083 '$return_path' => $a->query_string,
1089 // Display a single photo album
1090 if ($datatype === 'album') {
1091 $album = hex2bin($datum);
1094 $r = q("SELECT `resource-id`, max(`scale`) AS `scale` FROM `photo` WHERE `uid` = %d AND `album` = '%s'
1095 AND `scale` <= 4 $sql_extra GROUP BY `resource-id`",
1099 if (DBA::isResult($r)) {
1103 $pager = new Pager($a->query_string, 20);
1105 /// @TODO I have seen this many times, maybe generalize it script-wide and encapsulate it?
1106 $order_field = defaults($_GET, 'order', '');
1107 if ($order_field === 'posted') {
1113 $r = q("SELECT `resource-id`, ANY_VALUE(`id`) AS `id`, ANY_VALUE(`filename`) AS `filename`,
1114 ANY_VALUE(`type`) AS `type`, max(`scale`) AS `scale`, ANY_VALUE(`desc`) as `desc`,
1115 ANY_VALUE(`created`) as `created`
1116 FROM `photo` WHERE `uid` = %d AND `album` = '%s'
1117 AND `scale` <= 4 $sql_extra GROUP BY `resource-id` ORDER BY `created` $order LIMIT %d , %d",
1119 DBA::escape($album),
1121 $pager->getItemsPerPage()
1125 if ($cmd === 'edit') {
1126 if (($album !== L10n::t('Profile Photos')) && ($album !== 'Contact Photos') && ($album !== L10n::t('Contact Photos'))) {
1128 $edit_tpl = Renderer::getMarkupTemplate('album_edit.tpl');
1132 $o .= Renderer::replaceMacros($edit_tpl,[
1133 '$nametext' => L10n::t('New album name: '),
1134 '$nickname' => $a->data['user']['nickname'],
1135 '$album' => $album_e,
1136 '$hexalbum' => bin2hex($album),
1137 '$submit' => L10n::t('Submit'),
1138 '$dropsubmit' => L10n::t('Delete Album')
1143 if (($album !== L10n::t('Profile Photos')) && ($album !== 'Contact Photos') && ($album !== L10n::t('Contact Photos')) && $can_post) {
1144 $edit = [L10n::t('Edit Album'), 'photos/' . $a->data['user']['nickname'] . '/album/' . bin2hex($album) . '/edit'];
1148 if ($order_field === 'posted') {
1149 $order = [L10n::t('Show Newest First'), 'photos/' . $a->data['user']['nickname'] . '/album/' . bin2hex($album), 'oldest'];
1151 $order = [L10n::t('Show Oldest First'), 'photos/' . $a->data['user']['nickname'] . '/album/' . bin2hex($album) . '?f=&order=posted', 'newest'];
1156 if (DBA::isResult($r)) {
1157 // "Twist" is only used for the duepunto theme with style "slackr"
1159 foreach ($r as $rr) {
1162 $ext = $phototypes[$rr['type']];
1164 $imgalt_e = $rr['filename'];
1165 $desc_e = $rr['desc'];
1169 'twist' => ' ' . ($twist ? 'rotleft' : 'rotright') . rand(2,4),
1170 'link' => 'photos/' . $a->data['user']['nickname'] . '/image/' . $rr['resource-id']
1171 . ($order_field === 'posted' ? '?f=&order=posted' : ''),
1172 'title' => L10n::t('View Photo'),
1173 'src' => 'photo/' . $rr['resource-id'] . '-' . $rr['scale'] . '.' .$ext,
1177 'hash'=> $rr['resource-id'],
1182 $tpl = Renderer::getMarkupTemplate('photo_album.tpl');
1183 $o .= Renderer::replaceMacros($tpl, [
1184 '$photos' => $photos,
1186 '$can_post' => $can_post,
1187 '$upload' => [L10n::t('Upload New Photos'), 'photos/' . $a->data['user']['nickname'] . '/upload/' . bin2hex($album)],
1190 '$paginate' => $pager->renderFull($total),
1197 // Display one photo
1198 if ($datatype === 'image') {
1199 // fetch image, item containing image, then comments
1200 $ph = q("SELECT * FROM `photo` WHERE `uid` = %d AND `resource-id` = '%s'
1201 $sql_extra ORDER BY `scale` ASC ",
1206 if (!DBA::isResult($ph)) {
1207 $ph = q("SELECT `id` FROM `photo` WHERE `uid` = %d AND `resource-id` = '%s'
1212 if (DBA::isResult($ph)) {
1213 notice(L10n::t('Permission denied. Access to this item may be restricted.'));
1215 notice(L10n::t('Photo not available') . EOL);
1224 * @todo This query is totally bad, the whole functionality has to be changed
1225 * The query leads to a really intense used index.
1226 * By now we hide it if someone wants to.
1228 if (!Config::get('system', 'no_count', false)) {
1229 $order_field = defaults($_GET, 'order', '');
1231 if ($order_field === 'posted') {
1237 $prvnxt = q("SELECT `resource-id` FROM `photo` WHERE `album` = '%s' AND `uid` = %d AND `scale` = 0
1238 $sql_extra ORDER BY `created` $order ",
1239 DBA::escape($ph[0]['album']),
1243 if (DBA::isResult($prvnxt)) {
1246 foreach ($prvnxt as $z => $entry) {
1247 if ($entry['resource-id'] == $ph[0]['resource-id']) {
1251 $prv = count($prvnxt) - 1;
1253 if ($nxt >= count($prvnxt)) {
1259 $edit_suffix = ((($cmd === 'edit') && $can_post) ? '/edit' : '');
1260 if (!is_null($prv)) {
1261 $prevlink = 'photos/' . $a->data['user']['nickname'] . '/image/' . $prvnxt[$prv]['resource-id'] . $edit_suffix . ($order_field === 'posted' ? '?f=&order=posted' : '');
1263 if (!is_null($nxt)) {
1264 $nextlink = 'photos/' . $a->data['user']['nickname'] . '/image/' . $prvnxt[$nxt]['resource-id'] . $edit_suffix . ($order_field === 'posted' ? '?f=&order=posted' : '');
1269 if (count($ph) == 1) {
1270 $hires = $lores = $ph[0];
1273 if (count($ph) > 1) {
1274 if ($ph[1]['scale'] == 2) {
1275 // original is 640 or less, we can display it directly
1276 $hires = $lores = $ph[0];
1283 $album_link = 'photos/' . $a->data['user']['nickname'] . '/album/' . bin2hex($ph[0]['album']);
1288 if ($can_post && ($ph[0]['uid'] == $owner_uid)) {
1290 'edit' => ['photos/' . $a->data['user']['nickname'] . '/image/' . $datum . (($cmd === 'edit') ? '' : '/edit'), (($cmd === 'edit') ? L10n::t('View photo') : L10n::t('Edit photo'))],
1291 'profile'=>['profile_photo/use/'.$ph[0]['resource-id'], L10n::t('Use as profile photo')],
1295 $lock = ((($ph[0]['uid'] == local_user()) && (strlen($ph[0]['allow_cid']) || strlen($ph[0]['allow_gid'])
1296 || strlen($ph[0]['deny_cid']) || strlen($ph[0]['deny_gid'])))
1297 ? L10n::t('Private Message')
1303 if ($cmd === 'edit') {
1304 $tpl = Renderer::getMarkupTemplate('photo_edit_head.tpl');
1305 $a->page['htmlhead'] .= Renderer::replaceMacros($tpl,[
1306 '$prevlink' => $prevlink,
1307 '$nextlink' => $nextlink
1312 $prevlink = [$prevlink, '<div class="icon prev"></div>'];
1316 'href' => 'photo/' . $hires['resource-id'] . '-' . $hires['scale'] . '.' . $phototypes[$hires['type']],
1317 'title'=> L10n::t('View Full Size'),
1318 'src' => 'photo/' . $lores['resource-id'] . '-' . $lores['scale'] . '.' . $phototypes[$lores['type']] . '?f=&_u=' . DateTimeFormat::utcNow('ymdhis'),
1319 'height' => $hires['height'],
1320 'width' => $hires['width'],
1321 'album' => $hires['album'],
1322 'filename' => $hires['filename'],
1326 $nextlink = [$nextlink, '<div class="icon next"></div>'];
1330 // Do we have an item for this photo?
1332 // FIXME! - replace following code to display the conversation with our normal
1333 // conversation functions so that it works correctly and tracks changes
1334 // in the evolving conversation code.
1335 // The difference is that we won't be displaying the conversation head item
1336 // as a "post" but displaying instead the photo it is linked to
1338 /// @todo Rewrite this query. To do so, $sql_extra must be changed
1339 $linked_items = q("SELECT `id` FROM `item` WHERE `resource-id` = '%s' $sql_extra LIMIT 1",
1347 if (DBA::isResult($linked_items)) {
1348 // This is a workaround to not being forced to rewrite the while $sql_extra handling
1349 $link_item = Item::selectFirst([], ['id' => $linked_items[0]['id']]);
1351 $condition = ["`parent` = ? AND `parent` != `id`", $link_item['parent']];
1352 $total = DBA::count('item', $condition);
1354 $pager = new Pager($a->query_string);
1356 $params = ['order' => ['id'], 'limit' => [$pager->getStart(), $pager->getItemsPerPage()]];
1357 $result = Item::selectForUser($link_item['uid'], Item::ITEM_FIELDLIST, $condition, $params);
1358 $items = Item::inArray($result);
1360 if (local_user() && (local_user() == $link_item['uid'])) {
1361 Item::update(['unseen' => false], ['parent' => $link_item['parent']]);
1364 if ($link_item['coord']) {
1365 $map = Map::byCoordinates($link_item['coord']);
1371 if (count($linked_items) && strlen($link_item['tag'])) {
1372 $arr = explode(',', $link_item['tag']);
1373 // parse tags and add links
1375 foreach ($arr as $tag) {
1377 'name' => BBCode::convert($tag),
1378 'removeurl' => '/tagrm/'.$link_item['id'] . '/' . bin2hex($tag)
1381 $tags = ['title' => L10n::t('Tags: '), 'tags' => $tag_arr];
1382 if ($cmd === 'edit') {
1383 $tags['removeanyurl'] = 'tagrm/' . $link_item['id'];
1384 $tags['removetitle'] = L10n::t('[Select tags to remove]');
1390 if ($cmd === 'edit' && $can_post) {
1391 $edit_tpl = Renderer::getMarkupTemplate('photo_edit.tpl');
1393 $album_e = $ph[0]['album'];
1394 $caption_e = $ph[0]['desc'];
1395 $aclselect_e = ACL::getFullSelectorHTML($a->user, false, $ph[0]);
1397 $edit = Renderer::replaceMacros($edit_tpl, [
1398 '$id' => $ph[0]['id'],
1399 '$album' => ['albname', L10n::t('New album name'), $album_e,''],
1400 '$caption' => ['desc', L10n::t('Caption'), $caption_e, ''],
1401 '$tags' => ['newtag', L10n::t('Add a Tag'), "", L10n::t('Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping')],
1402 '$rotate_none' => ['rotate', L10n::t('Do not rotate'),0,'', true],
1403 '$rotate_cw' => ['rotate', L10n::t("Rotate CW \x28right\x29"),1,''],
1404 '$rotate_ccw' => ['rotate', L10n::t("Rotate CCW \x28left\x29"),2,''],
1406 '$nickname' => $a->data['user']['nickname'],
1407 '$resource_id' => $ph[0]['resource-id'],
1408 '$permissions' => L10n::t('Permissions'),
1409 '$aclselect' => $aclselect_e,
1411 '$item_id' => defaults($link_item, 'id', 0),
1412 '$submit' => L10n::t('Submit'),
1413 '$delete' => L10n::t('Delete Photo'),
1415 // ACL permissions box
1416 '$group_perms' => L10n::t('Show to Groups'),
1417 '$contact_perms' => L10n::t('Show to Contacts'),
1418 '$return_path' => $a->query_string,
1429 if (count($linked_items)) {
1430 $cmnt_tpl = Renderer::getMarkupTemplate('comment_item.tpl');
1431 $tpl = Renderer::getMarkupTemplate('photo_item.tpl');
1432 $return_path = $a->cmd;
1434 if ($can_post || Security::canWriteToUserWall($owner_uid)) {
1435 $like_tpl = Renderer::getMarkupTemplate('like_noshare.tpl');
1436 $likebuttons = Renderer::replaceMacros($like_tpl, [
1437 '$id' => $link_item['id'],
1438 '$likethis' => L10n::t("I like this \x28toggle\x29"),
1439 '$nolike' => L10n::t("I don't like this \x28toggle\x29"),
1440 '$wait' => L10n::t('Please wait'),
1441 '$return_path' => $a->query_string,
1445 if (!DBA::isResult($items)) {
1446 if (($can_post || Security::canWriteToUserWall($owner_uid))) {
1447 $comments .= Renderer::replaceMacros($cmnt_tpl, [
1448 '$return_path' => '',
1449 '$jsreload' => $return_path,
1450 '$id' => $link_item['id'],
1451 '$parent' => $link_item['id'],
1452 '$profile_uid' => $owner_uid,
1453 '$mylink' => $contact['url'],
1454 '$mytitle' => L10n::t('This is you'),
1455 '$myphoto' => $contact['thumb'],
1456 '$comment' => L10n::t('Comment'),
1457 '$submit' => L10n::t('Submit'),
1458 '$preview' => L10n::t('Preview'),
1459 '$sourceapp' => L10n::t($a->sourcename),
1461 '$rand_num' => Crypto::randomDigits(12)
1467 'like' => ['title' => L10n::t('Likes','title')],'dislike' => ['title' => L10n::t('Dislikes','title')],
1468 'attendyes' => ['title' => L10n::t('Attending','title')], 'attendno' => ['title' => L10n::t('Not attending','title')], 'attendmaybe' => ['title' => L10n::t('Might attend','title')]
1472 if (DBA::isResult($items)) {
1473 foreach ($items as $item) {
1474 builtin_activity_puller($item, $conv_responses);
1477 if (!empty($conv_responses['like'][$link_item['uri']])) {
1478 $like = format_like($conv_responses['like'][$link_item['uri']], $conv_responses['like'][$link_item['uri'] . '-l'], 'like', $link_item['id']);
1481 if (!empty($conv_responses['dislike'][$link_item['uri']])) {
1482 $dislike = format_like($conv_responses['dislike'][$link_item['uri']], $conv_responses['dislike'][$link_item['uri'] . '-l'], 'dislike', $link_item['id']);
1485 if (($can_post || Security::canWriteToUserWall($owner_uid))) {
1486 $comments .= Renderer::replaceMacros($cmnt_tpl,[
1487 '$return_path' => '',
1488 '$jsreload' => $return_path,
1489 '$id' => $link_item['id'],
1490 '$parent' => $link_item['id'],
1491 '$profile_uid' => $owner_uid,
1492 '$mylink' => $contact['url'],
1493 '$mytitle' => L10n::t('This is you'),
1494 '$myphoto' => $contact['thumb'],
1495 '$comment' => L10n::t('Comment'),
1496 '$submit' => L10n::t('Submit'),
1497 '$preview' => L10n::t('Preview'),
1498 '$sourceapp' => L10n::t($a->sourcename),
1500 '$rand_num' => Crypto::randomDigits(12)
1504 foreach ($items as $item) {
1509 if ((activity_match($item['verb'], ACTIVITY_LIKE) || activity_match($item['verb'], ACTIVITY_DISLIKE)) && ($item['id'] != $item['parent'])) {
1513 $profile_url = Contact::MagicLinkById($item['author-id']);
1514 if (strpos($profile_url, 'redir/') === 0) {
1515 $sparkle = ' sparkle';
1520 $dropping = (($item['contact-id'] == $contact_id) || ($item['uid'] == local_user()));
1522 'dropping' => $dropping,
1523 'pagedrop' => false,
1524 'select' => L10n::t('Select'),
1525 'delete' => L10n::t('Delete'),
1528 $title_e = $item['title'];
1529 $body_e = BBCode::convert($item['body']);
1531 $comments .= Renderer::replaceMacros($template,[
1532 '$id' => $item['id'],
1533 '$profile_url' => $profile_url,
1534 '$name' => $item['author-name'],
1535 '$thumb' => $item['author-avatar'],
1536 '$sparkle' => $sparkle,
1537 '$title' => $title_e,
1539 '$ago' => Temporal::getRelativeDate($item['created']),
1540 '$indent' => (($item['parent'] != $item['item_id']) ? ' comment' : ''),
1542 '$comment' => $comment
1545 if (($can_post || Security::canWriteToUserWall($owner_uid))) {
1546 $comments .= Renderer::replaceMacros($cmnt_tpl, [
1547 '$return_path' => '',
1548 '$jsreload' => $return_path,
1549 '$id' => $item['item_id'],
1550 '$parent' => $item['parent'],
1551 '$profile_uid' => $owner_uid,
1552 '$mylink' => $contact['url'],
1553 '$mytitle' => L10n::t('This is you'),
1554 '$myphoto' => $contact['thumb'],
1555 '$comment' => L10n::t('Comment'),
1556 '$submit' => L10n::t('Submit'),
1557 '$preview' => L10n::t('Preview'),
1558 '$sourceapp' => L10n::t($a->sourcename),
1560 '$rand_num' => Crypto::randomDigits(12)
1565 $response_verbs = ['like'];
1566 $response_verbs[] = 'dislike';
1567 $responses = get_responses($conv_responses, $response_verbs, $link_item);
1569 $paginate = $pager->renderFull($total);
1572 $photo_tpl = Renderer::getMarkupTemplate('photo_view.tpl');
1573 $o .= Renderer::replaceMacros($photo_tpl, [
1574 '$id' => $ph[0]['id'],
1575 '$album' => [$album_link, $ph[0]['album']],
1579 '$prevlink' => $prevlink,
1580 '$nextlink' => $nextlink,
1581 '$desc' => $ph[0]['desc'],
1585 '$map_text' => L10n::t('Map'),
1586 '$likebuttons' => $likebuttons,
1588 '$dislike' => $dislike,
1589 'responses' => $responses,
1590 '$comments' => $comments,
1591 '$paginate' => $paginate,
1594 $a->page['htmlhead'] .= "\n" . '<meta name="twitter:card" content="summary_large_image" />' . "\n";
1595 $a->page['htmlhead'] .= '<meta name="twitter:title" content="' . $photo["album"] . '" />' . "\n";
1596 $a->page['htmlhead'] .= '<meta name="twitter:image" content="' . $photo["href"] . '" />' . "\n";
1597 $a->page['htmlhead'] .= '<meta name="twitter:image:width" content="' . $photo["width"] . '" />' . "\n";
1598 $a->page['htmlhead'] .= '<meta name="twitter:image:height" content="' . $photo["height"] . '" />' . "\n";
1603 // Default - show recent photos with upload link (if applicable)
1606 $r = q("SELECT `resource-id`, max(`scale`) AS `scale` FROM `photo` WHERE `uid` = %d AND `album` != '%s' AND `album` != '%s'
1607 $sql_extra GROUP BY `resource-id`",
1608 intval($a->data['user']['uid']),
1609 DBA::escape('Contact Photos'),
1610 DBA::escape(L10n::t('Contact Photos'))
1612 if (DBA::isResult($r)) {
1616 $pager = new Pager($a->query_string, 20);
1618 $r = q("SELECT `resource-id`, ANY_VALUE(`id`) AS `id`, ANY_VALUE(`filename`) AS `filename`,
1619 ANY_VALUE(`type`) AS `type`, ANY_VALUE(`album`) AS `album`, max(`scale`) AS `scale`,
1620 ANY_VALUE(`created`) AS `created` FROM `photo`
1621 WHERE `uid` = %d AND `album` != '%s' AND `album` != '%s'
1622 $sql_extra GROUP BY `resource-id` ORDER BY `created` DESC LIMIT %d , %d",
1623 intval($a->data['user']['uid']),
1624 DBA::escape('Contact Photos'),
1625 DBA::escape(L10n::t('Contact Photos')),
1627 $pager->getItemsPerPage()
1631 if (DBA::isResult($r)) {
1632 // "Twist" is only used for the duepunto theme with style "slackr"
1634 foreach ($r as $rr) {
1635 //hide profile photos to others
1636 if (!$is_owner && !remote_user() && ($rr['album'] == L10n::t('Profile Photos'))) {
1641 $ext = $phototypes[$rr['type']];
1643 $alt_e = $rr['filename'];
1644 $name_e = $rr['album'];
1648 'twist' => ' ' . ($twist ? 'rotleft' : 'rotright') . rand(2,4),
1649 'link' => 'photos/' . $a->data['user']['nickname'] . '/image/' . $rr['resource-id'],
1650 'title' => L10n::t('View Photo'),
1651 'src' => 'photo/' . $rr['resource-id'] . '-' . ((($rr['scale']) == 6) ? 4 : $rr['scale']) . '.' . $ext,
1654 'link' => 'photos/' . $a->data['user']['nickname'] . '/album/' . bin2hex($rr['album']),
1656 'alt' => L10n::t('View Album'),
1663 $tpl = Renderer::getMarkupTemplate('photos_recent.tpl');
1664 $o .= Renderer::replaceMacros($tpl, [
1665 '$title' => L10n::t('Recent Photos'),
1666 '$can_post' => $can_post,
1667 '$upload' => [L10n::t('Upload New Photos'), 'photos/'.$a->data['user']['nickname'].'/upload'],
1668 '$photos' => $photos,
1669 '$paginate' => $pager->renderFull($total),