4 function profiles_post(&$a) {
7 notice( t('Permission denied.') . EOL);
13 call_hooks('profile_post', $_POST);
15 if(($a->argc > 1) && ($a->argv[1] !== "new") && intval($a->argv[1])) {
16 $orig = q("SELECT * FROM `profile` WHERE `id` = %d AND `uid` = %d LIMIT 1",
21 notice( t('Profile not found.') . EOL);
25 check_form_security_token_redirectOnErr('/profiles', 'profile_edit');
27 $is_default = (($orig[0]['is-default']) ? 1 : 0);
29 $profile_name = notags(trim($_POST['profile_name']));
30 if(! strlen($profile_name)) {
31 notify( t('Profile Name is required.') . EOL);
35 $year = intval($_POST['year']);
36 if($year < 1900 || $year > 2100 || $year < 0)
38 $month = intval($_POST['month']);
39 if(($month > 12) || ($month < 0))
41 $mtab = array(0,31,29,31,30,31,30,31,31,30,31,30,31);
42 $day = intval($_POST['day']);
43 if(($day > $mtab[$month]) || ($day < 0))
46 $dob = sprintf('%04d-%02d-%02d',$year,$month,$day);
49 $name = notags(trim($_POST['name']));
55 if($orig[0]['name'] != $name)
60 $pdesc = notags(trim($_POST['pdesc']));
61 $gender = notags(trim($_POST['gender']));
62 $address = notags(trim($_POST['address']));
63 $locality = notags(trim($_POST['locality']));
64 $region = notags(trim($_POST['region']));
65 $postal_code = notags(trim($_POST['postal_code']));
66 $country_name = notags(trim($_POST['country_name']));
67 $pub_keywords = notags(trim($_POST['pub_keywords']));
68 $prv_keywords = notags(trim($_POST['prv_keywords']));
69 $marital = notags(trim($_POST['marital']));
70 $howlong = notags(trim($_POST['howlong']));
72 $with = ((x($_POST,'with')) ? notags(trim($_POST['with'])) : '');
74 if(! strlen($howlong))
75 $howlong = '0000-00-00 00:00:00';
77 $howlong = datetime_convert(date_default_timezone_get(),'UTC',$howlong);
79 // linkify the relationship target if applicable
84 if($with != strip_tags($orig[0]['with'])) {
88 if(strpos($lookup,'@') === 0)
89 $lookup = substr($lookup,1);
90 $lookup = str_replace('_',' ', $lookup);
91 if(strpos($lookup,'@') || (strpos($lookup,'http://'))) {
93 $links = @lrdd($lookup);
95 foreach($links as $link) {
96 if($link['@attributes']['rel'] === 'http://webfinger.net/rel/profile-page') {
97 $prf = $link['@attributes']['href'];
104 if(strstr($lookup,' ')) {
105 $r = q("SELECT * FROM `contact` WHERE `name` = '%s' AND `uid` = %d LIMIT 1",
111 $r = q("SELECT * FROM `contact` WHERE `nick` = '%s' AND `uid` = %d LIMIT 1",
118 $newname = $r[0]['name'];
123 $with = str_replace($lookup,'<a href="' . $prf . '">' . $newname . '</a>', $with);
124 if(strpos($with,'@') === 0)
125 $with = substr($with,1);
129 $with = $orig[0]['with'];
132 $sexual = notags(trim($_POST['sexual']));
133 $homepage = notags(trim($_POST['homepage']));
134 $hometown = notags(trim($_POST['hometown']));
135 $politic = notags(trim($_POST['politic']));
136 $religion = notags(trim($_POST['religion']));
138 $likes = fix_mce_lf(escape_tags(trim($_POST['likes'])));
139 $dislikes = fix_mce_lf(escape_tags(trim($_POST['dislikes'])));
141 $about = fix_mce_lf(escape_tags(trim($_POST['about'])));
142 $interest = fix_mce_lf(escape_tags(trim($_POST['interest'])));
143 $contact = fix_mce_lf(escape_tags(trim($_POST['contact'])));
144 $music = fix_mce_lf(escape_tags(trim($_POST['music'])));
145 $book = fix_mce_lf(escape_tags(trim($_POST['book'])));
146 $tv = fix_mce_lf(escape_tags(trim($_POST['tv'])));
147 $film = fix_mce_lf(escape_tags(trim($_POST['film'])));
148 $romance = fix_mce_lf(escape_tags(trim($_POST['romance'])));
149 $work = fix_mce_lf(escape_tags(trim($_POST['work'])));
150 $education = fix_mce_lf(escape_tags(trim($_POST['education'])));
152 $hide_friends = (($_POST['hide-friends'] == 1) ? 1: 0);
159 if($marital != $orig[0]['marital']) {
160 $changes[] = '[color=#ff0000]♥[/color] ' . t('Marital Status');
164 $changes[] = '[color=#ff0000]♥[/color] ' . t('Romantic Partner');
165 $value = strip_tags($with);
167 if($likes != $orig[0]['likes']) {
168 $changes[] = t('Likes');
171 if($dislikes != $orig[0]['dislikes']) {
172 $changes[] = t('Dislikes');
175 if($work != $orig[0]['work']) {
176 $changes[] = t('Work/Employment');
178 if($religion != $orig[0]['religion']) {
179 $changes[] = t('Religion');
182 if($politic != $orig[0]['politic']) {
183 $changes[] = t('Political Views');
186 if($gender != $orig[0]['gender']) {
187 $changes[] = t('Gender');
190 if($sexual != $orig[0]['sexual']) {
191 $changes[] = t('Sexual Preference');
194 if($homepage != $orig[0]['homepage']) {
195 $changes[] = t('Homepage');
198 if($interest != $orig[0]['interest']) {
199 $changes[] = t('Interests');
202 if($address != $orig[0]['address']) {
203 $changes[] = t('Address');
204 // New address not sent in notifications, potential privacy issues
205 // in case this leaks to unintended recipients. Yes, it's in the public
206 // profile but that doesn't mean we have to broadcast it to everybody.
208 if($locality != $orig[0]['locality'] || $region != $orig[0]['region']
209 || $country_name != $orig[0]['country-name']) {
210 $changes[] = t('Location');
211 $comma1 = ((($locality) && ($region || $country_name)) ? ', ' : ' ');
212 $comma2 = (($region && $country_name) ? ', ' : '');
213 $value = $locality . $comma1 . $region . $comma2 . $country_name;
216 profile_activity($changes,$value);
220 $r = q("UPDATE `profile`
221 SET `profile-name` = '%s',
229 `postal-code` = '%s',
230 `country-name` = '%s',
239 `pub_keywords` = '%s',
240 `prv_keywords` = '%s',
254 WHERE `id` = %d AND `uid` = %d LIMIT 1",
255 dbesc($profile_name),
264 dbesc($country_name),
273 dbesc($pub_keywords),
274 dbesc($prv_keywords),
287 intval($hide_friends),
293 info( t('Profile updated.') . EOL);
296 if($namechanged && $is_default) {
297 $r = q("UPDATE `contact` SET `name-date` = '%s' WHERE `self` = 1 AND `uid` = %d LIMIT 1",
298 dbesc(datetime_convert()),
304 // Update global directory in background
305 $url = $_SESSION['my_url'];
306 if($url && strlen(get_config('system','directory_submit_url')))
307 proc_run('php',"include/directory.php","$url");
309 require_once('include/profile_update.php');
316 function profile_activity($changed, $value) {
319 if(! local_user() || ! is_array($changed) || ! count($changed))
322 if($a->user['hidewall'] || get_config('system','block_public'))
325 if(! get_pconfig(local_user(),'system','post_profilechange'))
328 require_once('include/items.php');
330 $self = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
338 $arr['uri'] = $arr['parent-uri'] = item_new_uri($a->get_hostname(), local_user());
339 $arr['uid'] = local_user();
340 $arr['contact-id'] = $self[0]['id'];
342 $arr['type'] = 'wall';
345 $arr['author-name'] = $arr['owner-name'] = $self[0]['name'];
346 $arr['author-link'] = $arr['owner-link'] = $self[0]['url'];
347 $arr['author-avatar'] = $arr['owner-avatar'] = $self[0]['thumb'];
348 $arr['verb'] = ACTIVITY_UPDATE;
349 $arr['object-type'] = ACTIVITY_OBJ_PROFILE;
351 $A = '[url=' . $self[0]['url'] . ']' . $self[0]['name'] . '[/url]';
355 $t = count($changed);
357 foreach($changed as $ch) {
358 if(strlen($changes)) {
360 $changes .= t(' and ');
368 $prof = '[url=' . $self[0]['url'] . '?tab=profile' . ']' . t('public profile') . '[/url]';
370 if($t == 1 && strlen($value)) {
371 $message = sprintf( t('%1$s changed %2$s to “%3$s”'), $A, $changes, $value);
372 $message .= "\n\n" . sprintf( t(' - Visit %1$s\'s %2$s'), $A, $prof);
375 $message = sprintf( t('%1$s has an updated %2$s, changing %3$s.'), $A, $prof, $changes);
378 $arr['body'] = $message;
380 $arr['object'] = '<object><type>' . ACTIVITY_OBJ_PROFILE . '</type><title>' . $self[0]['name'] . '</title>'
381 . '<id>' . $self[0]['url'] . '/' . $self[0]['name'] . '</id>';
382 $arr['object'] .= '<link>' . xmlify('<link rel="alternate" type="text/html" href="' . $self[0]['url'] . '?tab=profile' . '" />' . "\n");
383 $arr['object'] .= xmlify('<link rel="photo" type="image/jpeg" href="' . $self[0]['thumb'] . '" />' . "\n");
384 $arr['object'] .= '</link></object>' . "\n";
385 $arr['last-child'] = 1;
387 $arr['allow_cid'] = $a->user['allow_cid'];
388 $arr['allow_gid'] = $a->user['allow_gid'];
389 $arr['deny_cid'] = $a->user['deny_cid'];
390 $arr['deny_gid'] = $a->user['deny_gid'];
392 $i = item_store($arr);
395 // give it a permanent link
396 q("update item set plink = '%s' where id = %d limit 1",
397 dbesc($a->get_baseurl() . '/display/' . $a->user['nickname'] . '/' . $i),
401 proc_run('php',"include/notifier.php","activity","$i");
407 function profiles_content(&$a) {
410 nav_set_selected('profiles');
413 notice( t('Permission denied.') . EOL);
417 if(($a->argc > 2) && ($a->argv[1] === "drop") && intval($a->argv[2])) {
418 $r = q("SELECT * FROM `profile` WHERE `id` = %d AND `uid` = %d AND `is-default` = 0 LIMIT 1",
423 notice( t('Profile not found.') . EOL);
424 goaway($a->get_baseurl(true) . '/profiles');
425 return; // NOTREACHED
428 check_form_security_token_redirectOnErr('/profiles', 'profile_drop', 't');
430 // move every contact using this profile as their default to the user default
432 $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 ",
433 intval(local_user()),
437 $r = q("DELETE FROM `profile` WHERE `id` = %d AND `uid` = %d LIMIT 1",
442 info( t('Profile deleted.') . EOL);
444 goaway($a->get_baseurl(true) . '/profiles');
445 return; // NOTREACHED
452 if(($a->argc > 1) && ($a->argv[1] === 'new')) {
454 check_form_security_token_redirectOnErr('/profiles', 'profile_new', 't');
456 $r0 = q("SELECT `id` FROM `profile` WHERE `uid` = %d",
457 intval(local_user()));
458 $num_profiles = count($r0);
460 $name = t('Profile-') . ($num_profiles + 1);
462 $r1 = q("SELECT `name`, `photo`, `thumb` FROM `profile` WHERE `uid` = %d AND `is-default` = 1 LIMIT 1",
463 intval(local_user()));
465 $r2 = q("INSERT INTO `profile` (`uid` , `profile-name` , `name`, `photo`, `thumb`)
466 VALUES ( %d, '%s', '%s', '%s', '%s' )",
467 intval(local_user()),
469 dbesc($r1[0]['name']),
470 dbesc($r1[0]['photo']),
471 dbesc($r1[0]['thumb'])
474 $r3 = q("SELECT `id` FROM `profile` WHERE `uid` = %d AND `profile-name` = '%s' LIMIT 1",
475 intval(local_user()),
479 info( t('New profile created.') . EOL);
481 goaway($a->get_baseurl(true) . '/profiles/' . $r3[0]['id']);
483 goaway($a->get_baseurl(true) . '/profiles');
486 if(($a->argc > 2) && ($a->argv[1] === 'clone')) {
488 check_form_security_token_redirectOnErr('/profiles', 'profile_clone', 't');
490 $r0 = q("SELECT `id` FROM `profile` WHERE `uid` = %d",
491 intval(local_user()));
492 $num_profiles = count($r0);
494 $name = t('Profile-') . ($num_profiles + 1);
495 $r1 = q("SELECT * FROM `profile` WHERE `uid` = %d AND `id` = %d LIMIT 1",
496 intval(local_user()),
500 notice( t('Profile unavailable to clone.') . EOL);
504 $r1[0]['is-default'] = 0;
505 $r1[0]['publish'] = 0;
506 $r1[0]['net-publish'] = 0;
507 $r1[0]['profile-name'] = dbesc($name);
511 $r2 = dbq("INSERT INTO `profile` (`"
512 . implode("`, `", array_keys($r1[0]))
514 . implode("', '", array_values($r1[0]))
517 $r3 = q("SELECT `id` FROM `profile` WHERE `uid` = %d AND `profile-name` = '%s' LIMIT 1",
518 intval(local_user()),
521 info( t('New profile created.') . EOL);
523 goaway($a->get_baseurl(true) . '/profiles/' . $r3[0]['id']);
525 goaway($a->get_baseurl(true) . '/profiles');
527 return; // NOTREACHED
531 if(($a->argc > 1) && (intval($a->argv[1]))) {
532 $r = q("SELECT * FROM `profile` WHERE `id` = %d AND `uid` = %d LIMIT 1",
537 notice( t('Profile not found.') . EOL);
541 profile_load($a,$a->user['nickname'],$r[0]['id']);
543 require_once('include/profile_selectors.php');
546 $editselect = 'textareas';
547 if(intval(get_pconfig(local_user(),'system','plaintext')))
548 $editselect = 'none';
550 $a->page['htmlhead'] .= replace_macros(get_markup_template('profed_head.tpl'), array(
551 '$baseurl' => $a->get_baseurl(true),
552 '$editselect' => $editselect,
554 $a->page['end'] .= replace_macros(get_markup_template('profed_end.tpl'), array(
555 '$baseurl' => $a->get_baseurl(true),
556 '$editselect' => $editselect,
560 $opt_tpl = get_markup_template("profile-hide-friends.tpl");
561 $hide_friends = replace_macros($opt_tpl,array(
562 '$desc' => t('Hide your contact/friend list from viewers of this profile?'),
563 '$yes_str' => t('Yes'),
564 '$no_str' => t('No'),
565 '$yes_selected' => (($r[0]['hide-friends']) ? " checked=\"checked\" " : ""),
566 '$no_selected' => (($r[0]['hide-friends'] == 0) ? " checked=\"checked\" " : "")
572 $f = get_config('system','birthday_input_format');
576 $is_default = (($r[0]['is-default']) ? 1 : 0);
577 $tpl = get_markup_template("profile_edit.tpl");
578 $o .= replace_macros($tpl,array(
579 '$form_security_token' => get_form_security_token("profile_edit"),
580 '$profile_clone_link' => 'profiles/clone/' . $r[0]['id'] . '?t=' . get_form_security_token("profile_clone"),
581 '$profile_drop_link' => 'profiles/drop/' . $r[0]['id'] . '?t=' . get_form_security_token("profile_drop"),
582 '$banner' => t('Edit Profile Details'),
583 '$submit' => t('Submit'),
584 '$viewprof' => t('View this profile'),
585 '$cr_prof' => t('Create a new profile using these settings'),
586 '$cl_prof' => t('Clone this profile'),
587 '$del_prof' => t('Delete this profile'),
588 '$lbl_profname' => t('Profile Name:'),
589 '$lbl_fullname' => t('Your Full Name:'),
590 '$lbl_title' => t('Title/Description:'),
591 '$lbl_gender' => t('Your Gender:'),
592 '$lbl_bd' => sprintf( t("Birthday \x28%s\x29:"),datesel_format($f)),
593 '$lbl_address' => t('Street Address:'),
594 '$lbl_city' => t('Locality/City:'),
595 '$lbl_zip' => t('Postal/Zip Code:'),
596 '$lbl_country' => t('Country:'),
597 '$lbl_region' => t('Region/State:'),
598 '$lbl_marital' => t('<span class="heart">♥</span> Marital Status:'),
599 '$lbl_with' => t("Who: \x28if applicable\x29"),
600 '$lbl_ex1' => t('Examples: cathy123, Cathy Williams, cathy@example.com'),
601 '$lbl_howlong' => t('Since [date]:'),
602 '$lbl_sexual' => t('Sexual Preference:'),
603 '$lbl_homepage' => t('Homepage URL:'),
604 '$lbl_hometown' => t('Hometown:'),
605 '$lbl_politic' => t('Political Views:'),
606 '$lbl_religion' => t('Religious Views:'),
607 '$lbl_pubkey' => t('Public Keywords:'),
608 '$lbl_prvkey' => t('Private Keywords:'),
609 '$lbl_likes' => t('Likes:'),
610 '$lbl_dislikes' => t('Dislikes:'),
611 '$lbl_ex2' => t('Example: fishing photography software'),
612 '$lbl_pubdsc' => t("\x28Used for suggesting potential friends, can be seen by others\x29"),
613 '$lbl_prvdsc' => t("\x28Used for searching profiles, never shown to others\x29"),
614 '$lbl_about' => t('Tell us about yourself...'),
615 '$lbl_hobbies' => t('Hobbies/Interests'),
616 '$lbl_social' => t('Contact information and Social Networks'),
617 '$lbl_music' => t('Musical interests'),
618 '$lbl_book' => t('Books, literature'),
619 '$lbl_tv' => t('Television'),
620 '$lbl_film' => t('Film/dance/culture/entertainment'),
621 '$lbl_love' => t('Love/romance'),
622 '$lbl_work' => t('Work/employment'),
623 '$lbl_school' => t('School/education'),
624 '$disabled' => (($is_default) ? 'onclick="return false;" style="color: #BBBBFF;"' : ''),
625 '$baseurl' => $a->get_baseurl(true),
626 '$profile_id' => $r[0]['id'],
627 '$profile_name' => $r[0]['profile-name'],
628 '$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>' : ""),
629 '$name' => $r[0]['name'],
630 '$pdesc' => $r[0]['pdesc'],
631 '$dob' => dob($r[0]['dob']),
632 '$hide_friends' => $hide_friends,
633 '$address' => $r[0]['address'],
634 '$locality' => $r[0]['locality'],
635 '$region' => $r[0]['region'],
636 '$postal_code' => $r[0]['postal-code'],
637 '$country_name' => $r[0]['country-name'],
638 '$age' => ((intval($r[0]['dob'])) ? '(' . t('Age: ') . age($r[0]['dob'],$a->user['timezone'],$a->user['timezone']) . ')' : ''),
639 '$gender' => gender_selector($r[0]['gender']),
640 '$marital' => marital_selector($r[0]['marital']),
641 '$with' => strip_tags($r[0]['with']),
642 '$howlong' => ($r[0]['howlong'] === '0000-00-00 00:00:00' ? '' : datetime_convert('UTC',date_default_timezone_get(),$r[0]['howlong'])),
643 '$sexual' => sexpref_selector($r[0]['sexual']),
644 '$about' => $r[0]['about'],
645 '$homepage' => $r[0]['homepage'],
646 '$hometown' => $r[0]['hometown'],
647 '$politic' => $r[0]['politic'],
648 '$religion' => $r[0]['religion'],
649 '$pub_keywords' => $r[0]['pub_keywords'],
650 '$prv_keywords' => $r[0]['prv_keywords'],
651 '$likes' => $r[0]['likes'],
652 '$dislikes' => $r[0]['dislikes'],
653 '$music' => $r[0]['music'],
654 '$book' => $r[0]['book'],
655 '$tv' => $r[0]['tv'],
656 '$film' => $r[0]['film'],
657 '$interest' => $r[0]['interest'],
658 '$romance' => $r[0]['romance'],
659 '$work' => $r[0]['work'],
660 '$education' => $r[0]['education'],
661 '$contact' => $r[0]['contact']
664 $arr = array('profile' => $r[0], 'entry' => $o);
665 call_hooks('profile_edit', $arr);
671 $r = q("SELECT * FROM `profile` WHERE `uid` = %d",
675 $tpl_header = get_markup_template('profile_listing_header.tpl');
676 $o .= replace_macros($tpl_header,array(
677 '$header' => t('Edit/Manage Profiles'),
678 '$chg_photo' => t('Change profile photo'),
679 '$cr_new' => t('Create New Profile'),
680 '$cr_new_link' => 'profiles/new?t=' . get_form_security_token("profile_new")
684 $tpl = get_markup_template('profile_entry.tpl');
687 $o .= replace_macros($tpl, array(
688 '$photo' => $a->get_cached_avatar_image($rr['thumb']),
690 '$alt' => t('Profile Image'),
691 '$profile_name' => $rr['profile-name'],
692 '$visible' => (($rr['is-default']) ? '<strong>' . t('visible to everybody') . '</strong>'
693 : '<a href="' . $a->get_baseurl(true) . '/profperm/' . $rr['id'] . '" />' . t('Edit visibility') . '</a>')