4 function profiles_init(&$a) {
6 nav_set_selected('profiles');
12 if(($a->argc > 2) && ($a->argv[1] === "drop") && intval($a->argv[2])) {
13 $r = q("SELECT * FROM `profile` WHERE `id` = %d AND `uid` = %d AND `is-default` = 0 LIMIT 1",
18 notice( t('Profile not found.') . EOL);
19 goaway($a->get_baseurl(true) . '/profiles');
23 check_form_security_token_redirectOnErr('/profiles', 'profile_drop', 't');
25 // move every contact using this profile as their default to the user default
27 $r = q("UPDATE `contact` SET `profile-id` = (SELECT `profile`.`id` AS `profile-id` FROM `profile` WHERE `profile`.`is-default` = 1 AND `profile`.`uid` = %d LIMIT 1) WHERE `profile-id` = %d AND `uid` = %d ",
32 $r = q("DELETE FROM `profile` WHERE `id` = %d AND `uid` = %d",
37 info( t('Profile deleted.') . EOL);
39 goaway($a->get_baseurl(true) . '/profiles');
47 if(($a->argc > 1) && ($a->argv[1] === 'new')) {
49 check_form_security_token_redirectOnErr('/profiles', 'profile_new', 't');
51 $r0 = q("SELECT `id` FROM `profile` WHERE `uid` = %d",
52 intval(local_user()));
53 $num_profiles = count($r0);
55 $name = t('Profile-') . ($num_profiles + 1);
57 $r1 = q("SELECT `name`, `photo`, `thumb` FROM `profile` WHERE `uid` = %d AND `is-default` = 1 LIMIT 1",
58 intval(local_user()));
60 $r2 = q("INSERT INTO `profile` (`uid` , `profile-name` , `name`, `photo`, `thumb`)
61 VALUES ( %d, '%s', '%s', '%s', '%s' )",
64 dbesc($r1[0]['name']),
65 dbesc($r1[0]['photo']),
66 dbesc($r1[0]['thumb'])
69 $r3 = q("SELECT `id` FROM `profile` WHERE `uid` = %d AND `profile-name` = '%s' LIMIT 1",
74 info( t('New profile created.') . EOL);
76 goaway($a->get_baseurl(true) . '/profiles/' . $r3[0]['id']);
78 goaway($a->get_baseurl(true) . '/profiles');
81 if(($a->argc > 2) && ($a->argv[1] === 'clone')) {
83 check_form_security_token_redirectOnErr('/profiles', 'profile_clone', 't');
85 $r0 = q("SELECT `id` FROM `profile` WHERE `uid` = %d",
86 intval(local_user()));
87 $num_profiles = count($r0);
89 $name = t('Profile-') . ($num_profiles + 1);
90 $r1 = q("SELECT * FROM `profile` WHERE `uid` = %d AND `id` = %d LIMIT 1",
95 notice( t('Profile unavailable to clone.') . EOL);
100 $r1[0]['is-default'] = 0;
101 $r1[0]['publish'] = 0;
102 $r1[0]['net-publish'] = 0;
103 $r1[0]['profile-name'] = dbesc($name);
107 $r2 = dbq("INSERT INTO `profile` (`"
108 . implode("`, `", array_keys($r1[0]))
110 . implode("', '", array_values($r1[0]))
113 $r3 = q("SELECT `id` FROM `profile` WHERE `uid` = %d AND `profile-name` = '%s' LIMIT 1",
114 intval(local_user()),
117 info( t('New profile created.') . EOL);
119 goaway($a->get_baseurl(true) . '/profiles/' . $r3[0]['id']);
121 goaway($a->get_baseurl(true) . '/profiles');
123 return; // NOTREACHED
127 if(($a->argc > 1) && (intval($a->argv[1]))) {
128 $r = q("SELECT id FROM `profile` WHERE `id` = %d AND `uid` = %d LIMIT 1",
133 notice( t('Profile not found.') . EOL);
138 profile_load($a,$a->user['nickname'],$r[0]['id']);
145 function profile_clean_keywords($keywords) {
146 $keywords = str_replace(","," ",$keywords);
147 $keywords = explode(" ", $keywords);
150 foreach ($keywords as $keyword) {
151 $keyword = trim(strtolower($keyword));
152 $keyword = trim($keyword, "#");
154 $cleaned[] = $keyword;
157 $keywords = implode(", ", $cleaned);
162 function profiles_post(&$a) {
165 notice( t('Permission denied.') . EOL);
169 $namechanged = false;
171 call_hooks('profile_post', $_POST);
173 if(($a->argc > 1) && ($a->argv[1] !== "new") && intval($a->argv[1])) {
174 $orig = q("SELECT * FROM `profile` WHERE `id` = %d AND `uid` = %d LIMIT 1",
179 notice( t('Profile not found.') . EOL);
183 check_form_security_token_redirectOnErr('/profiles', 'profile_edit');
185 $is_default = (($orig[0]['is-default']) ? 1 : 0);
187 $profile_name = notags(trim($_POST['profile_name']));
188 if(! strlen($profile_name)) {
189 notice( t('Profile Name is required.') . EOL);
193 $year = intval($_POST['year']);
194 if($year < 1900 || $year > 2100 || $year < 0)
196 $month = intval($_POST['month']);
197 if(($month > 12) || ($month < 0))
199 $mtab = array(0,31,29,31,30,31,30,31,31,30,31,30,31);
200 $day = intval($_POST['day']);
201 if(($day > $mtab[$month]) || ($day < 0))
204 // It's OK to have an empty (0) year, but if you supplied a year you have to have a non-zero month and day
205 if($year && ! $month)
211 $dob = sprintf('%04d-%02d-%02d',$year,$month,$day);
214 $name = notags(trim($_POST['name']));
216 if(! strlen($name)) {
220 if($orig[0]['name'] != $name)
225 $pdesc = notags(trim($_POST['pdesc']));
226 $gender = notags(trim($_POST['gender']));
227 $address = notags(trim($_POST['address']));
228 $locality = notags(trim($_POST['locality']));
229 $region = notags(trim($_POST['region']));
230 $postal_code = notags(trim($_POST['postal_code']));
231 $country_name = notags(trim($_POST['country_name']));
232 $pub_keywords = profile_clean_keywords(notags(trim($_POST['pub_keywords'])));
233 $prv_keywords = profile_clean_keywords(notags(trim($_POST['prv_keywords'])));
234 $marital = notags(trim($_POST['marital']));
235 $howlong = notags(trim($_POST['howlong']));
237 $with = ((x($_POST,'with')) ? notags(trim($_POST['with'])) : '');
239 if(! strlen($howlong))
240 $howlong = '0000-00-00 00:00:00';
242 $howlong = datetime_convert(date_default_timezone_get(),'UTC',$howlong);
244 // linkify the relationship target if applicable
246 $withchanged = false;
249 if($with != strip_tags($orig[0]['with'])) {
253 if(strpos($lookup,'@') === 0)
254 $lookup = substr($lookup,1);
255 $lookup = str_replace('_',' ', $lookup);
256 if(strpos($lookup,'@') || (strpos($lookup,'http://'))) {
258 $links = @lrdd($lookup);
260 foreach($links as $link) {
261 if($link['@attributes']['rel'] === 'http://webfinger.net/rel/profile-page') {
262 $prf = $link['@attributes']['href'];
269 /* if(strstr($lookup,' ')) {
270 $r = q("SELECT * FROM `contact` WHERE `name` = '%s' AND `uid` = %d LIMIT 1",
276 $r = q("SELECT * FROM `contact` WHERE `nick` = '%s' AND `uid` = %d LIMIT 1",
282 $r = q("SELECT * FROM `contact` WHERE `name` = '%s' AND `uid` = %d LIMIT 1",
287 $r = q("SELECT * FROM `contact` WHERE `nick` = '%s' AND `uid` = %d LIMIT 1",
294 $newname = $r[0]['name'];
299 $with = str_replace($lookup,'<a href="' . $prf . '">' . $newname . '</a>', $with);
300 if(strpos($with,'@') === 0)
301 $with = substr($with,1);
305 $with = $orig[0]['with'];
308 $sexual = notags(trim($_POST['sexual']));
309 $homepage = notags(trim($_POST['homepage']));
310 if ((strpos($homepage, 'http') !== 0) && (strlen($homepage))) {
311 // neither http nor https in URL, add them
312 $homepage = 'http://'.$homepage;
314 $hometown = notags(trim($_POST['hometown']));
315 $politic = notags(trim($_POST['politic']));
316 $religion = notags(trim($_POST['religion']));
318 $likes = fix_mce_lf(escape_tags(trim($_POST['likes'])));
319 $dislikes = fix_mce_lf(escape_tags(trim($_POST['dislikes'])));
321 $about = fix_mce_lf(escape_tags(trim($_POST['about'])));
322 $interest = fix_mce_lf(escape_tags(trim($_POST['interest'])));
323 $contact = fix_mce_lf(escape_tags(trim($_POST['contact'])));
324 $music = fix_mce_lf(escape_tags(trim($_POST['music'])));
325 $book = fix_mce_lf(escape_tags(trim($_POST['book'])));
326 $tv = fix_mce_lf(escape_tags(trim($_POST['tv'])));
327 $film = fix_mce_lf(escape_tags(trim($_POST['film'])));
328 $romance = fix_mce_lf(escape_tags(trim($_POST['romance'])));
329 $work = fix_mce_lf(escape_tags(trim($_POST['work'])));
330 $education = fix_mce_lf(escape_tags(trim($_POST['education'])));
332 $hide_friends = (($_POST['hide-friends'] == 1) ? 1: 0);
339 if($marital != $orig[0]['marital']) {
340 $changes[] = '[color=#ff0000]♥[/color] ' . t('Marital Status');
344 $changes[] = '[color=#ff0000]♥[/color] ' . t('Romantic Partner');
345 $value = strip_tags($with);
347 if($likes != $orig[0]['likes']) {
348 $changes[] = t('Likes');
351 if($dislikes != $orig[0]['dislikes']) {
352 $changes[] = t('Dislikes');
355 if($work != $orig[0]['work']) {
356 $changes[] = t('Work/Employment');
358 if($religion != $orig[0]['religion']) {
359 $changes[] = t('Religion');
362 if($politic != $orig[0]['politic']) {
363 $changes[] = t('Political Views');
366 if($gender != $orig[0]['gender']) {
367 $changes[] = t('Gender');
370 if($sexual != $orig[0]['sexual']) {
371 $changes[] = t('Sexual Preference');
374 if($homepage != $orig[0]['homepage']) {
375 $changes[] = t('Homepage');
378 if($interest != $orig[0]['interest']) {
379 $changes[] = t('Interests');
382 if($address != $orig[0]['address']) {
383 $changes[] = t('Address');
384 // New address not sent in notifications, potential privacy issues
385 // in case this leaks to unintended recipients. Yes, it's in the public
386 // profile but that doesn't mean we have to broadcast it to everybody.
388 if($locality != $orig[0]['locality'] || $region != $orig[0]['region']
389 || $country_name != $orig[0]['country-name']) {
390 $changes[] = t('Location');
391 $comma1 = ((($locality) && ($region || $country_name)) ? ', ' : ' ');
392 $comma2 = (($region && $country_name) ? ', ' : '');
393 $value = $locality . $comma1 . $region . $comma2 . $country_name;
396 profile_activity($changes,$value);
400 $r = q("UPDATE `profile`
401 SET `profile-name` = '%s',
409 `postal-code` = '%s',
410 `country-name` = '%s',
419 `pub_keywords` = '%s',
420 `prv_keywords` = '%s',
434 WHERE `id` = %d AND `uid` = %d",
435 dbesc($profile_name),
444 dbesc($country_name),
453 dbesc($pub_keywords),
454 dbesc($prv_keywords),
467 intval($hide_friends),
473 info( t('Profile updated.') . EOL);
476 if($namechanged && $is_default) {
477 $r = q("UPDATE `contact` SET `name-date` = '%s' WHERE `self` = 1 AND `uid` = %d",
478 dbesc(datetime_convert()),
481 $r = q("UPDATE `user` set `username` = '%s' where `uid` = %d",
489 $r = q("UPDATE `contact` SET `about` = '%s', `location` = '%s', `keywords` = '%s', `gender` = '%s' WHERE `self` = 1 AND `uid` = %d",
492 dbesc($pub_keywords),
497 // Update global directory in background
498 $url = $_SESSION['my_url'];
499 if($url && strlen(get_config('system','directory_submit_url')))
500 proc_run('php',"include/directory.php","$url");
502 require_once('include/profile_update.php');
509 function profile_activity($changed, $value) {
512 if(! local_user() || ! is_array($changed) || ! count($changed))
515 if($a->user['hidewall'] || get_config('system','block_public'))
518 if(! get_pconfig(local_user(),'system','post_profilechange'))
521 require_once('include/items.php');
523 $self = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
531 $arr['uri'] = $arr['parent-uri'] = item_new_uri($a->get_hostname(), local_user());
532 $arr['uid'] = local_user();
533 $arr['contact-id'] = $self[0]['id'];
535 $arr['type'] = 'wall';
538 $arr['author-name'] = $arr['owner-name'] = $self[0]['name'];
539 $arr['author-link'] = $arr['owner-link'] = $self[0]['url'];
540 $arr['author-avatar'] = $arr['owner-avatar'] = $self[0]['thumb'];
541 $arr['verb'] = ACTIVITY_UPDATE;
542 $arr['object-type'] = ACTIVITY_OBJ_PROFILE;
544 $A = '[url=' . $self[0]['url'] . ']' . $self[0]['name'] . '[/url]';
548 $t = count($changed);
550 foreach($changed as $ch) {
551 if(strlen($changes)) {
553 $changes .= t(' and ');
561 $prof = '[url=' . $self[0]['url'] . '?tab=profile' . ']' . t('public profile') . '[/url]';
563 if($t == 1 && strlen($value)) {
564 $message = sprintf( t('%1$s changed %2$s to “%3$s”'), $A, $changes, $value);
565 $message .= "\n\n" . sprintf( t(' - Visit %1$s\'s %2$s'), $A, $prof);
568 $message = sprintf( t('%1$s has an updated %2$s, changing %3$s.'), $A, $prof, $changes);
571 $arr['body'] = $message;
573 $arr['object'] = '<object><type>' . ACTIVITY_OBJ_PROFILE . '</type><title>' . $self[0]['name'] . '</title>'
574 . '<id>' . $self[0]['url'] . '/' . $self[0]['name'] . '</id>';
575 $arr['object'] .= '<link>' . xmlify('<link rel="alternate" type="text/html" href="' . $self[0]['url'] . '?tab=profile' . '" />' . "\n");
576 $arr['object'] .= xmlify('<link rel="photo" type="image/jpeg" href="' . $self[0]['thumb'] . '" />' . "\n");
577 $arr['object'] .= '</link></object>' . "\n";
578 $arr['last-child'] = 1;
580 $arr['allow_cid'] = $a->user['allow_cid'];
581 $arr['allow_gid'] = $a->user['allow_gid'];
582 $arr['deny_cid'] = $a->user['deny_cid'];
583 $arr['deny_gid'] = $a->user['deny_gid'];
585 $i = item_store($arr);
588 // give it a permanent link
589 //q("update item set plink = '%s' where id = %d",
590 // dbesc($a->get_baseurl() . '/display/' . $a->user['nickname'] . '/' . $i),
594 proc_run('php',"include/notifier.php","activity","$i");
600 function profiles_content(&$a) {
603 notice( t('Permission denied.') . EOL);
609 if(($a->argc > 1) && (intval($a->argv[1]))) {
610 $r = q("SELECT * FROM `profile` WHERE `id` = %d AND `uid` = %d LIMIT 1",
615 notice( t('Profile not found.') . EOL);
619 require_once('include/profile_selectors.php');
622 /* $editselect = 'textareas';
623 if( intval(get_pconfig(local_user(),'system','plaintext')) || !feature_enabled(local_user(),'richtext') )
624 $editselect = 'none';*/
625 $editselect = 'none';
626 if( feature_enabled(local_user(),'richtext') )
627 $editselect = 'textareas';
629 $a->page['htmlhead'] .= replace_macros(get_markup_template('profed_head.tpl'), array(
630 '$baseurl' => $a->get_baseurl(true),
631 '$editselect' => $editselect,
633 $a->page['end'] .= replace_macros(get_markup_template('profed_end.tpl'), array(
634 '$baseurl' => $a->get_baseurl(true),
635 '$editselect' => $editselect,
639 $opt_tpl = get_markup_template("profile-hide-friends.tpl");
640 $hide_friends = replace_macros($opt_tpl,array(
642 'hide-friends', //Name
643 t('Hide contacts and friends:'), //Label
644 !!$r[0]['hide-friends'], //Value
646 array(t('No'),t('Yes')) //Off - On strings
648 '$desc' => t('Hide your contact/friend list from viewers of this profile?'),
649 '$yes_str' => t('Yes'),
650 '$no_str' => t('No'),
651 '$yes_selected' => (($r[0]['hide-friends']) ? " checked=\"checked\" " : ""),
652 '$no_selected' => (($r[0]['hide-friends'] == 0) ? " checked=\"checked\" " : "")
658 $f = get_config('system','birthday_input_format');
662 $is_default = (($r[0]['is-default']) ? 1 : 0);
663 $tpl = get_markup_template("profile_edit.tpl");
664 $o .= replace_macros($tpl,array(
665 '$multi_profiles' => feature_enabled(local_user(),'multi_profiles'),
666 '$form_security_token' => get_form_security_token("profile_edit"),
667 '$form_security_token_photo' => get_form_security_token("profile_photo"),
668 '$profile_clone_link' => 'profiles/clone/' . $r[0]['id'] . '?t=' . get_form_security_token("profile_clone"),
669 '$profile_drop_link' => 'profiles/drop/' . $r[0]['id'] . '?t=' . get_form_security_token("profile_drop"),
670 '$banner' => t('Edit Profile Details'),
671 '$submit' => t('Submit'),
672 '$profpic' => t('Change Profile Photo'),
673 '$viewprof' => t('View this profile'),
674 '$cr_prof' => t('Create a new profile using these settings'),
675 '$cl_prof' => t('Clone this profile'),
676 '$del_prof' => t('Delete this profile'),
677 '$lbl_basic_section' => t('Basic information'),
678 '$lbl_picture_section' => t('Profile picture'),
679 '$lbl_location_section' => t('Location'),
680 '$lbl_preferences_section' => t('Preferences'),
681 '$lbl_status_section' => t('Status information'),
682 '$lbl_about_section' => t('Additional information'),
683 '$lbl_interests_section' => t('Interests'),
684 '$lbl_profile_photo' => t('Upload Profile Photo'),
685 '$lbl_profname' => t('Profile Name:'),
686 '$lbl_fullname' => t('Your Full Name:'),
687 '$lbl_title' => t('Title/Description:'),
688 '$lbl_gender' => t('Your Gender:'),
689 '$lbl_bd' => sprintf( t("Birthday \x28%s\x29:"),datesel_format($f)),
690 '$lbl_address' => t('Street Address:'),
691 '$lbl_city' => t('Locality/City:'),
692 '$lbl_zip' => t('Postal/Zip Code:'),
693 '$lbl_country' => t('Country:'),
694 '$lbl_region' => t('Region/State:'),
695 '$lbl_marital' => t('<span class="heart">♥</span> Marital Status:'),
696 '$lbl_with' => t("Who: \x28if applicable\x29"),
697 '$lbl_ex1' => t('Examples: cathy123, Cathy Williams, cathy@example.com'),
698 '$lbl_howlong' => t('Since [date]:'),
699 '$lbl_sexual' => t('Sexual Preference:'),
700 '$lbl_homepage' => t('Homepage URL:'),
701 '$lbl_hometown' => t('Hometown:'),
702 '$lbl_politic' => t('Political Views:'),
703 '$lbl_religion' => t('Religious Views:'),
704 '$lbl_pubkey' => t('Public Keywords:'),
705 '$lbl_prvkey' => t('Private Keywords:'),
706 '$lbl_likes' => t('Likes:'),
707 '$lbl_dislikes' => t('Dislikes:'),
708 '$lbl_ex2' => t('Example: fishing photography software'),
709 '$lbl_pubdsc' => t("\x28Used for suggesting potential friends, can be seen by others\x29"),
710 '$lbl_prvdsc' => t("\x28Used for searching profiles, never shown to others\x29"),
711 '$lbl_about' => t('Tell us about yourself...'),
712 '$lbl_hobbies' => t('Hobbies/Interests'),
713 '$lbl_social' => t('Contact information and Social Networks'),
714 '$lbl_music' => t('Musical interests'),
715 '$lbl_book' => t('Books, literature'),
716 '$lbl_tv' => t('Television'),
717 '$lbl_film' => t('Film/dance/culture/entertainment'),
718 '$lbl_love' => t('Love/romance'),
719 '$lbl_work' => t('Work/employment'),
720 '$lbl_school' => t('School/education'),
721 '$disabled' => (($is_default) ? 'onclick="return false;" style="color: #BBBBFF;"' : ''),
722 '$baseurl' => $a->get_baseurl(true),
723 '$profile_id' => $r[0]['id'],
724 '$profile_name' => $r[0]['profile-name'],
725 '$default' => (($is_default) ? '<p id="profile-edit-default-desc">' . t('This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet.') . '</p>' : ""),
726 '$name' => $r[0]['name'],
727 '$pdesc' => $r[0]['pdesc'],
728 '$dob' => dob($r[0]['dob']),
729 '$hide_friends' => $hide_friends,
730 '$address' => $r[0]['address'],
731 '$locality' => $r[0]['locality'],
732 '$region' => $r[0]['region'],
733 '$postal_code' => $r[0]['postal-code'],
734 '$country_name' => $r[0]['country-name'],
735 '$age' => ((intval($r[0]['dob'])) ? '(' . t('Age: ') . age($r[0]['dob'],$a->user['timezone'],$a->user['timezone']) . ')' : ''),
736 '$gender' => gender_selector($r[0]['gender']),
737 '$marital' => marital_selector($r[0]['marital']),
738 '$with' => strip_tags($r[0]['with']),
739 '$howlong' => ($r[0]['howlong'] === '0000-00-00 00:00:00' ? '' : datetime_convert('UTC',date_default_timezone_get(),$r[0]['howlong'])),
740 '$sexual' => sexpref_selector($r[0]['sexual']),
741 '$about' => $r[0]['about'],
742 '$homepage' => $r[0]['homepage'],
743 '$hometown' => $r[0]['hometown'],
744 '$politic' => $r[0]['politic'],
745 '$religion' => $r[0]['religion'],
746 '$pub_keywords' => $r[0]['pub_keywords'],
747 '$prv_keywords' => $r[0]['prv_keywords'],
748 '$likes' => $r[0]['likes'],
749 '$dislikes' => $r[0]['dislikes'],
750 '$music' => $r[0]['music'],
751 '$book' => $r[0]['book'],
752 '$tv' => $r[0]['tv'],
753 '$film' => $r[0]['film'],
754 '$interest' => $r[0]['interest'],
755 '$romance' => $r[0]['romance'],
756 '$work' => $r[0]['work'],
757 '$education' => $r[0]['education'],
758 '$contact' => $r[0]['contact']
761 $arr = array('profile' => $r[0], 'entry' => $o);
762 call_hooks('profile_edit', $arr);
770 //If we don't support multi profiles, don't display this list.
771 if(!feature_enabled(local_user(),'multi_profiles')){
773 "SELECT * FROM `profile` WHERE `uid` = %d AND `is-default`=1",
777 //Go to the default profile.
778 goaway($a->get_baseurl(true) . '/profiles/'.$r[0]['id']);
782 $r = q("SELECT * FROM `profile` WHERE `uid` = %d",
786 $tpl_header = get_markup_template('profile_listing_header.tpl');
787 $o .= replace_macros($tpl_header,array(
788 '$header' => t('Edit/Manage Profiles'),
789 '$chg_photo' => t('Change profile photo'),
790 '$cr_new' => t('Create New Profile'),
791 '$cr_new_link' => 'profiles/new?t=' . get_form_security_token("profile_new")
795 $tpl = get_markup_template('profile_entry.tpl');
798 $o .= replace_macros($tpl, array(
799 '$photo' => $a->get_cached_avatar_image($rr['thumb']),
801 '$alt' => t('Profile Image'),
802 '$profile_name' => $rr['profile-name'],
803 '$visible' => (($rr['is-default']) ? '<strong>' . t('visible to everybody') . '</strong>'
804 : '<a href="' . $a->get_baseurl(true) . '/profperm/' . $rr['id'] . '" />' . t('Edit visibility') . '</a>')