]> git.mxchange.org Git - friendica.git/blob - mod/photos.php
Update functions and calls
[friendica.git] / mod / photos.php
1 <?php
2 /**
3  * @file mod/photos.php
4  */
5 use Friendica\App;
6 use Friendica\Content\Feature;
7 use Friendica\Content\Nav;
8 use Friendica\Core\System;
9 use Friendica\Core\Config;
10 use Friendica\Core\Worker;
11 use Friendica\Database\DBM;
12 use Friendica\Model\Contact;
13 use Friendica\Model\Group;
14 use Friendica\Model\Photo;
15 use Friendica\Model\Profile;
16 use Friendica\Network\Probe;
17 use Friendica\Object\Image;
18 use Friendica\Protocol\DFRN;
19
20 require_once 'include/items.php';
21 require_once 'include/acl_selectors.php';
22 require_once 'include/bbcode.php';
23 require_once 'include/security.php';
24 require_once 'include/tags.php';
25 require_once 'include/threads.php';
26
27 function photos_init(App $a) {
28
29         if ($a->argc > 1) {
30                 DFRN::autoRedir($a, $a->argv[1]);
31         }
32
33         if (Config::get('system', 'block_public') && !local_user() && !remote_user()) {
34                 return;
35         }
36
37         Nav::setSelected('home');
38
39         if ($a->argc > 1) {
40                 $nick = $a->argv[1];
41                 $user = q("SELECT * FROM `user` WHERE `nickname` = '%s' AND `blocked` = 0 LIMIT 1",
42                         dbesc($nick)
43                 );
44
45                 if (!DBM::is_result($user)) {
46                         return;
47                 }
48
49                 $a->data['user'] = $user[0];
50                 $a->profile_uid = $user[0]['uid'];
51                 $is_owner = (local_user() && (local_user() == $a->profile_uid));
52
53                 $profile = Profile::getByNickname($nick, $a->profile_uid);
54
55                 $account_type = Contact::getAccountType($profile);
56
57                 $tpl = get_markup_template("vcard-widget.tpl");
58
59                 $vcard_widget = replace_macros($tpl, array(
60                         '$name' => $profile['name'],
61                         '$photo' => $profile['photo'],
62                         '$addr' => defaults($profile, 'addr', ''),
63                         '$account_type' => $account_type,
64                         '$pdesc' => defaults($profile, 'pdesc', ''),
65                 ));
66
67                 $albums = Photo::getAlbums($a->data['user']['uid']);
68
69                 $albums_visible = ((intval($a->data['user']['hidewall']) && !local_user() && !remote_user()) ? false : true);
70
71                 // add various encodings to the array so we can just loop through and pick them out in a template
72                 $ret = array('success' => false);
73
74                 if ($albums) {
75                         $a->data['albums'] = $albums;
76                         if ($albums_visible) {
77                                 $ret['success'] = true;
78                         }
79
80                         $ret['albums'] = array();
81                         foreach ($albums as $k => $album) {
82                                 //hide profile photos to others
83                                 if (!$is_owner && !remote_user() && ($album['album'] == t('Profile Photos')))
84                                         continue;
85                                 $entry = array(
86                                         'text'      => $album['album'],
87                                         'total'     => $album['total'],
88                                         'url'       => 'photos/' . $a->data['user']['nickname'] . '/album/' . bin2hex($album['album']),
89                                         'urlencode' => urlencode($album['album']),
90                                         'bin2hex'   => bin2hex($album['album'])
91                                 );
92                                 $ret['albums'][] = $entry;
93                         }
94                 }
95
96                 if (local_user() && $a->data['user']['uid'] == local_user()) {
97                         $can_post = true;
98                 }
99
100                 if ($ret['success']) {
101                         $photo_albums_widget = replace_macros(get_markup_template('photo_albums.tpl'), array(
102                                 '$nick'     => $a->data['user']['nickname'],
103                                 '$title'    => t('Photo Albums'),
104                                 '$recent'   => t('Recent Photos'),
105                                 '$albums'   => $ret['albums'],
106                                 '$baseurl'  => System::baseUrl(),
107                                 '$upload'   => array(t('Upload New Photos'), 'photos/' . $a->data['user']['nickname'] . '/upload'),
108                                 '$can_post' => $can_post
109                         ));
110                 }
111
112
113                 if (!x($a->page, 'aside')) {
114                         $a->page['aside'] = '';
115                 }
116                 $a->page['aside'] .= $vcard_widget;
117                 $a->page['aside'] .= $photo_albums_widget;
118
119                 $tpl = get_markup_template("photos_head.tpl");
120                 $a->page['htmlhead'] .= replace_macros($tpl,array(
121                         '$ispublic' => t('everybody')
122                 ));
123         }
124
125         return;
126 }
127
128 function photos_post(App $a)
129 {
130         logger('mod-photos: photos_post: begin' , LOGGER_DEBUG);
131         logger('mod_photos: REQUEST ' . print_r($_REQUEST, true), LOGGER_DATA);
132         logger('mod_photos: FILES '   . print_r($_FILES, true), LOGGER_DATA);
133
134         $phototypes = Image::supportedTypes();
135
136         $can_post  = false;
137         $visitor   = 0;
138
139         $page_owner_uid = $a->data['user']['uid'];
140         $community_page = $a->data['user']['page-flags'] == PAGE_COMMUNITY;
141
142         if (local_user() && (local_user() == $page_owner_uid)) {
143                 $can_post = true;
144         } else {
145                 if ($community_page && remote_user()) {
146                         $contact_id = 0;
147                         if (x($_SESSION, 'remote') && is_array($_SESSION['remote'])) {
148                                 foreach ($_SESSION['remote'] as $v) {
149                                         if ($v['uid'] == $page_owner_uid) {
150                                                 $contact_id = $v['cid'];
151                                                 break;
152                                         }
153                                 }
154                         }
155                         if ($contact_id) {
156                                 $r = q("SELECT `uid` FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `id` = %d AND `uid` = %d LIMIT 1",
157                                         intval($contact_id),
158                                         intval($page_owner_uid)
159                                 );
160                                 if (DBM::is_result($r)) {
161                                         $can_post = true;
162                                         $visitor = $contact_id;
163                                 }
164                         }
165                 }
166         }
167
168         if (!$can_post) {
169                 notice( t('Permission denied.') . EOL );
170                 killme();
171         }
172
173         $r = q("SELECT `contact`.*, `user`.`nickname` FROM `contact` LEFT JOIN `user` ON `user`.`uid` = `contact`.`uid`
174                 WHERE `user`.`uid` = %d AND `self` = 1 LIMIT 1",
175                 intval($page_owner_uid)
176         );
177
178         if (!DBM::is_result($r)) {
179                 notice( t('Contact information unavailable') . EOL);
180                 logger('photos_post: unable to locate contact record for page owner. uid=' . $page_owner_uid);
181                 killme();
182         }
183
184         $owner_record = $r[0];
185
186         if ($a->argc > 3 && $a->argv[2] === 'album') {
187                 $album = hex2bin($a->argv[3]);
188
189                 if ($album === t('Profile Photos') || $album === 'Contact Photos' || $album === t('Contact Photos')) {
190                         goaway($_SESSION['photo_return']);
191                         return; // NOTREACHED
192                 }
193
194                 $r = q("SELECT `album` FROM `photo` WHERE `album` = '%s' AND `uid` = %d",
195                         dbesc($album),
196                         intval($page_owner_uid)
197                 );
198                 if (!DBM::is_result($r)) {
199                         notice( t('Album not found.') . EOL);
200                         goaway($_SESSION['photo_return']);
201                         return; // NOTREACHED
202                 }
203
204                 // Check if the user has responded to a delete confirmation query
205                 if ($_REQUEST['canceled']) {
206                         goaway($_SESSION['photo_return']);
207                 }
208
209                 // RENAME photo album
210                 $newalbum = notags(trim($_POST['albumname']));
211                 if ($newalbum != $album) {
212                         q("UPDATE `photo` SET `album` = '%s' WHERE `album` = '%s' AND `uid` = %d",
213                                 dbesc($newalbum),
214                                 dbesc($album),
215                                 intval($page_owner_uid)
216                         );
217                         // Update the photo albums cache
218                         Photo::clearAlbumCache($page_owner_uid);
219
220                         $newurl = str_replace(bin2hex($album), bin2hex($newalbum), $_SESSION['photo_return']);
221                         goaway($newurl);
222                         return; // NOTREACHED
223                 }
224
225                 /*
226                  * DELETE photo album and all its photos
227                  */
228
229                 if ($_POST['dropalbum'] == t('Delete Album')) {
230                         // Check if we should do HTML-based delete confirmation
231                         if (x($_REQUEST, 'confirm')) {
232                                 $drop_url = $a->query_string;
233                                 $extra_inputs = array(
234                                         array('name' => 'albumname', 'value' => $_POST['albumname']),
235                                 );
236                                 $a->page['content'] = replace_macros(get_markup_template('confirm.tpl'), array(
237                                         '$method' => 'post',
238                                         '$message' => t('Do you really want to delete this photo album and all its photos?'),
239                                         '$extra_inputs' => $extra_inputs,
240                                         '$confirm' => t('Delete Album'),
241                                         '$confirm_url' => $drop_url,
242                                         '$confirm_name' => 'dropalbum', // Needed so that confirmation will bring us back into this if statement
243                                         '$cancel' => t('Cancel'),
244                                 ));
245                                 $a->error = 1; // Set $a->error so the other module functions don't execute
246                                 return;
247                         }
248
249                         $res = array();
250
251                         // get the list of photos we are about to delete
252
253                         if ($visitor) {
254                                 $r = q("SELECT distinct(`resource-id`) as `rid` FROM `photo` WHERE `contact-id` = %d AND `uid` = %d AND `album` = '%s'",
255                                         intval($visitor),
256                                         intval($page_owner_uid),
257                                         dbesc($album)
258                                 );
259                         } else {
260                                 $r = q("SELECT distinct(`resource-id`) as `rid` FROM `photo` WHERE `uid` = %d AND `album` = '%s'",
261                                         intval(local_user()),
262                                         dbesc($album)
263                                 );
264                         }
265                         if (DBM::is_result($r)) {
266                                 foreach ($r as $rr) {
267                                         $res[] = "'" . dbesc($rr['rid']) . "'" ;
268                                 }
269                         } else {
270                                 goaway($_SESSION['photo_return']);
271                                 return; // NOTREACHED
272                         }
273
274                         $str_res = implode(',', $res);
275
276                         // remove the associated photos
277                         q("DELETE FROM `photo` WHERE `resource-id` IN ( $str_res ) AND `uid` = %d",
278                                 intval($page_owner_uid)
279                         );
280
281                         // find and delete the corresponding item with all the comments and likes/dislikes
282                         $r = q("SELECT `id`, `parent-uri`, `visible` FROM `item` WHERE `resource-id` IN ( $str_res ) AND `uid` = %d",
283                                 intval($page_owner_uid)
284                         );
285                         if (DBM::is_result($r)) {
286                                 foreach ($r as $rr) {
287                                         q("UPDATE `item` SET `deleted` = 1, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d",
288                                                 dbesc(datetime_convert()),
289                                                 dbesc($rr['parent-uri']),
290                                                 intval($page_owner_uid)
291                                         );
292                                         create_tags_from_itemuri($rr['parent-uri'], $page_owner_uid);
293                                         delete_thread_uri($rr['parent-uri'], $page_owner_uid);
294
295                                         $drop_id = intval($rr['id']);
296
297                                         // send the notification upstream/downstream as the case may be
298                                         if ($rr['visible']) {
299                                                 Worker::add(PRIORITY_HIGH, "Notifier", "drop", $drop_id);
300                                         }
301                                 }
302                         }
303
304                         // Update the photo albums cache
305                         Photo::clearAlbumCache($page_owner_uid);
306                 }
307
308                 goaway('photos/' . $a->data['user']['nickname']);
309                 return; // NOTREACHED
310         }
311
312
313         // Check if the user has responded to a delete confirmation query for a single photo
314         if ($a->argc > 2 && x($_REQUEST, 'canceled')) {
315                 goaway($_SESSION['photo_return']);
316         }
317
318         if ($a->argc > 2 && defaults($_POST, 'delete', '') === t('Delete Photo')) {
319
320                 // same as above but remove single photo
321
322                 // Check if we should do HTML-based delete confirmation
323                 if (x($_REQUEST, 'confirm')) {
324                         $drop_url = $a->query_string;
325                         $a->page['content'] = replace_macros(get_markup_template('confirm.tpl'), array(
326                                 '$method' => 'post',
327                                 '$message' => t('Do you really want to delete this photo?'),
328                                 '$extra_inputs' => array(),
329                                 '$confirm' => t('Delete Photo'),
330                                 '$confirm_url' => $drop_url,
331                                 '$confirm_name' => 'delete', // Needed so that confirmation will bring us back into this if statement
332                                 '$cancel' => t('Cancel'),
333                         ));
334                         $a->error = 1; // Set $a->error so the other module functions don't execute
335                         return;
336                 }
337
338                 if ($visitor) {
339                         $r = q("SELECT `id`, `resource-id` FROM `photo` WHERE `contact-id` = %d AND `uid` = %d AND `resource-id` = '%s' LIMIT 1",
340                                 intval($visitor),
341                                 intval($page_owner_uid),
342                                 dbesc($a->argv[2])
343                         );
344                 } else {
345                         $r = q("SELECT `id`, `resource-id` FROM `photo` WHERE `uid` = %d AND `resource-id` = '%s' LIMIT 1",
346                                 intval(local_user()),
347                                 dbesc($a->argv[2])
348                         );
349                 }
350                 if (DBM::is_result($r)) {
351                         q("DELETE FROM `photo` WHERE `uid` = %d AND `resource-id` = '%s'",
352                                 intval($page_owner_uid),
353                                 dbesc($r[0]['resource-id'])
354                         );
355                         $i = q("SELECT `id`, `uri`, `visible` FROM `item` WHERE `resource-id` = '%s' AND `uid` = %d LIMIT 1",
356                                 dbesc($r[0]['resource-id']),
357                                 intval($page_owner_uid)
358                         );
359                         if (DBM::is_result($i)) {
360                                 q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d",
361                                         dbesc(datetime_convert()),
362                                         dbesc(datetime_convert()),
363                                         dbesc($i[0]['uri']),
364                                         intval($page_owner_uid)
365                                 );
366                                 create_tags_from_itemuri($i[0]['uri'], $page_owner_uid);
367                                 delete_thread_uri($i[0]['uri'], $page_owner_uid);
368
369                                 $url = System::baseUrl();
370                                 $drop_id = intval($i[0]['id']);
371
372                                 // Update the photo albums cache
373                                 Photo::clearAlbumCache($page_owner_uid);
374
375                                 if ($i[0]['visible']) {
376                                         Worker::add(PRIORITY_HIGH, "Notifier", "drop", $drop_id);
377                                 }
378                         }
379                 }
380
381                 goaway('photos/' . $a->data['user']['nickname']);
382                 return; // NOTREACHED
383         }
384
385         if ($a->argc > 2 && (x($_POST, 'desc') !== false || x($_POST, 'newtag') !== false || x($_POST, 'albname') !== false)) {
386                 $desc        = x($_POST, 'desc')      ? notags(trim($_POST['desc']))      : '';
387                 $rawtags     = x($_POST, 'newtag')    ? notags(trim($_POST['newtag']))    : '';
388                 $item_id     = x($_POST, 'item_id')   ? intval($_POST['item_id'])         : 0;
389                 $albname     = x($_POST, 'albname')   ? notags(trim($_POST['albname']))   : '';
390                 $origaname   = x($_POST, 'origaname') ? notags(trim($_POST['origaname'])) : '';
391                 $str_group_allow   = perms2str($_POST['group_allow']);
392                 $str_contact_allow = perms2str($_POST['contact_allow']);
393                 $str_group_deny    = perms2str($_POST['group_deny']);
394                 $str_contact_deny  = perms2str($_POST['contact_deny']);
395
396                 $resource_id = $a->argv[2];
397
398                 if (!strlen($albname)) {
399                         $albname = datetime_convert('UTC',date_default_timezone_get(),'now', 'Y');
400                 }
401
402                 if (x($_POST,'rotate') !== false &&
403                    (intval($_POST['rotate']) == 1 || intval($_POST['rotate']) == 2)) {
404                         logger('rotate');
405
406                         $r = q("SELECT * FROM `photo` WHERE `resource-id` = '%s' AND `uid` = %d AND `scale` = 0 LIMIT 1",
407                                 dbesc($resource_id),
408                                 intval($page_owner_uid)
409                         );
410                         if (DBM::is_result($r)) {
411                                 $Image = new Image($r[0]['data'], $r[0]['type']);
412                                 if ($Image->isValid()) {
413                                         $rotate_deg = ( (intval($_POST['rotate']) == 1) ? 270 : 90 );
414                                         $Image->rotate($rotate_deg);
415
416                                         $width  = $Image->getWidth();
417                                         $height = $Image->getHeight();
418
419                                         $x = q("UPDATE `photo` SET `data` = '%s', `height` = %d, `width` = %d WHERE `resource-id` = '%s' AND `uid` = %d AND `scale` = 0",
420                                                 dbesc($Image->asString()),
421                                                 intval($height),
422                                                 intval($width),
423                                                 dbesc($resource_id),
424                                                 intval($page_owner_uid)
425                                         );
426
427                                         if ($width > 640 || $height > 640) {
428                                                 $Image->scaleDown(640);
429                                                 $width  = $Image->getWidth();
430                                                 $height = $Image->getHeight();
431
432                                                 $x = q("UPDATE `photo` SET `data` = '%s', `height` = %d, `width` = %d WHERE `resource-id` = '%s' AND `uid` = %d AND `scale` = 1",
433                                                         dbesc($Image->asString()),
434                                                         intval($height),
435                                                         intval($width),
436                                                         dbesc($resource_id),
437                                                         intval($page_owner_uid)
438                                                 );
439                                         }
440
441                                         if ($width > 320 || $height > 320) {
442                                                 $Image->scaleDown(320);
443                                                 $width  = $Image->getWidth();
444                                                 $height = $Image->getHeight();
445
446                                                 $x = q("UPDATE `photo` SET `data` = '%s', `height` = %d, `width` = %d WHERE `resource-id` = '%s' AND `uid` = %d AND `scale` = 2",
447                                                         dbesc($Image->asString()),
448                                                         intval($height),
449                                                         intval($width),
450                                                         dbesc($resource_id),
451                                                         intval($page_owner_uid)
452                                                 );
453                                         }
454                                 }
455                         }
456                 }
457
458                 $p = q("SELECT * FROM `photo` WHERE `resource-id` = '%s' AND `uid` = %d ORDER BY `scale` DESC",
459                         dbesc($resource_id),
460                         intval($page_owner_uid)
461                 );
462                 if (DBM::is_result($p)) {
463                         $ext = $phototypes[$p[0]['type']];
464                         $r = q("UPDATE `photo` SET `desc` = '%s', `album` = '%s', `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s' WHERE `resource-id` = '%s' AND `uid` = %d",
465                                 dbesc($desc),
466                                 dbesc($albname),
467                                 dbesc($str_contact_allow),
468                                 dbesc($str_group_allow),
469                                 dbesc($str_contact_deny),
470                                 dbesc($str_group_deny),
471                                 dbesc($resource_id),
472                                 intval($page_owner_uid)
473                         );
474
475                         // Update the photo albums cache if album name was changed
476                         if ($albname !== $origaname) {
477                                 Photo::clearAlbumCache($page_owner_uid);
478                         }
479                 }
480
481                 /* Don't make the item visible if the only change was the album name */
482
483                 $visibility = 0;
484                 if ($p[0]['desc'] !== $desc || strlen($rawtags)) {
485                         $visibility = 1;
486                 }
487
488                 if (!$item_id) {
489                         // Create item container
490                         $title = '';
491                         $uri = item_new_uri($a->get_hostname(),$page_owner_uid);
492
493                         $arr = array();
494                         $arr['guid']          = get_guid(32);
495                         $arr['uid']           = $page_owner_uid;
496                         $arr['uri']           = $uri;
497                         $arr['parent-uri']    = $uri;
498                         $arr['type']          = 'photo';
499                         $arr['wall']          = 1;
500                         $arr['resource-id']   = $p[0]['resource-id'];
501                         $arr['contact-id']    = $owner_record['id'];
502                         $arr['owner-name']    = $owner_record['name'];
503                         $arr['owner-link']    = $owner_record['url'];
504                         $arr['owner-avatar']  = $owner_record['thumb'];
505                         $arr['author-name']   = $owner_record['name'];
506                         $arr['author-link']   = $owner_record['url'];
507                         $arr['author-avatar'] = $owner_record['thumb'];
508                         $arr['title']         = $title;
509                         $arr['allow_cid']     = $p[0]['allow_cid'];
510                         $arr['allow_gid']     = $p[0]['allow_gid'];
511                         $arr['deny_cid']      = $p[0]['deny_cid'];
512                         $arr['deny_gid']      = $p[0]['deny_gid'];
513                         $arr['last-child']    = 1;
514                         $arr['visible']       = $visibility;
515                         $arr['origin']        = 1;
516
517                         $arr['body']          = '[url=' . System::baseUrl() . '/photos/' . $a->data['user']['nickname'] . '/image/' . $p[0]['resource-id'] . ']'
518                                                 . '[img]' . System::baseUrl() . '/photo/' . $p[0]['resource-id'] . '-' . $p[0]['scale'] . '.'. $ext . '[/img]'
519                                                 . '[/url]';
520
521                         $item_id = item_store($arr);
522                 }
523
524                 if ($item_id) {
525                         $r = q("SELECT * FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1",
526                                 intval($item_id),
527                                 intval($page_owner_uid)
528                         );
529                 }
530                 if (DBM::is_result($r)) {
531                         $old_tag    = $r[0]['tag'];
532                         $old_inform = $r[0]['inform'];
533                 }
534
535                 if (strlen($rawtags)) {
536                         $str_tags = '';
537                         $inform   = '';
538
539                         // if the new tag doesn't have a namespace specifier (@foo or #foo) give it a hashtag
540                         $x = substr($rawtags, 0, 1);
541                         if ($x !== '@' && $x !== '#') {
542                                 $rawtags = '#' . $rawtags;
543                         }
544
545                         $taginfo = array();
546                         $tags = get_tags($rawtags);
547
548                         if (count($tags)) {
549                                 foreach ($tags as $tag) {
550                                         if (strpos($tag, '@') === 0) {
551                                                 $profile = '';
552                                                 $name = substr($tag,1);
553                                                 if ((strpos($name, '@')) || (strpos($name, 'http://'))) {
554                                                         $newname = $name;
555                                                         $links = @Probe::lrdd($name);
556                                                         if (count($links)) {
557                                                                 foreach ($links as $link) {
558                                                                         if ($link['@attributes']['rel'] === 'http://webfinger.net/rel/profile-page') {
559                                                                                 $profile = $link['@attributes']['href'];
560                                                                         }
561                                                                         if ($link['@attributes']['rel'] === 'salmon') {
562                                                                                 $salmon = '$url:' . str_replace(',', '%sc', $link['@attributes']['href']);
563                                                                                 if (strlen($inform)) {
564                                                                                         $inform .= ',';
565                                                                                 }
566                                                                                 $inform .= $salmon;
567                                                                         }
568                                                                 }
569                                                         }
570                                                         $taginfo[] = array($newname, $profile, $salmon);
571                                                 } else {
572                                                         $newname = $name;
573                                                         $alias = '';
574                                                         $tagcid = 0;
575                                                         if (strrpos($newname, '+')) {
576                                                                 $tagcid = intval(substr($newname, strrpos($newname, '+') + 1));
577                                                         }
578
579                                                         if ($tagcid) {
580                                                                 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
581                                                                         intval($tagcid),
582                                                                         intval($profile_uid)
583                                                                 );
584                                                         } else {
585                                                                 $newname = str_replace('_',' ',$name);
586
587                                                                 //select someone from this user's contacts by name
588                                                                 $r = q("SELECT * FROM `contact` WHERE `name` = '%s' AND `uid` = %d LIMIT 1",
589                                                                                 dbesc($newname),
590                                                                                 intval($page_owner_uid)
591                                                                 );
592
593                                                                 if (!DBM::is_result($r)) {
594                                                                         //select someone by attag or nick and the name passed in
595                                                                         $r = q("SELECT * FROM `contact` WHERE `attag` = '%s' OR `nick` = '%s' AND `uid` = %d ORDER BY `attag` DESC LIMIT 1",
596                                                                                         dbesc($name),
597                                                                                         dbesc($name),
598                                                                                         intval($page_owner_uid)
599                                                                         );
600                                                                 }
601                                                         }
602
603                                                         if (DBM::is_result($r)) {
604                                                                 $newname = $r[0]['name'];
605                                                                 $profile = $r[0]['url'];
606                                                                 $notify = 'cid:' . $r[0]['id'];
607                                                                 if (strlen($inform)) {
608                                                                         $inform .= ',';
609                                                                 }
610                                                                 $inform .= $notify;
611                                                         }
612                                                 }
613                                                 if ($profile) {
614                                                         if (substr($notify, 0, 4) === 'cid:') {
615                                                                 $taginfo[] = array($newname, $profile, $notify, $r[0], '@[url=' . str_replace(',','%2c',$profile) . ']' . $newname . '[/url]');
616                                                         } else {
617                                                                 $taginfo[] = array($newname, $profile, $notify, null, $str_tags .= '@[url=' . $profile . ']' . $newname . '[/url]');
618                                                         }
619                                                         if (strlen($str_tags)) {
620                                                                 $str_tags .= ',';
621                                                         }
622                                                         $profile = str_replace(',', '%2c', $profile);
623                                                         $str_tags .= '@[url='.$profile.']'.$newname.'[/url]';
624                                                 }
625                                         } elseif (strpos($tag, '#') === 0) {
626                                                 $tagname = substr($tag, 1);
627                                                 $str_tags .= '#[url=' . System::baseUrl() . "/search?tag=" . $tagname . ']' . $tagname . '[/url]';
628                                         }
629                                 }
630                         }
631
632                         $newtag = $old_tag;
633                         if (strlen($newtag) && strlen($str_tags)) {
634                                 $newtag .= ',';
635                         }
636                         $newtag .= $str_tags;
637
638                         $newinform = $old_inform;
639                         if (strlen($newinform) && strlen($inform)) {
640                                 $newinform .= ',';
641                         }
642                         $newinform .= $inform;
643
644                         $r = q("UPDATE `item` SET `tag` = '%s', `inform` = '%s', `edited` = '%s', `changed` = '%s' WHERE `id` = %d AND `uid` = %d",
645                                 dbesc($newtag),
646                                 dbesc($newinform),
647                                 dbesc(datetime_convert()),
648                                 dbesc(datetime_convert()),
649                                 intval($item_id),
650                                 intval($page_owner_uid)
651                         );
652                         create_tags_from_item($item_id);
653                         update_thread($item_id);
654
655                         $best = 0;
656                         foreach ($p as $scales) {
657                                 if (intval($scales['scale']) == 2) {
658                                         $best = 2;
659                                         break;
660                                 }
661                                 if (intval($scales['scale']) == 4) {
662                                         $best = 4;
663                                         break;
664                                 }
665                         }
666
667                         if (count($taginfo)) {
668                                 foreach ($taginfo as $tagged) {
669                                         $uri = item_new_uri($a->get_hostname(), $page_owner_uid);
670
671                                         $arr = array();
672                                         $arr['guid']          = get_guid(32);
673                                         $arr['uid']           = $page_owner_uid;
674                                         $arr['uri']           = $uri;
675                                         $arr['parent-uri']    = $uri;
676                                         $arr['type']          = 'activity';
677                                         $arr['wall']          = 1;
678                                         $arr['contact-id']    = $owner_record['id'];
679                                         $arr['owner-name']    = $owner_record['name'];
680                                         $arr['owner-link']    = $owner_record['url'];
681                                         $arr['owner-avatar']  = $owner_record['thumb'];
682                                         $arr['author-name']   = $owner_record['name'];
683                                         $arr['author-link']   = $owner_record['url'];
684                                         $arr['author-avatar'] = $owner_record['thumb'];
685                                         $arr['title']         = '';
686                                         $arr['allow_cid']     = $p[0]['allow_cid'];
687                                         $arr['allow_gid']     = $p[0]['allow_gid'];
688                                         $arr['deny_cid']      = $p[0]['deny_cid'];
689                                         $arr['deny_gid']      = $p[0]['deny_gid'];
690                                         $arr['last-child']    = 1;
691                                         $arr['visible']       = 1;
692                                         $arr['verb']          = ACTIVITY_TAG;
693                                         $arr['object-type']   = ACTIVITY_OBJ_PERSON;
694                                         $arr['target-type']   = ACTIVITY_OBJ_IMAGE;
695                                         $arr['tag']           = $tagged[4];
696                                         $arr['inform']        = $tagged[2];
697                                         $arr['origin']        = 1;
698                                         $arr['body']          = sprintf( 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/' . $p[0]['resource-id'] . ']' . t('a photo') . '[/url]', '[url=' . $owner_record['url'] . ']' . $owner_record['name'] . '[/url]') ;
699                                         $arr['body'] .= "\n\n" . '[url=' . System::baseUrl() . '/photos/' . $owner_record['nickname'] . '/image/' . $p[0]['resource-id'] . ']' . '[img]' . System::baseUrl() . "/photo/" . $p[0]['resource-id'] . '-' . $best . '.' . $ext . '[/img][/url]' . "\n" ;
700
701                                         $arr['object'] = '<object><type>' . ACTIVITY_OBJ_PERSON . '</type><title>' . $tagged[0] . '</title><id>' . $tagged[1] . '/' . $tagged[0] . '</id>';
702                                         $arr['object'] .= '<link>' . xmlify('<link rel="alternate" type="text/html" href="' . $tagged[1] . '" />' . "\n");
703                                         if ($tagged[3]) {
704                                                 $arr['object'] .= xmlify('<link rel="photo" type="'.$p[0]['type'].'" href="' . $tagged[3]['photo'] . '" />' . "\n");
705                                         }
706                                         $arr['object'] .= '</link></object>' . "\n";
707
708                                         $arr['target'] = '<target><type>' . ACTIVITY_OBJ_IMAGE . '</type><title>' . $p[0]['desc'] . '</title><id>'
709                                                 . System::baseUrl() . '/photos/' . $owner_record['nickname'] . '/image/' . $p[0]['resource-id'] . '</id>';
710                                         $arr['target'] .= '<link>' . xmlify('<link rel="alternate" type="text/html" href="' . System::baseUrl() . '/photos/' . $owner_record['nickname'] . '/image/' . $p[0]['resource-id'] . '" />' . "\n" . '<link rel="preview" type="'.$p[0]['type'].'" href="' . System::baseUrl() . "/photo/" . $p[0]['resource-id'] . '-' . $best . '.' . $ext . '" />') . '</link></target>';
711
712                                         $item_id = item_store($arr);
713                                         if ($item_id) {
714                                                 Worker::add(PRIORITY_HIGH, "Notifier", "tag", $item_id);
715                                         }
716                                 }
717                         }
718                 }
719                 goaway($_SESSION['photo_return']);
720                 return; // NOTREACHED
721         }
722
723
724         // default post action - upload a photo
725         call_hooks('photo_post_init', $_POST);
726
727         // Determine the album to use
728         $album    = x($_REQUEST, 'album') ? notags(trim($_REQUEST['album'])) : '';
729         $newalbum = x($_REQUEST, 'newalbum') ? notags(trim($_REQUEST['newalbum'])) : '';
730
731         logger('mod/photos.php: photos_post(): album= ' . $album . ' newalbum= ' . $newalbum , LOGGER_DEBUG);
732
733         if (!strlen($album)) {
734                 if (strlen($newalbum)) {
735                         $album = $newalbum;
736                 } else {
737                         $album = datetime_convert('UTC',date_default_timezone_get(),'now', 'Y');
738                 }
739         }
740
741         /*
742          * We create a wall item for every photo, but we don't want to
743          * overwhelm the data stream with a hundred newly uploaded photos.
744          * So we will make the first photo uploaded to this album in the last several hours
745          * visible by default, the rest will become visible over time when and if
746          * they acquire comments, likes, dislikes, and/or tags
747          */
748
749         $r = q("SELECT * FROM `photo` WHERE `album` = '%s' AND `uid` = %d AND `created` > UTC_TIMESTAMP() - INTERVAL 3 HOUR ",
750                 dbesc($album),
751                 intval($page_owner_uid)
752         );
753         if (!DBM::is_result($r) || ($album == t('Profile Photos'))) {
754                 $visible = 1;
755         } else {
756                 $visible = 0;
757         }
758
759         if (x($_REQUEST, 'not_visible') && $_REQUEST['not_visible'] !== 'false') {
760                 $visible = 0;
761         }
762
763         $group_allow   = defaults($_REQUEST, 'group_allow'  , []);
764         $contact_allow = defaults($_REQUEST, 'contact_allow', []);
765         $group_deny    = defaults($_REQUEST, 'group_deny'   , []);
766         $contact_deny  = defaults($_REQUEST, 'contact_deny' , []);
767
768         $str_group_allow   = perms2str(is_array($group_allow)   ? $group_allow   : explode(',', $group_allow));
769         $str_contact_allow = perms2str(is_array($contact_allow) ? $contact_allow : explode(',', $contact_allow));
770         $str_group_deny    = perms2str(is_array($group_deny)    ? $group_deny    : explode(',', $group_deny));
771         $str_contact_deny  = perms2str(is_array($contact_deny)  ? $contact_deny  : explode(',', $contact_deny));
772
773         $ret = array('src' => '', 'filename' => '', 'filesize' => 0, 'type' => '');
774
775         call_hooks('photo_post_file', $ret);
776
777         if (x($ret, 'src') && x($ret, 'filesize')) {
778                 $src      = $ret['src'];
779                 $filename = $ret['filename'];
780                 $filesize = $ret['filesize'];
781                 $type     = $ret['type'];
782                 $error    = UPLOAD_ERR_OK;
783         } else {
784                 $src      = $_FILES['userfile']['tmp_name'];
785                 $filename = basename($_FILES['userfile']['name']);
786                 $filesize = intval($_FILES['userfile']['size']);
787                 $type     = $_FILES['userfile']['type'];
788                 $error    = $_FILES['userfile']['error'];
789         }
790
791         if ($error !== UPLOAD_ERR_OK) {
792                 switch ($error) {
793                         case UPLOAD_ERR_INI_SIZE:
794                                 notice(t('Image exceeds size limit of %s', ini_get('upload_max_filesize')) . EOL);
795                                 break;
796                         case UPLOAD_ERR_FORM_SIZE:
797                                 notice(t('Image exceeds size limit of %s', formatBytes(defaults($_REQUEST, 'MAX_FILE_SIZE', 0))) . EOL);
798                                 break;
799                         case UPLOAD_ERR_PARTIAL:
800                                 notice(t('Image upload didn\'t complete, please try again') . EOL);
801                                 break;
802                         case UPLOAD_ERR_NO_FILE:
803                                 notice(t('Image file is missing') . EOL);
804                                 break;
805                         case UPLOAD_ERR_NO_TMP_DIR:
806                         case UPLOAD_ERR_CANT_WRITE:
807                         case UPLOAD_ERR_EXTENSION:
808                                 notice(t('Server can\'t accept new file upload at this time, please contact your administrator') . EOL);
809                                 break;
810                 }
811                 @unlink($src);
812                 $foo = 0;
813                 call_hooks('photo_post_end', $foo);
814                 return;
815         }
816
817         if ($type == "") {
818                 $type = Image::guessType($filename);
819         }
820
821         logger('photos: upload: received file: ' . $filename . ' as ' . $src . ' ('. $type . ') ' . $filesize . ' bytes', LOGGER_DEBUG);
822
823         $maximagesize = Config::get('system', 'maximagesize');
824
825         if ($maximagesize && ($filesize > $maximagesize)) {
826                 notice(t('Image exceeds size limit of %s', formatBytes($maximagesize)) . EOL);
827                 @unlink($src);
828                 $foo = 0;
829                 call_hooks('photo_post_end', $foo);
830                 return;
831         }
832
833         if (!$filesize) {
834                 notice(t('Image file is empty.') . EOL);
835                 @unlink($src);
836                 $foo = 0;
837                 call_hooks('photo_post_end', $foo);
838                 return;
839         }
840
841         logger('mod/photos.php: photos_post(): loading the contents of ' . $src , LOGGER_DEBUG);
842
843         $imagedata = @file_get_contents($src);
844
845         $Image = new Image($imagedata, $type);
846
847         if (!$Image->isValid()) {
848                 logger('mod/photos.php: photos_post(): unable to process image' , LOGGER_DEBUG);
849                 notice(t('Unable to process image.') . EOL);
850                 @unlink($src);
851                 $foo = 0;
852                 call_hooks('photo_post_end',$foo);
853                 killme();
854         }
855
856         $exif = $Image->orient($src);
857         @unlink($src);
858
859         $max_length = Config::get('system', 'max_image_length');
860         if (!$max_length) {
861                 $max_length = MAX_IMAGE_LENGTH;
862         }
863         if ($max_length > 0) {
864                 $Image->scaleDown($max_length);
865         }
866
867         $width  = $Image->getWidth();
868         $height = $Image->getHeight();
869
870         $smallest = 0;
871
872         $photo_hash = photo_new_resource();
873
874         $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);
875
876         if (!$r) {
877                 logger('mod/photos.php: photos_post(): image store failed' , LOGGER_DEBUG);
878                 notice(t('Image upload failed.') . EOL);
879                 killme();
880         }
881
882         if ($width > 640 || $height > 640) {
883                 $Image->scaleDown(640);
884                 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);
885                 $smallest = 1;
886         }
887
888         if ($width > 320 || $height > 320) {
889                 $Image->scaleDown(320);
890                 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);
891                 $smallest = 2;
892         }
893
894         $uri = item_new_uri($a->get_hostname(), $page_owner_uid);
895
896         // Create item container
897         $lat = $lon = null;
898         if ($exif && $exif['GPS'] && Feature::isEnabled($channel_id, 'photo_location')) {
899                 $lat = Photo::getGps($exif['GPS']['GPSLatitude'], $exif['GPS']['GPSLatitudeRef']);
900                 $lon = Photo::getGps($exif['GPS']['GPSLongitude'], $exif['GPS']['GPSLongitudeRef']);
901         }
902
903         $arr = array();
904         if ($lat && $lon) {
905                 $arr['coord'] = $lat . ' ' . $lon;
906         }
907
908         $arr['guid']          = get_guid(32);
909         $arr['uid']           = $page_owner_uid;
910         $arr['uri']           = $uri;
911         $arr['parent-uri']    = $uri;
912         $arr['type']          = 'photo';
913         $arr['wall']          = 1;
914         $arr['resource-id']   = $photo_hash;
915         $arr['contact-id']    = $owner_record['id'];
916         $arr['owner-name']    = $owner_record['name'];
917         $arr['owner-link']    = $owner_record['url'];
918         $arr['owner-avatar']  = $owner_record['thumb'];
919         $arr['author-name']   = $owner_record['name'];
920         $arr['author-link']   = $owner_record['url'];
921         $arr['author-avatar'] = $owner_record['thumb'];
922         $arr['title']         = '';
923         $arr['allow_cid']     = $str_contact_allow;
924         $arr['allow_gid']     = $str_group_allow;
925         $arr['deny_cid']      = $str_contact_deny;
926         $arr['deny_gid']      = $str_group_deny;
927         $arr['last-child']    = 1;
928         $arr['visible']       = $visible;
929         $arr['origin']        = 1;
930
931         $arr['body']          = '[url=' . System::baseUrl() . '/photos/' . $owner_record['nickname'] . '/image/' . $photo_hash . ']'
932                                 . '[img]' . System::baseUrl() . "/photo/{$photo_hash}-{$smallest}.".$Image->getExt() . '[/img]'
933                                 . '[/url]';
934
935         $item_id = item_store($arr);
936         // Update the photo albums cache
937         Photo::clearAlbumCache($page_owner_uid);
938
939         if ($visible) {
940                 Worker::add(PRIORITY_HIGH, "Notifier", 'wall-new', $item_id);
941         }
942
943         call_hooks('photo_post_end', intval($item_id));
944
945         // addon uploaders should call "killme()" [e.g. exit] within the photo_post_end hook
946         // if they do not wish to be redirected
947
948         goaway($_SESSION['photo_return']);
949         // NOTREACHED
950 }
951
952 function photos_content(App $a)
953 {
954         // URLs:
955         // photos/name
956         // photos/name/upload
957         // photos/name/upload/xxxxx (xxxxx is album name)
958         // photos/name/album/xxxxx
959         // photos/name/album/xxxxx/edit
960         // photos/name/image/xxxxx
961         // photos/name/image/xxxxx/edit
962
963         if (Config::get('system', 'block_public') && !local_user() && !remote_user()) {
964                 notice( t('Public access denied.') . EOL);
965                 return;
966         }
967
968         require_once 'include/bbcode.php';
969         require_once 'include/security.php';
970         require_once 'include/conversation.php';
971
972         if (!x($a->data,'user')) {
973                 notice( t('No photos selected') . EOL );
974                 return;
975         }
976
977         $phototypes = Image::supportedTypes();
978
979         $_SESSION['photo_return'] = $a->cmd;
980
981         // Parse arguments
982         $datum = null;
983         if ($a->argc > 3) {
984                 $datatype = $a->argv[2];
985                 $datum = $a->argv[3];
986         } elseif (($a->argc > 2) && ($a->argv[2] === 'upload')) {
987                 $datatype = 'upload';
988         } else {
989                 $datatype = 'summary';
990         }
991
992         if ($a->argc > 4) {
993                 $cmd = $a->argv[4];
994         } else {
995                 $cmd = 'view';
996         }
997
998         // Setup permissions structures
999         $can_post       = false;
1000         $visitor        = 0;
1001         $contact        = null;
1002         $remote_contact = false;
1003         $contact_id     = 0;
1004
1005         $owner_uid = $a->data['user']['uid'];
1006
1007         $community_page = (($a->data['user']['page-flags'] == PAGE_COMMUNITY) ? true : false);
1008
1009         if (local_user() && (local_user() == $owner_uid)) {
1010                 $can_post = true;
1011         } else {
1012                 if ($community_page && remote_user()) {
1013                         if (is_array($_SESSION['remote'])) {
1014                                 foreach ($_SESSION['remote'] as $v) {
1015                                         if ($v['uid'] == $owner_uid) {
1016                                                 $contact_id = $v['cid'];
1017                                                 break;
1018                                         }
1019                                 }
1020                         }
1021                         if ($contact_id) {
1022
1023                                 $r = q("SELECT `uid` FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `id` = %d AND `uid` = %d LIMIT 1",
1024                                         intval($contact_id),
1025                                         intval($owner_uid)
1026                                 );
1027                                 if (DBM::is_result($r)) {
1028                                         $can_post = true;
1029                                         $contact = $r[0];
1030                                         $remote_contact = true;
1031                                         $visitor = $contact_id;
1032                                 }
1033                         }
1034                 }
1035         }
1036
1037         $groups = [];
1038
1039         // perhaps they're visiting - but not a community page, so they wouldn't have write access
1040         if (remote_user() && !$visitor) {
1041                 $contact_id = 0;
1042                 if (is_array($_SESSION['remote'])) {
1043                         foreach ($_SESSION['remote'] as $v) {
1044                                 if ($v['uid'] == $owner_uid) {
1045                                         $contact_id = $v['cid'];
1046                                         break;
1047                                 }
1048                         }
1049                 }
1050                 if ($contact_id) {
1051                         $groups = Group::getIdsByContactId($contact_id);
1052                         $r = q("SELECT * FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `id` = %d AND `uid` = %d LIMIT 1",
1053                                 intval($contact_id),
1054                                 intval($owner_uid)
1055                         );
1056                         if (DBM::is_result($r)) {
1057                                 $contact = $r[0];
1058                                 $remote_contact = true;
1059                         }
1060                 }
1061         }
1062
1063         if (!$remote_contact && local_user()) {
1064                 $contact_id = $_SESSION['cid'];
1065                 $contact = $a->contact;
1066         }
1067
1068         if ($a->data['user']['hidewall'] && (local_user() != $owner_uid) && !$remote_contact) {
1069                 notice( t('Access to this item is restricted.') . EOL);
1070                 return;
1071         }
1072
1073         $sql_extra = permissions_sql($owner_uid, $remote_contact, $groups);
1074
1075         $o = "";
1076
1077         // tabs
1078         $is_owner = (local_user() && (local_user() == $owner_uid));
1079         $o .= Profile::getTabs($a, $is_owner, $a->data['user']['nickname']);
1080
1081         // Display upload form
1082         if ($datatype === 'upload') {
1083                 if (!$can_post) {
1084                         notice(t('Permission denied.'));
1085                         return;
1086                 }
1087
1088                 $selname = $datum ? hex2bin($datum) : '';
1089
1090                 $albumselect = '';
1091
1092                 $albumselect .= '<option value="" ' . (!$selname ? ' selected="selected" ' : '') . '>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</option>';
1093                 if (count($a->data['albums'])) {
1094                         foreach ($a->data['albums'] as $album) {
1095                                 if (($album['album'] === '') || ($album['album'] === 'Contact Photos') || ($album['album'] === t('Contact Photos'))) {
1096                                         continue;
1097                                 }
1098                                 $selected = (($selname === $album['album']) ? ' selected="selected" ' : '');
1099                                 $albumselect .= '<option value="' . $album['album'] . '"' . $selected . '>' . $album['album'] . '</option>';
1100                         }
1101                 }
1102
1103                 $uploader = '';
1104
1105                 $ret = array('post_url' => 'photos/' . $a->data['user']['nickname'],
1106                                 'addon_text' => $uploader,
1107                                 'default_upload' => true);
1108
1109                 call_hooks('photo_upload_form',$ret);
1110
1111                 $default_upload_box = replace_macros(get_markup_template('photos_default_uploader_box.tpl'), array());
1112                 $default_upload_submit = replace_macros(get_markup_template('photos_default_uploader_submit.tpl'), array(
1113                         '$submit' => t('Submit'),
1114                 ));
1115
1116                 $usage_message = '';
1117
1118                 $tpl = get_markup_template('photos_upload.tpl');
1119
1120                 $aclselect_e = ($visitor ? '' : populate_acl($a->user));
1121
1122                 $o .= replace_macros($tpl,array(
1123                         '$pagename' => t('Upload Photos'),
1124                         '$sessid' => session_id(),
1125                         '$usage' => $usage_message,
1126                         '$nickname' => $a->data['user']['nickname'],
1127                         '$newalbum' => t('New album name: '),
1128                         '$existalbumtext' => t('or existing album name: '),
1129                         '$nosharetext' => t('Do not show a status post for this upload'),
1130                         '$albumselect' => $albumselect,
1131                         '$permissions' => t('Permissions'),
1132                         '$aclselect' => $aclselect_e,
1133                         '$alt_uploader' => $ret['addon_text'],
1134                         '$default_upload_box' => ($ret['default_upload'] ? $default_upload_box : ''),
1135                         '$default_upload_submit' => ($ret['default_upload'] ? $default_upload_submit : ''),
1136                         '$uploadurl' => $ret['post_url'],
1137
1138                         // ACL permissions box
1139                         '$group_perms' => t('Show to Groups'),
1140                         '$contact_perms' => t('Show to Contacts'),
1141                         '$return_path' => $a->query_string,
1142                 ));
1143
1144                 return $o;
1145         }
1146
1147         // Display a single photo album
1148         if ($datatype === 'album') {
1149                 $album = hex2bin($datum);
1150
1151                 $r = q("SELECT `resource-id`, max(`scale`) AS `scale` FROM `photo` WHERE `uid` = %d AND `album` = '%s'
1152                         AND `scale` <= 4 $sql_extra GROUP BY `resource-id`",
1153                         intval($owner_uid),
1154                         dbesc($album)
1155                 );
1156                 if (DBM::is_result($r)) {
1157                         $a->set_pager_total(count($r));
1158                         $a->set_pager_itemspage(20);
1159                 }
1160
1161                 /// @TODO I have seen this many times, maybe generalize it script-wide and encapsulate it?
1162                 $order_field = defaults($_GET, 'order', '');
1163                 if ($order_field === 'posted') {
1164                         $order = 'ASC';
1165                 } else {
1166                         $order = 'DESC';
1167                 }
1168
1169                 $r = q("SELECT `resource-id`, ANY_VALUE(`id`) AS `id`, ANY_VALUE(`filename`) AS `filename`,
1170                         ANY_VALUE(`type`) AS `type`, max(`scale`) AS `scale`, ANY_VALUE(`desc`) as `desc`,
1171                         ANY_VALUE(`created`) as `created`
1172                         FROM `photo` WHERE `uid` = %d AND `album` = '%s'
1173                         AND `scale` <= 4 $sql_extra GROUP BY `resource-id` ORDER BY `created` $order LIMIT %d , %d",
1174                         intval($owner_uid),
1175                         dbesc($album),
1176                         intval($a->pager['start']),
1177                         intval($a->pager['itemspage'])
1178                 );
1179
1180                 // edit album name
1181                 if ($cmd === 'edit') {
1182                         if (($album !== t('Profile Photos')) && ($album !== 'Contact Photos') && ($album !== t('Contact Photos'))) {
1183                                 if ($can_post) {
1184                                         $edit_tpl = get_markup_template('album_edit.tpl');
1185
1186                                         $album_e = $album;
1187
1188                                         $o .= replace_macros($edit_tpl,array(
1189                                                 '$nametext' => t('New album name: '),
1190                                                 '$nickname' => $a->data['user']['nickname'],
1191                                                 '$album' => $album_e,
1192                                                 '$hexalbum' => bin2hex($album),
1193                                                 '$submit' => t('Submit'),
1194                                                 '$dropsubmit' => t('Delete Album')
1195                                         ));
1196                                 }
1197                         }
1198                 } else {
1199                         if (($album !== t('Profile Photos')) && ($album !== 'Contact Photos') && ($album !== t('Contact Photos')) && $can_post) {
1200                                 $edit = array(t('Edit Album'), 'photos/' . $a->data['user']['nickname'] . '/album/' . bin2hex($album) . '/edit');
1201                         }
1202                 }
1203
1204                 if ($order_field === 'posted') {
1205                         $order =  array(t('Show Newest First'), 'photos/' . $a->data['user']['nickname'] . '/album/' . bin2hex($album));
1206                 } else {
1207                         $order = array(t('Show Oldest First'), 'photos/' . $a->data['user']['nickname'] . '/album/' . bin2hex($album) . '?f=&order=posted');
1208                 }
1209
1210                 $photos = array();
1211
1212                 if (DBM::is_result($r)) {
1213                         // "Twist" is only used for the duepunto theme with style "slackr"
1214                         $twist = false;
1215                         foreach ($r as $rr) {
1216                                 $twist = !$twist;
1217
1218                                 $ext = $phototypes[$rr['type']];
1219
1220                                 $imgalt_e = $rr['filename'];
1221                                 $desc_e = $rr['desc'];
1222
1223                                 $photos[] = array(
1224                                         'id' => $rr['id'],
1225                                         'twist' => ' ' . ($twist ? 'rotleft' : 'rotright') . rand(2,4),
1226                                         'link' => 'photos/' . $a->data['user']['nickname'] . '/image/' . $rr['resource-id']
1227                                                 . ($order_field === 'posted' ? '?f=&order=posted' : ''),
1228                                         'title' => t('View Photo'),
1229                                         'src' => 'photo/' . $rr['resource-id'] . '-' . $rr['scale'] . '.' .$ext,
1230                                         'alt' => $imgalt_e,
1231                                         'desc'=> $desc_e,
1232                                         'ext' => $ext,
1233                                         'hash'=> $rr['resource-id'],
1234                                 );
1235                         }
1236                 }
1237
1238                 $tpl = get_markup_template('photo_album.tpl');
1239                 $o .= replace_macros($tpl, array(
1240                                 '$photos' => $photos,
1241                                 '$album' => $album,
1242                                 '$can_post' => $can_post,
1243                                 '$upload' => array(t('Upload New Photos'), 'photos/' . $a->data['user']['nickname'] . '/upload/' . bin2hex($album)),
1244                                 '$order' => $order,
1245                                 '$edit' => $edit,
1246                                 '$paginate' => paginate($a),
1247                         ));
1248
1249                 return $o;
1250
1251         }
1252
1253         // Display one photo
1254         if ($datatype === 'image') {
1255                 // fetch image, item containing image, then comments
1256                 $ph = q("SELECT * FROM `photo` WHERE `uid` = %d AND `resource-id` = '%s'
1257                         $sql_extra ORDER BY `scale` ASC ",
1258                         intval($owner_uid),
1259                         dbesc($datum)
1260                 );
1261
1262                 if (!DBM::is_result($ph)) {
1263                         $ph = q("SELECT `id` FROM `photo` WHERE `uid` = %d AND `resource-id` = '%s'
1264                                 LIMIT 1",
1265                                 intval($owner_uid),
1266                                 dbesc($datum)
1267                         );
1268                         if (DBM::is_result($ph)) {
1269                                 notice(t('Permission denied. Access to this item may be restricted.'));
1270                         } else {
1271                                 notice(t('Photo not available') . EOL );
1272                         }
1273                         return;
1274                 }
1275
1276                 $prevlink = '';
1277                 $nextlink = '';
1278
1279                 /// @todo This query is totally bad, the whole functionality has to be changed
1280                 // The query leads to a really intense used index.
1281                 // By now we hide it if someone wants to.
1282                 if (!Config::get('system', 'no_count', false)) {
1283                         $order_field = defaults($_GET, 'order', '');
1284                         if ($order_field === 'posted') {
1285                                 $order = 'ASC';
1286                         } else {
1287                                 $order = 'DESC';
1288                         }
1289
1290                         $prvnxt = q("SELECT `resource-id` FROM `photo` WHERE `album` = '%s' AND `uid` = %d AND `scale` = 0
1291                                 $sql_extra ORDER BY `created` $order ",
1292                                 dbesc($ph[0]['album']),
1293                                 intval($owner_uid)
1294                         );
1295
1296                         if (DBM::is_result($prvnxt)) {
1297                                 foreach ($prvnxt as $z => $entry) {
1298                                         if ($entry['resource-id'] == $ph[0]['resource-id']) {
1299                                                 $prv = $z - 1;
1300                                                 $nxt = $z + 1;
1301                                                 if ($prv < 0) {
1302                                                         $prv = count($prvnxt) - 1;
1303                                                 }
1304                                                 if ($nxt >= count($prvnxt)) {
1305                                                         $nxt = 0;
1306                                                 }
1307                                                 break;
1308                                         }
1309                                 }
1310                                 $edit_suffix = ((($cmd === 'edit') && $can_post) ? '/edit' : '');
1311                                 $prevlink = 'photos/' . $a->data['user']['nickname'] . '/image/' . $prvnxt[$prv]['resource-id'] . $edit_suffix . ($order_field === 'posted' ? '?f=&order=posted' : '');
1312                                 $nextlink = 'photos/' . $a->data['user']['nickname'] . '/image/' . $prvnxt[$nxt]['resource-id'] . $edit_suffix . ($order_field === 'posted' ? '?f=&order=posted' : '');
1313                         }
1314                 }
1315
1316                 if (count($ph) == 1)
1317                         $hires = $lores = $ph[0];
1318                 if (count($ph) > 1) {
1319                         if ($ph[1]['scale'] == 2) {
1320                                 // original is 640 or less, we can display it directly
1321                                 $hires = $lores = $ph[0];
1322                         } else {
1323                                 $hires = $ph[0];
1324                                 $lores = $ph[1];
1325                         }
1326                 }
1327
1328                 $album_link = 'photos/' . $a->data['user']['nickname'] . '/album/' . bin2hex($ph[0]['album']);
1329                 $tools = null;
1330                 $lock = null;
1331
1332                 if ($can_post && ($ph[0]['uid'] == $owner_uid)) {
1333                         $tools = array(
1334                                 'edit'  => array('photos/' . $a->data['user']['nickname'] . '/image/' . $datum . (($cmd === 'edit') ? '' : '/edit'), (($cmd === 'edit') ? t('View photo') : t('Edit photo'))),
1335                                 'profile'=>array('profile_photo/use/'.$ph[0]['resource-id'], t('Use as profile photo')),
1336                         );
1337
1338                         // lock
1339                         $lock = ( ( ($ph[0]['uid'] == local_user()) && (strlen($ph[0]['allow_cid']) || strlen($ph[0]['allow_gid'])
1340                                         || strlen($ph[0]['deny_cid']) || strlen($ph[0]['deny_gid'])) )
1341                                         ? t('Private Message')
1342                                         : Null);
1343
1344
1345                 }
1346
1347                 if ( $cmd === 'edit') {
1348                         $tpl = get_markup_template('photo_edit_head.tpl');
1349                         $a->page['htmlhead'] .= replace_macros($tpl,array(
1350                                 '$prevlink' => $prevlink,
1351                                 '$nextlink' => $nextlink
1352                         ));
1353                 }
1354
1355                 if ($prevlink)
1356                         $prevlink = array($prevlink, '<div class="icon prev"></div>') ;
1357
1358                 $photo = array(
1359                         'href' => 'photo/' . $hires['resource-id'] . '-' . $hires['scale'] . '.' . $phototypes[$hires['type']],
1360                         'title'=> t('View Full Size'),
1361                         'src'  => 'photo/' . $lores['resource-id'] . '-' . $lores['scale'] . '.' . $phototypes[$lores['type']] . '?f=&_u=' . datetime_convert('','','','ymdhis'),
1362                         'height' => $hires['height'],
1363                         'width' => $hires['width'],
1364                         'album' => $hires['album'],
1365                         'filename' => $hires['filename'],
1366                 );
1367
1368                 if ($nextlink) {
1369                         $nextlink = array($nextlink, '<div class="icon next"></div>');
1370                 }
1371
1372
1373                 // Do we have an item for this photo?
1374
1375                 // FIXME! - replace following code to display the conversation with our normal
1376                 // conversation functions so that it works correctly and tracks changes
1377                 // in the evolving conversation code.
1378                 // The difference is that we won't be displaying the conversation head item
1379                 // as a "post" but displaying instead the photo it is linked to
1380
1381                 $linked_items = q("SELECT * FROM `item` WHERE `resource-id` = '%s' $sql_extra LIMIT 1",
1382                         dbesc($datum)
1383                 );
1384
1385                 $map = null;
1386                 $link_item = [];
1387
1388                 if (DBM::is_result($linked_items)) {
1389                         $link_item = $linked_items[0];
1390
1391                         $r = q("SELECT COUNT(*) AS `total`
1392                                 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
1393                                 WHERE `parent-uri` = '%s' AND `uri` != '%s' AND `item`.`deleted` = 0 and `item`.`moderated` = 0
1394                                 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
1395                                 AND `item`.`uid` = %d
1396                                 $sql_extra ",
1397                                 dbesc($link_item['uri']),
1398                                 dbesc($link_item['uri']),
1399                                 intval($link_item['uid'])
1400
1401                         );
1402
1403                         if (DBM::is_result($r)) {
1404                                 $a->set_pager_total($r[0]['total']);
1405                         }
1406
1407
1408                         $r = q("SELECT `item`.*, `item`.`id` AS `item_id`,
1409                                 `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`network`,
1410                                 `contact`.`rel`, `contact`.`thumb`, `contact`.`self`,
1411                                 `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
1412                                 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
1413                                 WHERE `parent-uri` = '%s' AND `uri` != '%s' AND `item`.`deleted` = 0 and `item`.`moderated` = 0
1414                                 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
1415                                 AND `item`.`uid` = %d
1416                                 $sql_extra
1417                                 ORDER BY `parent` DESC, `id` ASC LIMIT %d ,%d ",
1418                                 dbesc($link_item['uri']),
1419                                 dbesc($link_item['uri']),
1420                                 intval($link_item['uid']),
1421                                 intval($a->pager['start']),
1422                                 intval($a->pager['itemspage'])
1423
1424                         );
1425
1426                         if (local_user() && (local_user() == $link_item['uid'])) {
1427                                 q("UPDATE `item` SET `unseen` = 0 WHERE `parent` = %d and `uid` = %d",
1428                                         intval($link_item['parent']),
1429                                         intval(local_user())
1430                                 );
1431                                 update_thread($link_item['parent']);
1432                         }
1433
1434                         if ($link_item['coord']) {
1435                                 $map = Map::byCoordinates($link_item['coord']);
1436                         }
1437                 }
1438
1439                 $tags = null;
1440
1441                 if (count($linked_items) && strlen($link_item['tag'])) {
1442                         $arr = explode(',', $link_item['tag']);
1443                         // parse tags and add links
1444                         $tag_str = '';
1445                         foreach ($arr as $t) {
1446                                 if (strlen($tag_str)) {
1447                                         $tag_str .= ', ';
1448                                 }
1449                                 $tag_str .= bbcode($t);
1450                         }
1451                         $tags = array(t('Tags: '), $tag_str);
1452                         if ($cmd === 'edit') {
1453                                 $tags[] = 'tagrm/' . $link_item['id'];
1454                                 $tags[] = t('[Remove any tag]');
1455                         }
1456                 }
1457
1458
1459                 $edit = Null;
1460                 if ($cmd === 'edit' && $can_post) {
1461                         $edit_tpl = get_markup_template('photo_edit.tpl');
1462
1463                         $album_e = $ph[0]['album'];
1464                         $caption_e = $ph[0]['desc'];
1465                         $aclselect_e = populate_acl($ph[0]);
1466
1467                         $edit = replace_macros($edit_tpl, array(
1468                                 '$id' => $ph[0]['id'],
1469                                 '$album' => array('albname', t('New album name'), $album_e,''),
1470                                 '$caption' => array('desc', t('Caption'), $caption_e, ''),
1471                                 '$tags' => array('newtag', t('Add a Tag'), "", t('Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping')),
1472                                 '$rotate_none' => array('rotate', t('Do not rotate'),0,'', true),
1473                                 '$rotate_cw' => array('rotate', t('Rotate CW (right)'),1,''),
1474                                 '$rotate_ccw' => array('rotate', t('Rotate CCW (left)'),2,''),
1475
1476                                 '$nickname' => $a->data['user']['nickname'],
1477                                 '$resource_id' => $ph[0]['resource-id'],
1478                                 '$permissions' => t('Permissions'),
1479                                 '$aclselect' => $aclselect_e,
1480
1481                                 '$item_id' => defaults($link_item, 'id', 0),
1482                                 '$submit' => t('Submit'),
1483                                 '$delete' => t('Delete Photo'),
1484
1485                                 // ACL permissions box
1486                                 '$group_perms' => t('Show to Groups'),
1487                                 '$contact_perms' => t('Show to Contacts'),
1488                                 '$return_path' => $a->query_string,
1489                         ));
1490                 }
1491
1492                 $like = '';
1493                 $dislike = '';
1494                 $likebuttons = '';
1495                 $comments = '';
1496                 $paginate = '';
1497                 $responses = '';
1498
1499                 if (count($linked_items)) {
1500                         $cmnt_tpl = get_markup_template('comment_item.tpl');
1501                         $tpl = get_markup_template('photo_item.tpl');
1502                         $return_url = $a->cmd;
1503
1504                         if ($can_post || can_write_wall($owner_uid)) {
1505                                 $like_tpl = get_markup_template('like_noshare.tpl');
1506                                 $likebuttons = replace_macros($like_tpl, array(
1507                                         '$id' => $link_item['id'],
1508                                         '$likethis' => t("I like this \x28toggle\x29"),
1509                                         '$nolike' => (Feature::isEnabled(local_user(), 'dislike') ? t("I don't like this \x28toggle\x29") : ''),
1510                                         '$wait' => t('Please wait'),
1511                                         '$return_path' => $a->query_string,
1512                                 ));
1513                         }
1514
1515                         if (!DBM::is_result($r)) {
1516                                 if (($can_post || can_write_wall($owner_uid)) && $link_item['last-child']) {
1517                                         $comments .= replace_macros($cmnt_tpl, array(
1518                                                 '$return_path' => '',
1519                                                 '$jsreload' => $return_url,
1520                                                 '$type' => 'wall-comment',
1521                                                 '$id' => $link_item['id'],
1522                                                 '$parent' => $link_item['id'],
1523                                                 '$profile_uid' =>  $owner_uid,
1524                                                 '$mylink' => $contact['url'],
1525                                                 '$mytitle' => t('This is you'),
1526                                                 '$myphoto' => $contact['thumb'],
1527                                                 '$comment' => t('Comment'),
1528                                                 '$submit' => t('Submit'),
1529                                                 '$preview' => t('Preview'),
1530                                                 '$sourceapp' => t($a->sourcename),
1531                                                 '$ww' => '',
1532                                                 '$rand_num' => random_digits(12)
1533                                         ));
1534                                 }
1535                         }
1536
1537                         $conv_responses = array(
1538                                 'like' => array('title' => t('Likes','title')),'dislike' => array('title' => t('Dislikes','title')),
1539                                 'attendyes' => array('title' => t('Attending','title')), 'attendno' => array('title' => t('Not attending','title')), 'attendmaybe' => array('title' => t('Might attend','title'))
1540                         );
1541
1542                         // display comments
1543                         if (DBM::is_result($r)) {
1544                                 foreach ($r as $item) {
1545                                         builtin_activity_puller($item, $conv_responses);
1546                                 }
1547
1548                                 if (x($conv_responses['like'], $link_item['uri'])) {
1549                                         $like = format_like($conv_responses['like'][$link_item['uri']], $conv_responses['like'][$link_item['uri'] . '-l'], 'like', $link_item['id']);
1550                                 }
1551                                 if (x($conv_responses['dislike'], $link_item['uri'])) {
1552                                         $dislike = format_like($conv_responses['dislike'][$link_item['uri']], $conv_responses['dislike'][$link_item['uri'] . '-l'], 'dislike', $link_item['id']);
1553                                 }
1554
1555                                 if (($can_post || can_write_wall($owner_uid)) && $link_item['last-child']) {
1556                                         $comments .= replace_macros($cmnt_tpl,array(
1557                                                 '$return_path' => '',
1558                                                 '$jsreload' => $return_url,
1559                                                 '$type' => 'wall-comment',
1560                                                 '$id' => $link_item['id'],
1561                                                 '$parent' => $link_item['id'],
1562                                                 '$profile_uid' =>  $owner_uid,
1563                                                 '$mylink' => $contact['url'],
1564                                                 '$mytitle' => t('This is you'),
1565                                                 '$myphoto' => $contact['thumb'],
1566                                                 '$comment' => t('Comment'),
1567                                                 '$submit' => t('Submit'),
1568                                                 '$preview' => t('Preview'),
1569                                                 '$sourceapp' => t($a->sourcename),
1570                                                 '$ww' => '',
1571                                                 '$rand_num' => random_digits(12)
1572                                         ));
1573                                 }
1574
1575                                 foreach ($r as $item) {
1576                                         $comment = '';
1577                                         $template = $tpl;
1578                                         $sparkle = '';
1579
1580                                         if ((activity_match($item['verb'], ACTIVITY_LIKE) || activity_match($item['verb'], ACTIVITY_DISLIKE)) && ($item['id'] != $item['parent'])) {
1581                                                 continue;
1582                                         }
1583
1584                                         $redirect_url = 'redir/' . $item['cid'];
1585
1586                                         if (local_user() && ($item['contact-uid'] == local_user())
1587                                                 && ($item['network'] == NETWORK_DFRN) && !$item['self']) {
1588                                                 $profile_url = $redirect_url;
1589                                                 $sparkle = ' sparkle';
1590                                         } else {
1591                                                 $profile_url = $item['url'];
1592                                                 $sparkle = '';
1593                                         }
1594
1595                                         $diff_author = (($item['url'] !== $item['author-link']) ? true : false);
1596
1597                                         $profile_name   = ((strlen($item['author-name'])   && $diff_author) ? $item['author-name']   : $item['name']);
1598                                         $profile_avatar = ((strlen($item['author-avatar']) && $diff_author) ? $item['author-avatar'] : $item['thumb']);
1599
1600                                         $profile_link = $profile_url;
1601
1602                                         $dropping = (($item['contact-id'] == $contact_id) || ($item['uid'] == local_user()));
1603                                         $drop = array(
1604                                                 'dropping' => $dropping,
1605                                                 'pagedrop' => false,
1606                                                 'select' => t('Select'),
1607                                                 'delete' => t('Delete'),
1608                                         );
1609
1610                                         $name_e = $profile_name;
1611                                         $title_e = $item['title'];
1612                                         $body_e = bbcode($item['body']);
1613
1614                                         $comments .= replace_macros($template,array(
1615                                                 '$id' => $item['item_id'],
1616                                                 '$profile_url' => $profile_link,
1617                                                 '$name' => $name_e,
1618                                                 '$thumb' => $profile_avatar,
1619                                                 '$sparkle' => $sparkle,
1620                                                 '$title' => $title_e,
1621                                                 '$body' => $body_e,
1622                                                 '$ago' => relative_date($item['created']),
1623                                                 '$indent' => (($item['parent'] != $item['item_id']) ? ' comment' : ''),
1624                                                 '$drop' => $drop,
1625                                                 '$comment' => $comment
1626                                         ));
1627
1628                                         if (($can_post || can_write_wall($owner_uid)) && $item['last-child']) {
1629                                                 $comments .= replace_macros($cmnt_tpl, array(
1630                                                         '$return_path' => '',
1631                                                         '$jsreload' => $return_url,
1632                                                         '$type' => 'wall-comment',
1633                                                         '$id' => $item['item_id'],
1634                                                         '$parent' => $item['parent'],
1635                                                         '$profile_uid' =>  $owner_uid,
1636                                                         '$mylink' => $contact['url'],
1637                                                         '$mytitle' => t('This is you'),
1638                                                         '$myphoto' => $contact['thumb'],
1639                                                         '$comment' => t('Comment'),
1640                                                         '$submit' => t('Submit'),
1641                                                         '$preview' => t('Preview'),
1642                                                         '$sourceapp' => t($a->sourcename),
1643                                                         '$ww' => '',
1644                                                         '$rand_num' => random_digits(12)
1645                                                 ));
1646                                         }
1647                                 }
1648                         }
1649                         $response_verbs = array('like');
1650                         if (Feature::isEnabled($owner_uid, 'dislike')) {
1651                                 $response_verbs[] = 'dislike';
1652                         }
1653                         $responses = get_responses($conv_responses, $response_verbs, '', $link_item);
1654
1655                         $paginate = paginate($a);
1656                 }
1657
1658                 $photo_tpl = get_markup_template('photo_view.tpl');
1659                 $o .= replace_macros($photo_tpl, array(
1660                         '$id' => $ph[0]['id'],
1661                         '$album' => [$album_link, $ph[0]['album']],
1662                         '$tools' => $tools,
1663                         '$lock' => $lock,
1664                         '$photo' => $photo,
1665                         '$prevlink' => $prevlink,
1666                         '$nextlink' => $nextlink,
1667                         '$desc' => $ph[0]['desc'],
1668                         '$tags' => $tags,
1669                         '$edit' => $edit,
1670                         '$map' => $map,
1671                         '$map_text' => t('Map'),
1672                         '$likebuttons' => $likebuttons,
1673                         '$like' => $like,
1674                         '$dislike' => $dislike,
1675                         'responses' => $responses,
1676                         '$comments' => $comments,
1677                         '$paginate' => $paginate,
1678                 ));
1679
1680                 $a->page['htmlhead'] .= "\n" . '<meta name="twitter:card" content="photo" />' . "\n";
1681                 $a->page['htmlhead'] .= '<meta name="twitter:title" content="' . $photo["album"] . '" />' . "\n";
1682                 $a->page['htmlhead'] .= '<meta name="twitter:image" content="' . $photo["href"] . '" />' . "\n";
1683                 $a->page['htmlhead'] .= '<meta name="twitter:image:width" content="' . $photo["width"] . '" />' . "\n";
1684                 $a->page['htmlhead'] .= '<meta name="twitter:image:height" content="' . $photo["height"] . '" />' . "\n";
1685
1686                 return $o;
1687         }
1688
1689         // Default - show recent photos with upload link (if applicable)
1690         //$o = '';
1691
1692         $r = q("SELECT `resource-id`, max(`scale`) AS `scale` FROM `photo` WHERE `uid` = %d AND `album` != '%s' AND `album` != '%s'
1693                 $sql_extra GROUP BY `resource-id`",
1694                 intval($a->data['user']['uid']),
1695                 dbesc('Contact Photos'),
1696                 dbesc( t('Contact Photos'))
1697         );
1698         if (DBM::is_result($r)) {
1699                 $a->set_pager_total(count($r));
1700                 $a->set_pager_itemspage(20);
1701         }
1702
1703         $r = q("SELECT `resource-id`, ANY_VALUE(`id`) AS `id`, ANY_VALUE(`filename`) AS `filename`,
1704                 ANY_VALUE(`type`) AS `type`, ANY_VALUE(`album`) AS `album`, max(`scale`) AS `scale`,
1705                 ANY_VALUE(`created`) AS `created` FROM `photo`
1706                 WHERE `uid` = %d AND `album` != '%s' AND `album` != '%s'
1707                 $sql_extra GROUP BY `resource-id` ORDER BY `created` DESC LIMIT %d , %d",
1708                 intval($a->data['user']['uid']),
1709                 dbesc('Contact Photos'),
1710                 dbesc( t('Contact Photos')),
1711                 intval($a->pager['start']),
1712                 intval($a->pager['itemspage'])
1713         );
1714
1715         $photos = array();
1716         if (DBM::is_result($r)) {
1717                 // "Twist" is only used for the duepunto theme with style "slackr"
1718                 $twist = false;
1719                 foreach ($r as $rr) {
1720                         //hide profile photos to others
1721                         if (!$is_owner && !remote_user() && ($rr['album'] == t('Profile Photos')))
1722                                 continue;
1723
1724                         $twist = !$twist;
1725
1726                         $ext = $phototypes[$rr['type']];
1727
1728                         $alt_e = $rr['filename'];
1729                         $name_e = $rr['album'];
1730
1731                         $photos[] = array(
1732                                 'id'            => $rr['id'],
1733                                 'twist'         => ' ' . ($twist ? 'rotleft' : 'rotright') . rand(2,4),
1734                                 'link'          => 'photos/' . $a->data['user']['nickname'] . '/image/' . $rr['resource-id'],
1735                                 'title'         => t('View Photo'),
1736                                 'src'           => 'photo/' . $rr['resource-id'] . '-' . ((($rr['scale']) == 6) ? 4 : $rr['scale']) . '.' . $ext,
1737                                 'alt'           => $alt_e,
1738                                 'album' => array(
1739                                         'link'  => 'photos/' . $a->data['user']['nickname'] . '/album/' . bin2hex($rr['album']),
1740                                         'name'  => $name_e,
1741                                         'alt'   => t('View Album'),
1742                                 ),
1743
1744                         );
1745                 }
1746         }
1747
1748         $tpl = get_markup_template('photos_recent.tpl');
1749         $o .= replace_macros($tpl, array(
1750                 '$title' => t('Recent Photos'),
1751                 '$can_post' => $can_post,
1752                 '$upload' => array(t('Upload New Photos'), 'photos/'.$a->data['user']['nickname'].'/upload'),
1753                 '$photos' => $photos,
1754                 '$paginate' => paginate($a),
1755         ));
1756
1757         return $o;
1758 }