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);
24 $is_default = (($orig[0]['is-default']) ? 1 : 0);
26 $profile_name = notags(trim($_POST['profile_name']));
27 if(! strlen($profile_name)) {
28 notify( t('Profile Name is required.') . EOL);
32 $year = intval($_POST['year']);
33 if($year < 1900 || $year > 2100 || $year < 0)
35 $month = intval($_POST['month']);
36 if(($month > 12) || ($month < 0))
38 $mtab = array(0,31,29,31,30,31,30,31,31,30,31,30,31);
39 $day = intval($_POST['day']);
40 if(($day > $mtab[$month]) || ($day < 0))
43 $dob = sprintf('%04d-%02d-%02d',$year,$month,$day);
46 $name = notags(trim($_POST['name']));
48 if($orig[0]['name'] != $name)
51 $pdesc = notags(trim($_POST['pdesc']));
52 $gender = notags(trim($_POST['gender']));
53 $address = notags(trim($_POST['address']));
54 $locality = notags(trim($_POST['locality']));
55 $region = notags(trim($_POST['region']));
56 $postal_code = notags(trim($_POST['postal_code']));
57 $country_name = notags(trim($_POST['country_name']));
58 $pub_keywords = notags(trim($_POST['pub_keywords']));
59 $prv_keywords = notags(trim($_POST['prv_keywords']));
60 $marital = notags(trim($_POST['marital']));
61 if($marital != $orig[0]['marital'])
62 $maritalchanged = true;
64 $with = ((x($_POST,'with')) ? notags(trim($_POST['with'])) : '');
66 // linkify the relationship target if applicable
69 if($with != strip_tags($orig[0]['with'])) {
72 if(strpos($lookup,'@') === 0)
73 $lookup = substr($lookup,1);
74 $lookup = str_replace('_',' ', $lookup);
75 if(strpos($lookup,'@') || (strpos($lookup,'http://'))) {
77 $links = @lrdd($lookup);
79 foreach($links as $link) {
80 if($link['@attributes']['rel'] === 'http://webfinger.net/rel/profile-page') {
81 $prf = $link['@attributes']['href'];
88 if(strstr($lookup,' ')) {
89 $r = q("SELECT * FROM `contact` WHERE `name` = '%s' AND `uid` = %d LIMIT 1",
95 $r = q("SELECT * FROM `contact` WHERE `nick` = '%s' AND `uid` = %d LIMIT 1",
102 $newname = $r[0]['name'];
107 $with = str_replace($lookup,'<a href="' . $prf . '">' . $newname . '</a>', $with);
108 if(strpos($with,'@') === 0)
109 $with = substr($with,1);
113 $with = $orig[0]['with'];
116 $sexual = notags(trim($_POST['sexual']));
117 $homepage = notags(trim($_POST['homepage']));
118 $politic = notags(trim($_POST['politic']));
119 $religion = notags(trim($_POST['religion']));
121 $about = escape_tags(trim($_POST['about']));
122 $interest = escape_tags(trim($_POST['interest']));
123 $contact = escape_tags(trim($_POST['contact']));
124 $music = escape_tags(trim($_POST['music']));
125 $book = escape_tags(trim($_POST['book']));
126 $tv = escape_tags(trim($_POST['tv']));
127 $film = escape_tags(trim($_POST['film']));
128 $romance = escape_tags(trim($_POST['romance']));
129 $work = escape_tags(trim($_POST['work']));
130 $education = escape_tags(trim($_POST['education']));
131 $hide_friends = (($_POST['hide-friends'] == 1) ? 1: 0);
134 $r = q("UPDATE `profile`
135 SET `profile-name` = '%s',
143 `postal-code` = '%s',
144 `country-name` = '%s',
151 `pub_keywords` = '%s',
152 `prv_keywords` = '%s',
164 WHERE `id` = %d AND `uid` = %d LIMIT 1",
165 dbesc($profile_name),
174 dbesc($country_name),
181 dbesc($pub_keywords),
182 dbesc($prv_keywords),
193 intval($hide_friends),
195 intval($_SESSION['uid'])
199 notice( t('Profile updated.') . EOL);
202 if($namechanged && $is_default) {
203 $r = q("UPDATE `contact` SET `name-date` = '%s' WHERE `self` = 1 AND `uid` = %d LIMIT 1",
204 dbesc(datetime_convert()),
210 // Update global directory in background
211 $url = $_SESSION['my_url'];
212 if($url && strlen(get_config('system','directory_submit_url')))
213 proc_run('php',"include/directory.php","$url");
221 function profiles_content(&$a) {
224 $o .= '<script> $(document).ready(function() { $(\'#nav-profiles-link\').addClass(\'nav-selected\'); });</script>';
227 notice( t('Permission denied.') . EOL);
231 if(($a->argc > 2) && ($a->argv[1] === "drop") && intval($a->argv[2])) {
232 $r = q("SELECT * FROM `profile` WHERE `id` = %d AND `uid` = %d AND `is-default` = 0 LIMIT 1",
237 notice( t('Profile not found.') . EOL);
238 goaway($a->get_baseurl() . '/profiles');
239 return; // NOTREACHED
242 // move every contact using this profile as their default to the user default
244 $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 ",
245 intval(local_user()),
249 $r = q("DELETE FROM `profile` WHERE `id` = %d AND `uid` = %d LIMIT 1",
254 notice( t('Profile deleted.') . EOL);
256 goaway($a->get_baseurl() . '/profiles');
257 return; // NOTREACHED
264 if(($a->argc > 1) && ($a->argv[1] === 'new')) {
266 $r0 = q("SELECT `id` FROM `profile` WHERE `uid` = %d",
267 intval(local_user()));
268 $num_profiles = count($r0);
270 $name = t('Profile-') . ($num_profiles + 1);
272 $r1 = q("SELECT `name`, `photo`, `thumb` FROM `profile` WHERE `uid` = %d AND `is-default` = 1 LIMIT 1",
273 intval(local_user()));
275 $r2 = q("INSERT INTO `profile` (`uid` , `profile-name` , `name`, `photo`, `thumb`)
276 VALUES ( %d, '%s', '%s', '%s', '%s' )",
277 intval(local_user()),
279 dbesc($r1[0]['name']),
280 dbesc($r1[0]['photo']),
281 dbesc($r1[0]['thumb'])
284 $r3 = q("SELECT `id` FROM `profile` WHERE `uid` = %d AND `profile-name` = '%s' LIMIT 1",
285 intval(local_user()),
289 notice( t('New profile created.') . EOL);
291 goaway($a->get_baseurl() . '/profiles/' . $r3[0]['id']);
292 goaway($a->get_baseurl() . '/profiles');
295 if(($a->argc > 2) && ($a->argv[1] === 'clone')) {
297 $r0 = q("SELECT `id` FROM `profile` WHERE `uid` = %d",
298 intval(local_user()));
299 $num_profiles = count($r0);
301 $name = t('Profile-') . ($num_profiles + 1);
302 $r1 = q("SELECT * FROM `profile` WHERE `uid` = %d AND `id` = %d LIMIT 1",
303 intval(local_user()),
307 notice( t('Profile unavailable to clone.') . EOL);
311 $r1[0]['is-default'] = 0;
312 $r1[0]['publish'] = 0;
313 $r1[0]['net-publish'] = 0;
314 $r1[0]['profile-name'] = dbesc($name);
318 $r2 = dbq("INSERT INTO `profile` (`"
319 . implode("`, `", array_keys($r1[0]))
321 . implode("', '", array_values($r1[0]))
324 $r3 = q("SELECT `id` FROM `profile` WHERE `uid` = %d AND `profile-name` = '%s' LIMIT 1",
325 intval(local_user()),
328 notice( t('New profile created.') . EOL);
330 goaway($a->get_baseurl() . '/profiles/' . $r3[0]['id']);
331 goaway($a->get_baseurl() . '/profiles');
332 return; // NOTREACHED
336 if(($a->argc > 1) && (intval($a->argv[1]))) {
337 $r = q("SELECT * FROM `profile` WHERE `id` = %d AND `uid` = %d LIMIT 1",
342 notice( t('Profile not found.') . EOL);
346 profile_load($a,$a->user['nickname'],$r[0]['id']);
348 require_once('include/profile_selectors.php');
350 $tpl = get_markup_template('profed_head.tpl');
352 $opt_tpl = get_markup_template("profile-hide-friends.tpl");
353 $hide_friends = replace_macros($opt_tpl,array(
354 '$desc' => t('Hide my contact/friend list from viewers of this profile?'),
355 '$yes_str' => t('Yes'),
356 '$no_str' => t('No'),
357 '$yes_selected' => (($r[0]['hide-friends']) ? " checked=\"checked\" " : ""),
358 '$no_selected' => (($r[0]['hide-friends'] == 0) ? " checked=\"checked\" " : "")
362 $a->page['htmlhead'] .= replace_macros($tpl, array('$baseurl' => $a->get_baseurl()));
363 $a->page['htmlhead'] .= "<script type=\"text/javascript\" src=\"include/country.js\" ></script>";
366 $is_default = (($r[0]['is-default']) ? 1 : 0);
367 $tpl = get_markup_template("profile_edit.tpl");
368 $o .= replace_macros($tpl,array(
369 '$banner' => t('Edit Profile Details'),
370 '$submit' => t('Submit'),
371 '$viewprof' => t('View this profile'),
372 '$cr_prof' => t('Create a new profile using these settings'),
373 '$cl_prof' => t('Clone this profile'),
374 '$del_prof' => t('Delete this profile'),
375 '$lbl_profname' => t('Profile Name:'),
376 '$lbl_fullname' => t('Your Full Name:'),
377 '$lbl_title' => t('Title/Description:'),
378 '$lbl_gender' => t('Your Gender:'),
379 '$lbl_bd' => t("Birthday \x28y/m/d\x29:"),
380 '$lbl_address' => t('Street Address:'),
381 '$lbl_city' => t('Locality/City:'),
382 '$lbl_zip' => t('Postal/Zip Code:'),
383 '$lbl_country' => t('Country:'),
384 '$lbl_region' => t('Region/State:'),
385 '$lbl_marital' => t('<span class="heart">♥</span> Marital Status:'),
386 '$lbl_with' => t("Who: \x28if applicable\x29"),
387 '$lbl_ex1' => t('Examples: cathy123, Cathy Williams, cathy@example.com'),
388 '$lbl_sexual' => t('Sexual Preference:'),
389 '$lbl_homepage' => t('Homepage URL:'),
390 '$lbl_politic' => t('Political Views:'),
391 '$lbl_religion' => t('Religious Views:'),
392 '$lbl_pubkey' => t('Public Keywords:'),
393 '$lbl_prvkey' => t('Private Keywords:'),
394 '$lbl_ex2' => t('Example: fishing photography software'),
395 '$lbl_pubdsc' => t("\x28Used for suggesting potential friends, can be seen by others\x29"),
396 '$lbl_prvdsc' => t("\x28Used for searching profiles, never shown to others\x29"),
397 '$lbl_about' => t('Tell us about yourself...'),
398 '$lbl_hobbies' => t('Hobbies/Interests'),
399 '$lbl_social' => t('Contact information and Social Networks'),
400 '$lbl_music' => t('Musical interests'),
401 '$lbl_book' => t('Books, literature'),
402 '$lbl_tv' => t('Television'),
403 '$lbl_film' => t('Film/dance/culture/entertainment'),
404 '$lbl_love' => t('Love/romance'),
405 '$lbl_work' => t('Work/employment'),
406 '$lbl_school' => t('School/education'),
407 '$disabled' => (($is_default) ? 'onclick="return false;" style="color: #BBBBFF;"' : ''),
408 '$baseurl' => $a->get_baseurl(),
409 '$profile_id' => $r[0]['id'],
410 '$profile_name' => $r[0]['profile-name'],
411 '$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>' : ""),
412 '$name' => $r[0]['name'],
413 '$pdesc' => $r[0]['pdesc'],
414 '$dob' => dob($r[0]['dob']),
415 '$hide_friends' => $hide_friends,
416 '$address' => $r[0]['address'],
417 '$locality' => $r[0]['locality'],
418 '$region' => $r[0]['region'],
419 '$postal_code' => $r[0]['postal-code'],
420 '$country_name' => $r[0]['country-name'],
421 '$age' => ((intval($r[0]['dob'])) ? '(' . t('Age: ') . age($r[0]['dob'],$a->user['timezone'],$a->user['timezone']) . ')' : ''),
422 '$gender' => gender_selector($r[0]['gender']),
423 '$marital' => marital_selector($r[0]['marital']),
424 '$with' => strip_tags($r[0]['with']),
425 '$sexual' => sexpref_selector($r[0]['sexual']),
426 '$about' => $r[0]['about'],
427 '$homepage' => $r[0]['homepage'],
428 '$politic' => $r[0]['politic'],
429 '$religion' => $r[0]['religion'],
430 '$pub_keywords' => $r[0]['pub_keywords'],
431 '$prv_keywords' => $r[0]['prv_keywords'],
432 '$music' => $r[0]['music'],
433 '$book' => $r[0]['book'],
434 '$tv' => $r[0]['tv'],
435 '$film' => $r[0]['film'],
436 '$interest' => $r[0]['interest'],
437 '$romance' => $r[0]['romance'],
438 '$work' => $r[0]['work'],
439 '$education' => $r[0]['education'],
440 '$contact' => $r[0]['contact']
443 $arr = array('profile' => $r[0], 'entry' => $o);
444 call_hooks('profile_edit', $arr);
450 $r = q("SELECT * FROM `profile` WHERE `uid` = %d",
454 $tpl_header = get_markup_template('profile_listing_header.tpl');
455 $o .= replace_macros($tpl_header,array(
456 '$header' => t('Profiles'),
457 '$chg_photo' => t('Change profile photo'),
458 '$cr_new' => t('Create New Profile')
462 $tpl = get_markup_template('profile_entry.tpl');
465 $o .= replace_macros($tpl, array(
466 '$photo' => $rr['thumb'],
468 '$alt' => t('Profile Image'),
469 '$profile_name' => $rr['profile-name'],
470 '$visible' => (($rr['is-default']) ? '<strong>' . t('Visible to everybody') . '</strong>'
471 : '<a href="' . $a->get_baseurl() . '/profperm/' . $rr['id'] . '" />' . t('Edit visibility') . '</a>')