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 $dob = $_POST['dob'] ? escape_tags(trim($_POST['dob'])) : '0000-00-00'; // FIXME: Needs to be validated?
195 $y = substr($dob,0,4);
196 if((! ctype_digit($y)) || ($y < 1900))
199 $ignore_year = false;
200 if($dob != '0000-00-00') {
201 if(strpos($dob,'0000-') === 0) {
203 $dob = substr($dob,5);
205 $dob = datetime_convert('UTC','UTC',(($ignore_year) ? '1900-' . $dob : $dob),(($ignore_year) ? 'm-d' : 'Y-m-d'));
207 $dob = '0000-' . $dob;
210 $name = notags(trim($_POST['name']));
212 if(! strlen($name)) {
216 if($orig[0]['name'] != $name)
221 $pdesc = notags(trim($_POST['pdesc']));
222 $gender = notags(trim($_POST['gender']));
223 $address = notags(trim($_POST['address']));
224 $locality = notags(trim($_POST['locality']));
225 $region = notags(trim($_POST['region']));
226 $postal_code = notags(trim($_POST['postal_code']));
227 $country_name = notags(trim($_POST['country_name']));
228 $pub_keywords = profile_clean_keywords(notags(trim($_POST['pub_keywords'])));
229 $prv_keywords = profile_clean_keywords(notags(trim($_POST['prv_keywords'])));
230 $marital = notags(trim($_POST['marital']));
231 $howlong = notags(trim($_POST['howlong']));
233 $with = ((x($_POST,'with')) ? notags(trim($_POST['with'])) : '');
235 if(! strlen($howlong))
236 $howlong = '0000-00-00 00:00:00';
238 $howlong = datetime_convert(date_default_timezone_get(),'UTC',$howlong);
240 // linkify the relationship target if applicable
242 $withchanged = false;
245 if($with != strip_tags($orig[0]['with'])) {
249 if(strpos($lookup,'@') === 0)
250 $lookup = substr($lookup,1);
251 $lookup = str_replace('_',' ', $lookup);
252 if(strpos($lookup,'@') || (strpos($lookup,'http://'))) {
254 $links = @lrdd($lookup);
256 foreach($links as $link) {
257 if($link['@attributes']['rel'] === 'http://webfinger.net/rel/profile-page') {
258 $prf = $link['@attributes']['href'];
265 /* if(strstr($lookup,' ')) {
266 $r = q("SELECT * FROM `contact` WHERE `name` = '%s' AND `uid` = %d LIMIT 1",
272 $r = q("SELECT * FROM `contact` WHERE `nick` = '%s' AND `uid` = %d LIMIT 1",
278 $r = q("SELECT * FROM `contact` WHERE `name` = '%s' AND `uid` = %d LIMIT 1",
283 $r = q("SELECT * FROM `contact` WHERE `nick` = '%s' AND `uid` = %d LIMIT 1",
290 $newname = $r[0]['name'];
295 $with = str_replace($lookup,'<a href="' . $prf . '">' . $newname . '</a>', $with);
296 if(strpos($with,'@') === 0)
297 $with = substr($with,1);
301 $with = $orig[0]['with'];
304 $sexual = notags(trim($_POST['sexual']));
305 $homepage = notags(trim($_POST['homepage']));
306 if ((strpos($homepage, 'http') !== 0) && (strlen($homepage))) {
307 // neither http nor https in URL, add them
308 $homepage = 'http://'.$homepage;
310 $hometown = notags(trim($_POST['hometown']));
311 $politic = notags(trim($_POST['politic']));
312 $religion = notags(trim($_POST['religion']));
314 $likes = fix_mce_lf(escape_tags(trim($_POST['likes'])));
315 $dislikes = fix_mce_lf(escape_tags(trim($_POST['dislikes'])));
317 $about = fix_mce_lf(escape_tags(trim($_POST['about'])));
318 $interest = fix_mce_lf(escape_tags(trim($_POST['interest'])));
319 $contact = fix_mce_lf(escape_tags(trim($_POST['contact'])));
320 $music = fix_mce_lf(escape_tags(trim($_POST['music'])));
321 $book = fix_mce_lf(escape_tags(trim($_POST['book'])));
322 $tv = fix_mce_lf(escape_tags(trim($_POST['tv'])));
323 $film = fix_mce_lf(escape_tags(trim($_POST['film'])));
324 $romance = fix_mce_lf(escape_tags(trim($_POST['romance'])));
325 $work = fix_mce_lf(escape_tags(trim($_POST['work'])));
326 $education = fix_mce_lf(escape_tags(trim($_POST['education'])));
328 $hide_friends = (($_POST['hide-friends'] == 1) ? 1: 0);
335 if($marital != $orig[0]['marital']) {
336 $changes[] = '[color=#ff0000]♥[/color] ' . t('Marital Status');
340 $changes[] = '[color=#ff0000]♥[/color] ' . t('Romantic Partner');
341 $value = strip_tags($with);
343 if($likes != $orig[0]['likes']) {
344 $changes[] = t('Likes');
347 if($dislikes != $orig[0]['dislikes']) {
348 $changes[] = t('Dislikes');
351 if($work != $orig[0]['work']) {
352 $changes[] = t('Work/Employment');
354 if($religion != $orig[0]['religion']) {
355 $changes[] = t('Religion');
358 if($politic != $orig[0]['politic']) {
359 $changes[] = t('Political Views');
362 if($gender != $orig[0]['gender']) {
363 $changes[] = t('Gender');
366 if($sexual != $orig[0]['sexual']) {
367 $changes[] = t('Sexual Preference');
370 if($homepage != $orig[0]['homepage']) {
371 $changes[] = t('Homepage');
374 if($interest != $orig[0]['interest']) {
375 $changes[] = t('Interests');
378 if($address != $orig[0]['address']) {
379 $changes[] = t('Address');
380 // New address not sent in notifications, potential privacy issues
381 // in case this leaks to unintended recipients. Yes, it's in the public
382 // profile but that doesn't mean we have to broadcast it to everybody.
384 if($locality != $orig[0]['locality'] || $region != $orig[0]['region']
385 || $country_name != $orig[0]['country-name']) {
386 $changes[] = t('Location');
387 $comma1 = ((($locality) && ($region || $country_name)) ? ', ' : ' ');
388 $comma2 = (($region && $country_name) ? ', ' : '');
389 $value = $locality . $comma1 . $region . $comma2 . $country_name;
392 profile_activity($changes,$value);
396 $r = q("UPDATE `profile`
397 SET `profile-name` = '%s',
405 `postal-code` = '%s',
406 `country-name` = '%s',
415 `pub_keywords` = '%s',
416 `prv_keywords` = '%s',
430 WHERE `id` = %d AND `uid` = %d",
431 dbesc($profile_name),
440 dbesc($country_name),
449 dbesc($pub_keywords),
450 dbesc($prv_keywords),
463 intval($hide_friends),
469 info( t('Profile updated.') . EOL);
472 if($namechanged && $is_default) {
473 $r = q("UPDATE `contact` SET `name-date` = '%s' WHERE `self` = 1 AND `uid` = %d",
474 dbesc(datetime_convert()),
477 $r = q("UPDATE `user` set `username` = '%s' where `uid` = %d",
484 $location = $locality;
490 $location .= $region;
493 if ($country_name != "") {
497 $location .= $country_name;
500 $r = q("UPDATE `contact` SET `about` = '%s', `location` = '%s', `keywords` = '%s', `gender` = '%s' WHERE `self` = 1 AND `uid` = %d",
503 dbesc($pub_keywords),
508 // Update global directory in background
509 $url = $_SESSION['my_url'];
510 if($url && strlen(get_config('system','directory_submit_url')))
511 proc_run('php',"include/directory.php","$url");
513 require_once('include/profile_update.php');
520 function profile_activity($changed, $value) {
523 if(! local_user() || ! is_array($changed) || ! count($changed))
526 if($a->user['hidewall'] || get_config('system','block_public'))
529 if(! get_pconfig(local_user(),'system','post_profilechange'))
532 require_once('include/items.php');
534 $self = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
542 $arr['uri'] = $arr['parent-uri'] = item_new_uri($a->get_hostname(), local_user());
543 $arr['uid'] = local_user();
544 $arr['contact-id'] = $self[0]['id'];
546 $arr['type'] = 'wall';
549 $arr['author-name'] = $arr['owner-name'] = $self[0]['name'];
550 $arr['author-link'] = $arr['owner-link'] = $self[0]['url'];
551 $arr['author-avatar'] = $arr['owner-avatar'] = $self[0]['thumb'];
552 $arr['verb'] = ACTIVITY_UPDATE;
553 $arr['object-type'] = ACTIVITY_OBJ_PROFILE;
555 $A = '[url=' . $self[0]['url'] . ']' . $self[0]['name'] . '[/url]';
559 $t = count($changed);
561 foreach($changed as $ch) {
562 if(strlen($changes)) {
564 $changes .= t(' and ');
572 $prof = '[url=' . $self[0]['url'] . '?tab=profile' . ']' . t('public profile') . '[/url]';
574 if($t == 1 && strlen($value)) {
575 $message = sprintf( t('%1$s changed %2$s to “%3$s”'), $A, $changes, $value);
576 $message .= "\n\n" . sprintf( t(' - Visit %1$s\'s %2$s'), $A, $prof);
579 $message = sprintf( t('%1$s has an updated %2$s, changing %3$s.'), $A, $prof, $changes);
582 $arr['body'] = $message;
584 $arr['object'] = '<object><type>' . ACTIVITY_OBJ_PROFILE . '</type><title>' . $self[0]['name'] . '</title>'
585 . '<id>' . $self[0]['url'] . '/' . $self[0]['name'] . '</id>';
586 $arr['object'] .= '<link>' . xmlify('<link rel="alternate" type="text/html" href="' . $self[0]['url'] . '?tab=profile' . '" />' . "\n");
587 $arr['object'] .= xmlify('<link rel="photo" type="image/jpeg" href="' . $self[0]['thumb'] . '" />' . "\n");
588 $arr['object'] .= '</link></object>' . "\n";
589 $arr['last-child'] = 1;
591 $arr['allow_cid'] = $a->user['allow_cid'];
592 $arr['allow_gid'] = $a->user['allow_gid'];
593 $arr['deny_cid'] = $a->user['deny_cid'];
594 $arr['deny_gid'] = $a->user['deny_gid'];
596 $i = item_store($arr);
599 // give it a permanent link
600 //q("update item set plink = '%s' where id = %d",
601 // dbesc($a->get_baseurl() . '/display/' . $a->user['nickname'] . '/' . $i),
605 proc_run('php',"include/notifier.php","activity","$i");
611 function profiles_content(&$a) {
614 notice( t('Permission denied.') . EOL);
620 if(($a->argc > 1) && (intval($a->argv[1]))) {
621 $r = q("SELECT * FROM `profile` WHERE `id` = %d AND `uid` = %d LIMIT 1",
626 notice( t('Profile not found.') . EOL);
630 require_once('include/profile_selectors.php');
633 /* $editselect = 'textareas';
634 if( intval(get_pconfig(local_user(),'system','plaintext')) || !feature_enabled(local_user(),'richtext') )
635 $editselect = 'none';*/
636 $editselect = 'none';
637 if( feature_enabled(local_user(),'richtext') )
638 $editselect = 'textareas';
640 $a->page['htmlhead'] .= replace_macros(get_markup_template('profed_head.tpl'), array(
641 '$baseurl' => $a->get_baseurl(true),
642 '$editselect' => $editselect,
644 $a->page['end'] .= replace_macros(get_markup_template('profed_end.tpl'), array(
645 '$baseurl' => $a->get_baseurl(true),
646 '$editselect' => $editselect,
650 $opt_tpl = get_markup_template("profile-hide-friends.tpl");
651 $hide_friends = replace_macros($opt_tpl,array(
653 'hide-friends', //Name
654 t('Hide contacts and friends:'), //Label
655 !!$r[0]['hide-friends'], //Value
657 array(t('No'),t('Yes')) //Off - On strings
659 '$desc' => t('Hide your contact/friend list from viewers of this profile?'),
660 '$yes_str' => t('Yes'),
661 '$no_str' => t('No'),
662 '$yes_selected' => (($r[0]['hide-friends']) ? " checked=\"checked\" " : ""),
663 '$no_selected' => (($r[0]['hide-friends'] == 0) ? " checked=\"checked\" " : "")
669 $f = get_config('system','birthday_input_format');
673 $is_default = (($r[0]['is-default']) ? 1 : 0);
674 $tpl = get_markup_template("profile_edit.tpl");
675 $o .= replace_macros($tpl,array(
676 '$multi_profiles' => feature_enabled(local_user(),'multi_profiles'),
677 '$form_security_token' => get_form_security_token("profile_edit"),
678 '$form_security_token_photo' => get_form_security_token("profile_photo"),
679 '$profile_clone_link' => 'profiles/clone/' . $r[0]['id'] . '?t=' . get_form_security_token("profile_clone"),
680 '$profile_drop_link' => 'profiles/drop/' . $r[0]['id'] . '?t=' . get_form_security_token("profile_drop"),
681 '$banner' => t('Edit Profile Details'),
682 '$submit' => t('Submit'),
683 '$profpic' => t('Change Profile Photo'),
684 '$viewprof' => t('View this profile'),
685 '$cr_prof' => t('Create a new profile using these settings'),
686 '$cl_prof' => t('Clone this profile'),
687 '$del_prof' => t('Delete this profile'),
688 '$lbl_basic_section' => t('Basic information'),
689 '$lbl_picture_section' => t('Profile picture'),
690 '$lbl_location_section' => t('Location'),
691 '$lbl_preferences_section' => t('Preferences'),
692 '$lbl_status_section' => t('Status information'),
693 '$lbl_about_section' => t('Additional information'),
694 '$lbl_interests_section' => t('Interests'),
695 '$lbl_profile_photo' => t('Upload Profile Photo'),
696 '$lbl_profname' => t('Profile Name:'),
697 '$lbl_fullname' => t('Your Full Name:'),
698 '$lbl_title' => t('Title/Description:'),
699 '$lbl_gender' => t('Your Gender:'),
700 '$lbl_bd' => t("Birthday :"),
701 '$lbl_address' => t('Street Address:'),
702 '$lbl_city' => t('Locality/City:'),
703 '$lbl_zip' => t('Postal/Zip Code:'),
704 '$lbl_country' => t('Country:'),
705 '$lbl_region' => t('Region/State:'),
706 '$lbl_marital' => t('<span class="heart">♥</span> Marital Status:'),
707 '$lbl_with' => t("Who: \x28if applicable\x29"),
708 '$lbl_ex1' => t('Examples: cathy123, Cathy Williams, cathy@example.com'),
709 '$lbl_howlong' => t('Since [date]:'),
710 '$lbl_sexual' => t('Sexual Preference:'),
711 '$lbl_homepage' => t('Homepage URL:'),
712 '$lbl_hometown' => t('Hometown:'),
713 '$lbl_politic' => t('Political Views:'),
714 '$lbl_religion' => t('Religious Views:'),
715 '$lbl_pubkey' => t('Public Keywords:'),
716 '$lbl_prvkey' => t('Private Keywords:'),
717 '$lbl_likes' => t('Likes:'),
718 '$lbl_dislikes' => t('Dislikes:'),
719 '$lbl_ex2' => t('Example: fishing photography software'),
720 '$lbl_pubdsc' => t("\x28Used for suggesting potential friends, can be seen by others\x29"),
721 '$lbl_prvdsc' => t("\x28Used for searching profiles, never shown to others\x29"),
722 '$lbl_about' => t('Tell us about yourself...'),
723 '$lbl_hobbies' => t('Hobbies/Interests'),
724 '$lbl_social' => t('Contact information and Social Networks'),
725 '$lbl_music' => t('Musical interests'),
726 '$lbl_book' => t('Books, literature'),
727 '$lbl_tv' => t('Television'),
728 '$lbl_film' => t('Film/dance/culture/entertainment'),
729 '$lbl_love' => t('Love/romance'),
730 '$lbl_work' => t('Work/employment'),
731 '$lbl_school' => t('School/education'),
732 '$disabled' => (($is_default) ? 'onclick="return false;" style="color: #BBBBFF;"' : ''),
733 '$baseurl' => $a->get_baseurl(true),
734 '$profile_id' => $r[0]['id'],
735 '$profile_name' => $r[0]['profile-name'],
736 '$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>' : ""),
737 '$name' => $r[0]['name'],
738 '$pdesc' => $r[0]['pdesc'],
739 '$dob' => dob($r[0]['dob']),
740 '$hide_friends' => $hide_friends,
741 '$address' => $r[0]['address'],
742 '$locality' => $r[0]['locality'],
743 '$region' => $r[0]['region'],
744 '$postal_code' => $r[0]['postal-code'],
745 '$country_name' => $r[0]['country-name'],
746 '$age' => ((intval($r[0]['dob'])) ? '(' . t('Age: ') . age($r[0]['dob'],$a->user['timezone'],$a->user['timezone']) . ')' : ''),
747 '$gender' => gender_selector($r[0]['gender']),
748 '$marital' => marital_selector($r[0]['marital']),
749 '$with' => strip_tags($r[0]['with']),
750 '$howlong' => ($r[0]['howlong'] === '0000-00-00 00:00:00' ? '' : datetime_convert('UTC',date_default_timezone_get(),$r[0]['howlong'])),
751 '$sexual' => sexpref_selector($r[0]['sexual']),
752 '$about' => $r[0]['about'],
753 '$homepage' => $r[0]['homepage'],
754 '$hometown' => $r[0]['hometown'],
755 '$politic' => $r[0]['politic'],
756 '$religion' => $r[0]['religion'],
757 '$pub_keywords' => $r[0]['pub_keywords'],
758 '$prv_keywords' => $r[0]['prv_keywords'],
759 '$likes' => $r[0]['likes'],
760 '$dislikes' => $r[0]['dislikes'],
761 '$music' => $r[0]['music'],
762 '$book' => $r[0]['book'],
763 '$tv' => $r[0]['tv'],
764 '$film' => $r[0]['film'],
765 '$interest' => $r[0]['interest'],
766 '$romance' => $r[0]['romance'],
767 '$work' => $r[0]['work'],
768 '$education' => $r[0]['education'],
769 '$contact' => $r[0]['contact']
772 $arr = array('profile' => $r[0], 'entry' => $o);
773 call_hooks('profile_edit', $arr);
781 //If we don't support multi profiles, don't display this list.
782 if(!feature_enabled(local_user(),'multi_profiles')){
784 "SELECT * FROM `profile` WHERE `uid` = %d AND `is-default`=1",
788 //Go to the default profile.
789 goaway($a->get_baseurl(true) . '/profiles/'.$r[0]['id']);
793 $r = q("SELECT * FROM `profile` WHERE `uid` = %d",
797 $tpl_header = get_markup_template('profile_listing_header.tpl');
798 $o .= replace_macros($tpl_header,array(
799 '$header' => t('Edit/Manage Profiles'),
800 '$chg_photo' => t('Change profile photo'),
801 '$cr_new' => t('Create New Profile'),
802 '$cr_new_link' => 'profiles/new?t=' . get_form_security_token("profile_new")
806 $tpl = get_markup_template('profile_entry.tpl');
809 $o .= replace_macros($tpl, array(
810 '$photo' => $a->get_cached_avatar_image($rr['thumb']),
812 '$alt' => t('Profile Image'),
813 '$profile_name' => $rr['profile-name'],
814 '$visible' => (($rr['is-default']) ? '<strong>' . t('visible to everybody') . '</strong>'
815 : '<a href="' . $a->get_baseurl(true) . '/profperm/' . $rr['id'] . '" />' . t('Edit visibility') . '</a>')