2 require_once('include/Photo.php');
3 require_once('include/items.php');
4 require_once('include/acl_selectors.php');
5 require_once('include/bbcode.php');
7 function photos_init(&$a) {
10 if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
17 $r = q("SELECT * FROM `user` WHERE `nickname` = '%s' AND `blocked` = 0 LIMIT 1",
24 $a->data['user'] = $r[0];
26 $albums = q("SELECT distinct(`album`) AS `album` FROM `photo` WHERE `uid` = %d",
27 intval($a->data['user']['uid'])
31 $a->data['albums'] = $albums;
33 $o .= '<h4><a href="' . $a->get_baseurl() . '/profile/' . $a->data['user']['nickname'] . '">' . $a->data['user']['username'] . '</a></h4>';
34 $o .= '<h4>' . '<a href="' . $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '">' . t('Photo Albums') . '</a></h4>';
37 foreach($albums as $album) {
38 if((! strlen($album['album'])) || ($album['album'] == t('Contact Photos')))
40 $o .= '<li>' . '<a href="photos/' . $a->argv[1] . '/album/' . bin2hex($album['album']) . '" />' . $album['album'] . '</a></li>';
45 if(! x($a->page,'aside'))
46 $a->page['aside'] = '';
47 $a->page['aside'] .= $o;
55 function photos_post(&$a) {
57 logger('mod/photos.php: photos_post(): begin' , 'LOGGER_DEBUG');
59 foreach($_REQUEST AS $key => $val) {
60 logger('mod/photos.php: photos_post(): $_REQUEST key: ' . $key . ' val: ' . $val , 'LOGGER_DEBUG');
63 foreach($_FILES AS $key => $val) {
64 logger('mod/photos.php: photos_post(): $_FILES key: ' . $key . ' val: ' . $val , 'LOGGER_DEBUG');
70 $page_owner_uid = $a->data['user']['uid'];
71 $community_page = (($a->data['user']['page-flags'] == PAGE_COMMUNITY) ? true : false);
73 if((local_user()) && (local_user() == $page_owner_uid))
76 if($community_page && remote_user()) {
77 $r = q("SELECT `uid` FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `id` = %d AND `uid` = %d LIMIT 1",
78 intval(remote_user()),
79 intval($page_owner_uid)
83 $visitor = remote_user();
89 notice( t('Permission denied.') . EOL );
93 $r = q("SELECT `contact`.*, `user`.`nickname` FROM `contact` LEFT JOIN `user` ON `user`.`uid` = `contact`.`uid`
94 WHERE `user`.`uid` = %d AND `self` = 1 LIMIT 1",
95 intval($page_owner_uid)
99 notice( t('Contact information unavailable') . EOL);
100 logger('photos_post: unable to locate contact record for page owner. uid=' . $page_owner_uid);
104 $owner_record = $r[0];
107 if(($a->argc > 3) && ($a->argv[2] === 'album')) {
108 $album = hex2bin($a->argv[3]);
110 if($album == t('Profile Photos') || $album == t('Contact Photos')) {
111 goaway($a->get_baseurl() . '/' . $_SESSION['photo_return']);
112 return; // NOTREACHED
115 $r = q("SELECT count(*) FROM `photo` WHERE `album` = '%s' AND `uid` = %d",
117 intval($page_owner_uid)
120 notice( t('Album not found.') . EOL);
121 goaway($a->get_baseurl() . '/' . $_SESSION['photo_return']);
122 return; // NOTREACHED
125 $newalbum = notags(trim($_POST['albumname']));
126 if($newalbum != $album) {
127 q("UPDATE `photo` SET `album` = '%s' WHERE `album` = '%s' AND `uid` = %d",
130 intval($page_owner_uid)
132 $newurl = str_replace(bin2hex($album),bin2hex($newalbum),$_SESSION['photo_return']);
133 goaway($a->get_baseurl() . '/' . $newurl);
134 return; // NOTREACHED
138 if($_POST['dropalbum'] == t('Delete Album')) {
142 // get the list of photos we are about to delete
145 $r = q("SELECT distinct(`resource-id`) as `rid` FROM `photo` WHERE `contact-id` = %d AND `uid` = %d AND `album` = '%s'",
147 intval($page_owner_uid),
152 $r = q("SELECT distinct(`resource-id`) as `rid` FROM `photo` WHERE `uid` = %d AND `album` = '%s'",
153 intval(local_user()),
159 $res[] = "'" . dbesc($rr['rid']) . "'" ;
163 goaway($a->get_baseurl() . '/' . $_SESSION['photo_return']);
164 return; // NOTREACHED
167 $str_res = implode(',', $res);
169 // remove the associated photos
171 q("DELETE FROM `photo` WHERE `resource-id` IN ( $str_res ) AND `uid` = %d",
172 intval($page_owner_uid)
175 // find and delete the corresponding item with all the comments and likes/dislikes
177 $r = q("SELECT `parent-uri` FROM `item` WHERE `resource-id` IN ( $str_res ) AND `uid` = %d",
178 intval($page_owner_uid)
182 q("UPDATE `item` SET `deleted` = 1, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d",
183 dbesc(datetime_convert()),
184 dbesc($rr['parent-uri']),
185 intval($page_owner_uid)
188 $drop_id = intval($rr['id']);
190 // send the notification upstream/downstream as the case may be
193 proc_run('php',"include/notifier.php","drop","$drop_id");
197 goaway($a->get_baseurl() . '/photos/' . $a->data['user']['nickname']);
198 return; // NOTREACHED
201 if(($a->argc > 2) && (x($_POST,'delete')) && ($_POST['delete'] == t('Delete Photo'))) {
203 // same as above but remove single photo
206 $r = q("SELECT `id`, `resource-id` FROM `photo` WHERE `contact-id` = %d AND `uid` = %d AND `resource-id` = '%s' LIMIT 1",
208 intval($page_owner_uid),
213 $r = q("SELECT `id`, `resource-id` FROM `photo` WHERE `uid` = %d AND `resource-id` = '%s' LIMIT 1",
214 intval(local_user()),
219 q("DELETE FROM `photo` WHERE `uid` = %d AND `resource-id` = '%s'",
220 intval($page_owner_uid),
221 dbesc($r[0]['resource-id'])
223 $i = q("SELECT * FROM `item` WHERE `resource-id` = '%s' AND `uid` = %d LIMIT 1",
224 dbesc($r[0]['resource-id']),
225 intval($page_owner_uid)
228 q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d",
229 dbesc(datetime_convert()),
230 dbesc(datetime_convert()),
232 intval($page_owner_uid)
235 $url = $a->get_baseurl();
236 $drop_id = intval($i[0]['id']);
239 proc_run('php',"include/notifier.php","drop","$drop_id");
243 goaway($a->get_baseurl() . '/' . $_SESSION['photo_return']);
244 return; // NOTREACHED
247 if(($a->argc > 2) && ((x($_POST,'desc') !== false) || (x($_POST,'newtag') !== false)) || (x($_POST,'albname') !== false)) {
249 $desc = ((x($_POST,'desc')) ? notags(trim($_POST['desc'])) : '');
250 $rawtags = ((x($_POST,'newtag')) ? notags(trim($_POST['newtag'])) : '');
251 $item_id = ((x($_POST,'item_id')) ? intval($_POST['item_id']) : 0);
252 $albname = ((x($_POST,'albname')) ? notags(trim($_POST['albname'])) : '');
253 $str_group_allow = perms2str($_POST['group_allow']);
254 $str_contact_allow = perms2str($_POST['contact_allow']);
255 $str_group_deny = perms2str($_POST['group_deny']);
256 $str_contact_deny = perms2str($_POST['contact_deny']);
258 $resource_id = $a->argv[2];
260 if(! strlen($albname))
261 $albname = datetime_convert('UTC',date_default_timezone_get(),'now', 'Y');
264 $p = q("SELECT * FROM `photo` WHERE `resource-id` = '%s' AND `uid` = %d ORDER BY `scale` DESC",
266 intval($page_owner_uid)
269 $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",
272 dbesc($str_contact_allow),
273 dbesc($str_group_allow),
274 dbesc($str_contact_deny),
275 dbesc($str_group_deny),
277 intval($page_owner_uid)
281 /* Don't make the item visible if the only change was the album name */
284 if($p[0]['desc'] !== $desc || strlen($rawtags))
289 // Create item container
292 $basename = basename($filename);
293 $uri = item_new_uri($a->get_hostname(),$page_owner_uid);
297 $arr['uid'] = $page_owner_uid;
299 $arr['parent-uri'] = $uri;
300 $arr['type'] = 'photo';
302 $arr['resource-id'] = $p[0]['resource-id'];
303 $arr['contact-id'] = $owner_record['id'];
304 $arr['owner-name'] = $owner_record['name'];
305 $arr['owner-link'] = $owner_record['url'];
306 $arr['owner-avatar'] = $owner_record['thumb'];
307 $arr['author-name'] = $owner_record['name'];
308 $arr['author-link'] = $owner_record['url'];
309 $arr['author-avatar'] = $owner_record['thumb'];
310 $arr['title'] = $title;
311 $arr['allow_cid'] = $p[0]['allow_cid'];
312 $arr['allow_gid'] = $p[0]['allow_gid'];
313 $arr['deny_cid'] = $p[0]['deny_cid'];
314 $arr['deny_gid'] = $p[0]['deny_gid'];
315 $arr['last-child'] = 1;
316 $arr['visible'] = $visibility;
318 $arr['body'] = '[url=' . $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '/image/' . $p[0]['resource-id'] . ']'
319 . '[img]' . $a->get_baseurl() . '/photo/' . $p[0]['resource-id'] . '-' . $p[0]['scale'] . '.jpg' . '[/img]'
322 $item_id = item_store($arr);
327 $r = q("SELECT * FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1",
329 intval($page_owner_uid)
333 $old_tag = $r[0]['tag'];
334 $old_inform = $r[0]['inform'];
337 if(strlen($rawtags)) {
342 // if the new tag doesn't have a namespace specifier (@foo or #foo) give it a hashtag
344 $x = substr($rawtags,0,1);
345 if($x !== '@' && $x !== '#')
346 $rawtags = '#' . $rawtags;
349 $tags = get_tags($rawtags);
352 foreach($tags as $tag) {
353 if(strpos($tag,'@') === 0) {
354 $name = substr($tag,1);
355 if((strpos($name,'@')) || (strpos($name,'http://'))) {
357 $links = @lrdd($name);
359 foreach($links as $link) {
360 if($link['@attributes']['rel'] === 'http://webfinger.net/rel/profile-page')
361 $profile = $link['@attributes']['href'];
362 if($link['@attributes']['rel'] === 'salmon') {
363 $salmon = '$url:' . str_replace(',','%sc',$link['@attributes']['href']);
370 $taginfo[] = array($newname,$profile,$salmon);
374 if(strstr($name,'_')) {
375 $newname = str_replace('_',' ',$name);
376 $r = q("SELECT * FROM `contact` WHERE `name` = '%s' AND `uid` = %d LIMIT 1",
378 intval($page_owner_uid)
382 $r = q("SELECT * FROM `contact` WHERE `nick` = '%s' AND `uid` = %d LIMIT 1",
384 intval($page_owner_uid)
388 $newname = $r[0]['name'];
389 $profile = $r[0]['url'];
390 $notify = 'cid:' . $r[0]['id'];
397 if(substr($notify,0,4) === 'cid:')
398 $taginfo[] = array($newname,$profile,$notify,$r[0],'@[url=' . str_replace(',','%2c',$profile) . ']' . $newname . '[/url]');
400 $taginfo[] = array($newname,$profile,$notify,null,$str_tags .= '@[url=' . $profile . ']' . $newname . '[/url]');
401 if(strlen($str_tags))
403 $profile = str_replace(',','%2c',$profile);
404 $str_tags .= '@[url=' . $profile . ']' . $newname . '[/url]';
411 if(strlen($newtag) && strlen($str_tags))
413 $newtag .= $str_tags;
415 $newinform = $old_inform;
416 if(strlen($newinform) && strlen($inform))
418 $newinform .= $inform;
420 $r = q("UPDATE `item` SET `tag` = '%s', `inform` = '%s', `edited` = '%s', `changed` = '%s' WHERE `id` = %d AND `uid` = %d LIMIT 1",
423 dbesc(datetime_convert()),
424 dbesc(datetime_convert()),
426 intval($page_owner_uid)
430 foreach($p as $scales) {
431 if(intval($scales['scale']) == 2) {
435 if(intval($scales['scale']) == 4) {
441 if(count($taginfo)) {
442 foreach($taginfo as $tagged) {
444 $uri = item_new_uri($a->get_hostname(),$page_owner_uid);
448 $arr['uid'] = $page_owner_uid;
450 $arr['parent-uri'] = $uri;
451 $arr['type'] = 'activity';
453 $arr['contact-id'] = $owner_record['id'];
454 $arr['owner-name'] = $owner_record['name'];
455 $arr['owner-link'] = $owner_record['url'];
456 $arr['owner-avatar'] = $owner_record['thumb'];
457 $arr['author-name'] = $owner_record['name'];
458 $arr['author-link'] = $owner_record['url'];
459 $arr['author-avatar'] = $owner_record['thumb'];
461 $arr['allow_cid'] = $p[0]['allow_cid'];
462 $arr['allow_gid'] = $p[0]['allow_gid'];
463 $arr['deny_cid'] = $p[0]['deny_cid'];
464 $arr['deny_gid'] = $p[0]['deny_gid'];
465 $arr['last-child'] = 1;
467 $arr['verb'] = ACTIVITY_TAG;
468 $arr['object-type'] = ACTIVITY_OBJ_PERSON;
469 $arr['target-type'] = ACTIVITY_OBJ_PHOTO;
470 $arr['tag'] = $tagged[4];
471 $arr['inform'] = $tagged[2];
473 $arr['body'] = '[url=' . $tagged[1] . ']' . $tagged[0] . '[/url]' . ' ' . t('was tagged in a') . ' ' . '[url=' . $a->get_baseurl() . '/photos/' . $owner_record['nickname'] . '/image/' . $p[0]['resource-id'] . ']' . t('photo') . '[/url]' . ' ' . t('by') . ' ' . '[url=' . $owner_record['url'] . ']' . $owner_record['name'] . '[/url]' ;
474 $arr['body'] .= "\n\n" . '[url=' . $a->get_baseurl() . '/photos/' . $owner_record['nickname'] . '/image/' . $p[0]['resource-id'] . ']' . '[img]' . $a->get_baseurl() . "/photo/" . $p[0]['resource-id'] . '-' . $best . '.jpg' . '[/img][/url]' . "\n" ;
476 $arr['object'] = '<object><type>' . ACTIVITY_OBJ_PERSON . '</type><title>' . $tagged[0] . '</title><id>' . $tagged[1] . '/' . $tagged[0] . '</id>';
477 $arr['object'] .= '<link>' . xmlify('<link rel="alternate" type="text/html" href="' . $tagged[1] . '" />' . "\n");
479 $arr['object'] .= xmlify('<link rel="photo" type="image/jpeg" href="' . $tagged[3]['photo'] . '" />' . "\n");
480 $arr['object'] .= '</link></object>' . "\n";
482 $arr['target'] = '<target><type>' . ACTIVITY_OBJ_PHOTO . '</type><title>' . $p[0]['desc'] . '</title><id>'
483 . $a->get_baseurl() . '/photos/' . $owner_record['nickname'] . '/image/' . $p[0]['resource-id'] . '</id>';
484 $arr['target'] .= '<link>' . xmlify('<link rel="alternate" type="text/html" href="' . $a->get_baseurl() . '/photos/' . $owner_record['nickname'] . '/image/' . $p[0]['resource-id'] . '" />' . "\n" . '<link rel="preview" type="image/jpeg" href="' . $a->get_baseurl() . "/photo/" . $p[0]['resource-id'] . '-' . $best . '.jpg' . '" />') . '</link></target>';
486 $item_id = item_store($arr);
488 proc_run('php',"include/notifier.php","tag","$item_id");
494 goaway($a->get_baseurl() . '/' . $_SESSION['photo_return']);
495 return; // NOTREACHED
500 * default post action - upload a photo
503 call_hooks('photo_post_init', $_POST);
506 * Determine the album to use
509 $album = notags(trim($_REQUEST['album']));
510 $newalbum = notags(trim($_REQUEST['newalbum']));
512 logger('mod/photos.php: photos_post(): album= ' . $album . ' newalbum= ' . $newalbum , 'LOGGER_DEBUG');
514 if(! strlen($album)) {
515 if(strlen($newalbum))
518 $album = datetime_convert('UTC',date_default_timezone_get(),'now', 'Y');
523 * We create a wall item for every photo, but we don't want to
524 * overwhelm the data stream with a hundred newly uploaded photos.
525 * So we will make one photo (the first one uploaded to this album)
526 * visible by default, the rest will become visible over time when and if
527 * they acquire comments, likes, dislikes, and/or tags
531 $r = q("SELECT * FROM `photo` WHERE `album` = '%s' AND `uid` = %d",
533 intval($page_owner_uid)
535 if((! count($r)) || ($album == t('Profile Photos')))
540 $str_group_allow = perms2str(((is_array($_REQUEST['group_allow'])) ? $_REQUEST['group_allow'] : explode(',',$_REQUEST['group_allow'])));
541 $str_contact_allow = perms2str(((is_array($_REQUEST['contact_allow'])) ? $_REQUEST['contact_allow'] : explode(',',$_REQUEST['contact_allow'])));
542 $str_group_deny = perms2str(((is_array($_REQUEST['group_deny'])) ? $_REQUEST['group_deny'] : explode(',',$_REQUEST['group_deny'])));
543 $str_contact_deny = perms2str(((is_array($_REQUEST['contact_deny'])) ? $_REQUEST['contact_deny'] : explode(',',$_REQUEST['contact_deny'])));
545 $ret = array('src' => '', 'filename' => '', 'filesize' => 0);
547 call_hooks('photo_post_file',$ret);
549 if(x($ret,'src') && x($ret,'filesize')) {
551 $filename = $ret['filename'];
552 $filesize = $ret['filesize'];
555 $src = $_FILES['userfile']['tmp_name'];
556 $filename = basename($_FILES['userfile']['name']);
557 $filesize = intval($_FILES['userfile']['size']);
560 $maximagesize = get_config('system','maximagesize');
562 if(($maximagesize) && ($filesize > $maximagesize)) {
563 notice( t('Image exceeds size limit of ') . $maximagesize . EOL);
568 logger('mod/photos.php: photos_post(): loading the contents of ' . $src , 'LOGGER_DEBUG');
570 $imagedata = @file_get_contents($src);
571 $ph = new Photo($imagedata);
573 if(! $ph->is_valid()) {
574 logger('mod/photos.php: photos_post(): unable to process image' , 'LOGGER_DEBUG');
575 notice( t('Unable to process image.') . EOL );
582 $width = $ph->getWidth();
583 $height = $ph->getHeight();
587 $photo_hash = photo_new_resource();
589 $r = $ph->store($page_owner_uid, $visitor, $photo_hash, $filename, $album, 0 , 0, $str_contact_allow, $str_group_allow, $str_contact_deny, $str_group_deny);
592 logger('mod/photos.php: photos_post(): image store failed' , 'LOGGER_DEBUG');
593 notice( t('Image upload failed.') . EOL );
597 if($width > 640 || $height > 640) {
598 $ph->scaleImage(640);
599 $ph->store($page_owner_uid, $visitor, $photo_hash, $filename, $album, 1, 0, $str_contact_allow, $str_group_allow, $str_contact_deny, $str_group_deny);
603 if($width > 320 || $height > 320) {
604 $ph->scaleImage(320);
605 $ph->store($page_owner_uid, $visitor, $photo_hash, $filename, $album, 2, 0, $str_contact_allow, $str_group_allow, $str_contact_deny, $str_group_deny);
609 $basename = basename($filename);
610 $uri = item_new_uri($a->get_hostname(), $page_owner_uid);
612 // Create item container
616 $arr['uid'] = $page_owner_uid;
618 $arr['parent-uri'] = $uri;
619 $arr['type'] = 'photo';
621 $arr['resource-id'] = $photo_hash;
622 $arr['contact-id'] = $owner_record['id'];
623 $arr['owner-name'] = $owner_record['name'];
624 $arr['owner-link'] = $owner_record['url'];
625 $arr['owner-avatar'] = $owner_record['thumb'];
626 $arr['author-name'] = $owner_record['name'];
627 $arr['author-link'] = $owner_record['url'];
628 $arr['author-avatar'] = $owner_record['thumb'];
630 $arr['allow_cid'] = $str_contact_allow;
631 $arr['allow_gid'] = $str_group_allow;
632 $arr['deny_cid'] = $str_contact_deny;
633 $arr['deny_gid'] = $str_group_deny;
634 $arr['last-child'] = 1;
635 $arr['visible'] = $visible;
636 $arr['body'] = '[url=' . $a->get_baseurl() . '/photos/' . $owner_record['nickname'] . '/image/' . $photo_hash . ']'
637 . '[img]' . $a->get_baseurl() . "/photo/{$photo_hash}-{$smallest}.jpg" . '[/img]'
640 $item_id = item_store($arr);
642 call_hooks('photo_post_end',intval($item_id));
644 // addon uploaders should call "killme()" [e.g. exit] within the photo_post_end hook
645 // if they do not wish to be redirected
647 goaway($a->get_baseurl() . '/' . $_SESSION['photo_return']);
653 function photos_content(&$a) {
657 // photos/name/upload
658 // photos/name/album/xxxxx
659 // photos/name/album/xxxxx/edit
660 // photos/name/image/xxxxx
661 // photos/name/image/xxxxx/edit
664 if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
665 notice( t('Public access denied.') . EOL);
670 require_once('include/bbcode.php');
671 require_once('include/security.php');
672 require_once('include/conversation.php');
674 if(! x($a->data,'user')) {
675 notice( t('No photos selected') . EOL );
679 $_SESSION['photo_return'] = $a->cmd;
686 $datatype = $a->argv[2];
687 $datum = $a->argv[3];
689 elseif(($a->argc > 2) && ($a->argv[2] === 'upload'))
690 $datatype = 'upload';
692 $datatype = 'summary';
700 // Setup permissions structures
706 $remote_contact = false;
708 $owner_uid = $a->data['user']['uid'];
710 $community_page = (($a->data['user']['page-flags'] == PAGE_COMMUNITY) ? true : false);
712 if((local_user()) && (local_user() == $owner_uid))
715 if($community_page && remote_user()) {
716 $r = q("SELECT `uid` FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `id` = %d AND `uid` = %d LIMIT 1",
717 intval(remote_user()),
723 $remote_contact = true;
724 $visitor = remote_user();
729 // perhaps they're visiting - but not a community page, so they wouldn't have write access
731 if(remote_user() && (! $visitor)) {
732 $contact_id = $_SESSION['visitor_id'];
733 $groups = init_groups_visitor($contact_id);
734 $r = q("SELECT * FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `id` = %d AND `uid` = %d LIMIT 1",
735 intval(remote_user()),
740 $remote_contact = true;
744 if(! $remote_contact) {
746 $contact_id = $_SESSION['cid'];
747 $contact = $a->contact;
751 // default permissions - anonymous user
753 $sql_extra = " AND `allow_cid` = '' AND `allow_gid` = '' AND `deny_cid` = '' AND `deny_gid` = '' ";
755 // Profile owner - everything is visible
757 if(local_user() && (local_user() == $owner_uid)) {
760 elseif(remote_user()) {
761 // authenticated visitor - here lie dragons
762 $gs = '<<>>'; // should be impossible to match
764 foreach($groups as $g)
765 $gs .= '|<' . intval($g) . '>';
767 $sql_extra = sprintf(
768 " AND ( `allow_cid` = '' OR `allow_cid` REGEXP '<%d>' )
769 AND ( `deny_cid` = '' OR NOT `deny_cid` REGEXP '<%d>' )
770 AND ( `allow_gid` = '' OR `allow_gid` REGEXP '%s' )
771 AND ( `deny_gid` = '' OR NOT `deny_gid` REGEXP '%s') ",
773 intval(remote_user()),
774 intval(remote_user()),
785 if($datatype === 'upload') {
787 notice( t('Permission denied.'));
790 $albumselect = '<select id="photos-upload-album-select" name="album" size="4">';
792 $albumselect .= '<option value="" selected="selected" > </option>';
793 if(count($a->data['albums'])) {
794 foreach($a->data['albums'] as $album) {
795 if(($album['album'] === '') || ($album['album'] == t('Contact Photos')))
797 $albumselect .= '<option value="' . $album['album'] . '">' . $album['album'] . '</option>';
801 $celeb = ((($a->user['page-flags'] == PAGE_SOAPBOX) || ($a->user['page-flags'] == PAGE_COMMUNITY)) ? true : false);
803 $albumselect .= '</select>';
807 $ret = array('post_url' => $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'],
808 'addon_text' => $uploader,
809 'default_upload' => true);
812 call_hooks('photo_upload_form',$ret);
814 $default_upload = '<input type="file" name="userfile" /> <div class="photos-upload-submit-wrapper" >
815 <input type="submit" name="submit" value="' . t('Submit') . '" id="photos-upload-submit" /> </div>';
820 $tpl = load_view_file('view/photos_upload.tpl');
821 $o .= replace_macros($tpl,array(
822 '$pagename' => t('Upload Photos'),
823 '$sessid' => session_id(),
824 '$nickname' => $a->data['user']['nickname'],
825 '$newalbum' => t('New album name: '),
826 '$existalbumtext' => t('or existing album name: '),
827 '$albumselect' => $albumselect,
828 '$permissions' => t('Permissions'),
829 '$aclselect' => (($visitor) ? '' : populate_acl($a->user, $celeb)),
830 '$uploader' => $ret['addon_text'],
831 '$default' => (($ret['default_upload']) ? $default_upload : ''),
832 '$uploadurl' => $ret['post_url']
839 if($datatype === 'album') {
841 $album = hex2bin($datum);
843 $r = q("SELECT `resource-id`, max(`scale`) AS `scale` FROM `photo` WHERE `uid` = %d AND `album` = '%s'
844 $sql_extra GROUP BY `resource-id`",
849 $a->set_pager_total(count($r));
850 $a->set_pager_itemspage(20);
853 $r = q("SELECT `resource-id`, `id`, `filename`, max(`scale`) AS `scale`, `desc` FROM `photo` WHERE `uid` = %d AND `album` = '%s'
854 $sql_extra GROUP BY `resource-id` ORDER BY `created` DESC LIMIT %d , %d",
857 intval($a->pager['start']),
858 intval($a->pager['itemspage'])
861 $o .= '<h3>' . $album . '</h3>';
863 if($cmd === 'edit') {
864 if(($album != t('Profile Photos')) && ($album != t('Contact Photos'))) {
866 $edit_tpl = load_view_file('view/album_edit.tpl');
867 $o .= replace_macros($edit_tpl,array(
868 '$nametext' => t('New album name: '),
869 '$nickname' => $a->data['user']['nickname'],
871 '$hexalbum' => bin2hex($album),
872 '$submit' => t('Submit'),
873 '$dropsubmit' => t('Delete Album')
879 if(($album != t('Profile Photos')) && ($album != t('Contact Photos'))) {
881 $o .= '<div id="album-edit-link"><a href="'. $a->get_baseurl() . '/photos/'
882 . $a->data['user']['nickname'] . '/album/' . bin2hex($album) . '/edit' . '">'
883 . t('Edit Album') . '</a></div>';
887 $tpl = load_view_file('view/photo_album.tpl');
890 $o .= replace_macros($tpl,array(
892 '$photolink' => $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '/image/' . $rr['resource-id'],
893 '$phototitle' => t('View Photo'),
894 '$imgsrc' => $a->get_baseurl() . '/photo/' . $rr['resource-id'] . '-' . $rr['scale'] . '.jpg',
895 '$imgalt' => $rr['filename'],
896 '$desc'=> $rr['desc']
900 $o .= '<div id="photo-album-end"></div>';
908 if($datatype === 'image') {
913 // fetch image, item containing image, then comments
915 $ph = q("SELECT * FROM `photo` WHERE `uid` = %d AND `resource-id` = '%s'
916 $sql_extra ORDER BY `scale` ASC ",
922 notice( t('Photo not available') . EOL );
929 $prvnxt = q("SELECT `resource-id` FROM `photo` WHERE `album` = '%s' AND `uid` = %d AND `scale` = 0
930 $sql_extra ORDER BY `created` DESC ",
931 dbesc($ph[0]['album']),
936 for($z = 0; $z < count($prvnxt); $z++) {
937 if($prvnxt[$z]['resource-id'] == $ph[0]['resource-id']) {
941 $prv = count($prvnxt) - 1;
942 if($nxt >= count($prvnxt))
947 $prevlink = $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '/image/' . $prvnxt[$prv]['resource-id'] ;
948 $nextlink = $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '/image/' . $prvnxt[$nxt]['resource-id'] ;
953 $hires = $lores = $ph[0];
955 if($ph[1]['scale'] == 2) {
956 // original is 640 or less, we can display it directly
957 $hires = $lores = $ph[0];
965 $album_link = $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '/album/' . bin2hex($ph[0]['album']);
969 if($can_post && ($ph[0]['uid'] == $owner_uid)) {
971 'edit' => array($a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '/image/' . $datum . '/edit', t('Edit photo')),
972 'profile'=>array($a->get_baseurl() . '/profile_photo/use/'.$ph[0]['resource-id'], t('Use as profile photo')),
976 $lock = ( ( ($ph[0]['uid'] == local_user()) && (strlen($ph[0]['allow_cid']) || strlen($ph[0]['allow_gid'])
977 || strlen($ph[0]['deny_cid']) || strlen($ph[0]['deny_gid'])) )
978 ? t('Private Message')
985 $prevlink = array($prevlink, t('<< Prev')) ;
988 'href' => $a->get_baseurl() . '/photo/' . $hires['resource-id'] . '-' . $hires['scale'] . '.jpg',
989 'title'=> t('View Full Size'),
990 'src' => $a->get_baseurl() . '/photo/' . $lores['resource-id'] . '-' . $lores['scale'] . '.jpg'
994 $nextlink = array($nextlink, t('Next >>'));
997 // Do we have an item for this photo?
999 $linked_items = q("SELECT * FROM `item` WHERE `resource-id` = '%s' $sql_extra LIMIT 1",
1002 if(count($linked_items)) {
1003 $link_item = $linked_items[0];
1004 $r = q("SELECT COUNT(*) AS `total`
1005 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
1006 WHERE `parent-uri` = '%s' AND `uri` != '%s' AND `item`.`deleted` = 0
1007 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
1008 AND `item`.`uid` = %d
1010 dbesc($link_item['uri']),
1011 dbesc($link_item['uri']),
1012 intval($link_item['uid'])
1017 $a->set_pager_total($r[0]['total']);
1020 $r = q("SELECT `item`.*, `item`.`id` AS `item_id`,
1021 `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`network`,
1022 `contact`.`rel`, `contact`.`thumb`, `contact`.`self`,
1023 `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
1024 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
1025 WHERE `parent-uri` = '%s' AND `uri` != '%s' AND `item`.`deleted` = 0
1026 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
1027 AND `item`.`uid` = %d
1029 ORDER BY `parent` DESC, `id` ASC LIMIT %d ,%d ",
1030 dbesc($link_item['uri']),
1031 dbesc($link_item['uri']),
1032 intval($link_item['uid']),
1033 intval($a->pager['start']),
1034 intval($a->pager['itemspage'])
1038 if((local_user()) && (local_user() == $link_item['uid'])) {
1039 q("UPDATE `item` SET `unseen` = 0 WHERE `parent` = %d and `uid` = %d",
1040 intval($link_item['parent']),
1041 intval(local_user())
1047 if(count($linked_items) && strlen($link_item['tag'])) {
1048 $arr = explode(',',$link_item['tag']);
1049 // parse tags and add links
1051 foreach($arr as $t) {
1052 if(strlen($tag_str))
1054 $tag_str .= bbcode($t);
1056 $tags = array(t('Tags: '), $tag_str);
1058 $tags[] = $a->get_baseurl() . '/tagrm/' . $link_item['id'];
1059 $tags[] = t('[Remove any tag]');
1064 if(($cmd === 'edit') && ($can_post)) {
1065 $edit_tpl = load_view_file('view/photo_edit.tpl');
1066 $edit = replace_macros($edit_tpl, array(
1067 '$id' => $ph[0]['id'],
1068 '$album' => $ph[0]['album'],
1069 '$newalbum' => t('New album name'),
1070 '$nickname' => $a->data['user']['nickname'],
1071 '$resource_id' => $ph[0]['resource-id'],
1072 '$capt_label' => t('Caption'),
1073 '$caption' => $ph[0]['desc'],
1074 '$tag_label' => t('Add a Tag'),
1075 '$tags' => $link_item['tag'],
1076 '$permissions' => t('Permissions'),
1077 '$aclselect' => populate_acl($ph[0]),
1078 '$help_tags' => t('Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'),
1079 '$item_id' => ((count($linked_items)) ? $link_item['id'] : 0),
1080 '$submit' => t('Submit'),
1081 '$delete' => t('Delete Photo')
1085 if(count($linked_items)) {
1087 $cmnt_tpl = load_view_file('view/comment_item.tpl');
1088 $tpl = load_view_file('view/photo_item.tpl');
1089 $return_url = $a->cmd;
1091 $like_tpl = load_view_file('view/like_noshare.tpl');
1095 if($can_post || can_write_wall($a,$owner_uid)) {
1096 $likebuttons = replace_macros($like_tpl,array(
1097 '$id' => $link_item['id'],
1098 '$likethis' => t("I like this \x28toggle\x29"),
1099 '$nolike' => t("I don't like this \x28toggle\x29"),
1100 '$share' => t('Share'),
1101 '$wait' => t('Please wait')
1107 if($can_post || can_write_wall($a,$owner_uid)) {
1108 if($link_item['last-child']) {
1109 $comments .= replace_macros($cmnt_tpl,array(
1110 '$return_path' => '',
1111 '$jsreload' => $return_url,
1112 '$type' => 'wall-comment',
1113 '$id' => $link_item['id'],
1114 '$parent' => $link_item['id'],
1115 '$profile_uid' => $owner_uid,
1116 '$mylink' => $contact['url'],
1117 '$mytitle' => t('This is you'),
1118 '$myphoto' => $contact['thumb'],
1119 '$comment' => t('Comment'),
1120 '$submit' => t('Submit'),
1136 foreach($r as $item) {
1137 like_puller($a,$item,$alike,'like');
1138 like_puller($a,$item,$dlike,'dislike');
1141 $like = ((isset($alike[$link_item['id']])) ? format_like($alike[$link_item['id']],$alike[$link_item['id'] . '-l'],'like',$link_item['id']) : '');
1142 $dislike = ((isset($dlike[$link_item['id']])) ? format_like($dlike[$link_item['id']],$dlike[$link_item['id'] . '-l'],'dislike',$link_item['id']) : '');
1146 if($can_post || can_write_wall($a,$owner_uid)) {
1147 if($link_item['last-child']) {
1148 $comments .= replace_macros($cmnt_tpl,array(
1149 '$return_path' => '',
1150 '$jsreload' => $return_url,
1151 '$type' => 'wall-comment',
1152 '$id' => $link_item['id'],
1153 '$parent' => $link_item['id'],
1154 '$profile_uid' => $owner_uid,
1155 '$mylink' => $contact['url'],
1156 '$mytitle' => t('This is you'),
1157 '$myphoto' => $contact['thumb'],
1164 foreach($r as $item) {
1169 if(((activity_match($item['verb'],ACTIVITY_LIKE)) || (activity_match($item['verb'],ACTIVITY_DISLIKE))) && ($item['id'] != $item['parent']))
1172 $redirect_url = $a->get_baseurl() . '/redir/' . $item['cid'] ;
1174 if($can_post || can_write_wall($a,$owner_uid)) {
1176 if($item['last-child']) {
1177 $comments .= replace_macros($cmnt_tpl,array(
1178 '$return_path' => '',
1179 '$jsreload' => $return_url,
1180 '$type' => 'wall-comment',
1181 '$id' => $item['item_id'],
1182 '$parent' => $item['parent'],
1183 '$profile_uid' => $owner_uid,
1184 '$mylink' => $contact['url'],
1185 '$mytitle' => t('This is you'),
1186 '$myphoto' => $contact['thumb'],
1193 if(local_user() && ($item['contact-uid'] == local_user())
1194 && ($item['network'] == 'dfrn') && (! $item['self'] )) {
1195 $profile_url = $redirect_url;
1196 $sparkle = ' sparkle';
1199 $profile_url = $item['url'];
1203 $diff_author = (($item['url'] !== $item['author-link']) ? true : false);
1205 $profile_name = (((strlen($item['author-name'])) && $diff_author) ? $item['author-name'] : $item['name']);
1206 $profile_avatar = (((strlen($item['author-avatar'])) && $diff_author) ? $item['author-avatar'] : $item['thumb']);
1208 $profile_link = $profile_url;
1212 if(($item['contact-id'] == remote_user()) || ($item['uid'] == local_user()))
1213 $drop = replace_macros(load_view_file('view/wall_item_drop.tpl'), array('$id' => $item['id'], '$delete' => t('Delete')));
1216 $comments .= replace_macros($template,array(
1217 '$id' => $item['item_id'],
1218 '$profile_url' => $profile_link,
1219 '$name' => $profile_name,
1220 '$thumb' => $profile_avatar,
1221 '$sparkle' => $sparkle,
1222 '$title' => $item['title'],
1223 '$body' => bbcode($item['body']),
1224 '$ago' => relative_date($item['created']),
1225 '$indent' => (($item['parent'] != $item['item_id']) ? ' comment' : ''),
1227 '$comment' => $comment
1232 $paginate = paginate($a);
1235 $photo_tpl = load_view_file('view/photo_view.tpl');
1236 $o .= replace_macros($photo_tpl, array(
1237 '$id' => $ph[0]['id'],
1238 '$album' => array($album_link,$ph[0]['album']),
1242 '$prevlink' => $prevlink,
1243 '$nextlink' => $nextlink,
1244 '$desc' => $ph[0]['desc'],
1247 '$likebuttons' => $likebuttons,
1249 '$dislike' => $dislike,
1250 '$comments' => $comments,
1251 '$paginate' => $paginate,
1257 // Default - show recent photos with upload link (if applicable)
1260 $r = q("SELECT `resource-id`, max(`scale`) AS `scale` FROM `photo` WHERE `uid` = %d AND `album` != '%s'
1261 $sql_extra GROUP BY `resource-id`",
1262 intval($a->data['user']['uid']),
1263 dbesc( t('Contact Photos'))
1266 $a->set_pager_total(count($r));
1267 $a->set_pager_itemspage(20);
1270 $r = q("SELECT `resource-id`, `id`, `filename`, `album`, max(`scale`) AS `scale` FROM `photo`
1271 WHERE `uid` = %d AND `album` != '%s'
1272 $sql_extra GROUP BY `resource-id` ORDER BY `created` DESC LIMIT %d , %d",
1273 intval($a->data['user']['uid']),
1274 dbesc( t('Contact Photos')),
1275 intval($a->pager['start']),
1276 intval($a->pager['itemspage'])
1279 $o .= '<h3>' . t('Recent Photos') . '</h3>';
1282 $o .= '<div id="photo-top-links"><a id="photo-top-upload-link" href="'. $a->get_baseurl() . '/photos/'
1283 . $a->data['user']['nickname'] . '/upload' . '">' . t('Upload New Photos') . '</a></div>';
1286 $tpl = load_view_file('view/photo_top.tpl');
1288 foreach($r as $rr) {
1289 $o .= replace_macros($tpl,array(
1291 '$photolink' => $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '/image/' . $rr['resource-id'],
1292 '$phototitle' => t('View Photo'),
1293 '$imgsrc' => $a->get_baseurl() . '/photo/' . $rr['resource-id'] . '-' . ((($rr['scale']) == 6) ? 4 : $rr['scale']) . '.jpg',
1294 '$albumlink' => $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '/album/' . bin2hex($rr['album']),
1295 '$albumname' => $rr['album'],
1296 '$albumalt' => t('View Album'),
1297 '$imgalt' => $rr['filename']
1301 $o .= '<div id="photo-top-end"></div>';