4 function profiles_post(&$a) {
7 notice( t('Permission denied.') . EOL);
13 if(($a->argc > 1) && ($a->argv[1] !== "new") && intval($a->argv[1])) {
14 $orig = q("SELECT * FROM `profile` WHERE `id` = %d AND `uid` = %d LIMIT 1",
16 intval($_SESSION['uid'])
19 notice( t('Profile not found.') . EOL);
22 $is_default = (($orig[0]['is-default']) ? 1 : 0);
24 $profile_name = notags(trim($_POST['profile_name']));
25 if(! strlen($profile_name)) {
26 notify( t('Profile Name is required.') . EOL);
30 $year = intval($_POST['year']);
31 if($year < 1900 || $year > 2100 || $year < 0)
33 $month = intval($_POST['month']);
34 if(($month > 12) || ($month < 0))
36 $mtab = array(0,31,29,31,30,31,30,31,31,30,31,30,31);
37 $day = intval($_POST['day']);
38 if(($day > $mtab[$month]) || ($day < 0))
41 $dob = sprintf('%04d-%02d-%02d',$year,$month,$day);
44 $name = notags(trim($_POST['name']));
46 if($orig[0]['name'] != $name)
49 $gender = notags(trim($_POST['gender']));
50 $address = notags(trim($_POST['address']));
51 $locality = notags(trim($_POST['locality']));
52 $region = notags(trim($_POST['region']));
53 $postal_code = notags(trim($_POST['postal_code']));
54 $country_name = notags(trim($_POST['country_name']));
56 $marital = notags(trim($_POST['marital']));
57 if($marital != $orig[0]['marital'])
58 $maritalchanged = true;
60 $sexual = notags(trim($_POST['sexual']));
61 $homepage = notags(trim($_POST['homepage']));
62 $politic = notags(trim($_POST['politic']));
63 $religion = notags(trim($_POST['religion']));
65 $about = escape_tags(trim($_POST['about']));
66 $interest = escape_tags(trim($_POST['interest']));
67 $contact = escape_tags(trim($_POST['contact']));
68 $music = escape_tags(trim($_POST['music']));
69 $book = escape_tags(trim($_POST['book']));
70 $tv = escape_tags(trim($_POST['tv']));
71 $film = escape_tags(trim($_POST['film']));
72 $romance = escape_tags(trim($_POST['romance']));
73 $work = escape_tags(trim($_POST['work']));
74 $education = escape_tags(trim($_POST['education']));
75 $hide_friends = (($_POST['hide-friends'] == 1) ? 1: 0);
78 $r = q("UPDATE `profile`
79 SET `profile-name` = '%s',
87 `country-name` = '%s',
104 WHERE `id` = %d AND `uid` = %d LIMIT 1",
105 dbesc($profile_name),
113 dbesc($country_name),
129 intval($hide_friends),
131 intval($_SESSION['uid'])
135 notice( t('Profile updated.') . EOL);
138 if($namechanged && $is_default) {
139 $r = q("UPDATE `contact` SET `name-date` = '%s' WHERE `self` = 1 AND `uid` = %d LIMIT 1",
140 dbesc(datetime_convert()),
141 intval($_SESSION['uid'])
146 // Update global directory in background
147 $php_path = ((strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
148 $url = $_SESSION['my_url'];
149 if($url && strlen(get_config('system','directory_submit_url')))
150 proc_close(proc_open("\"$php_path\" \"include/directory.php\" \"$url\" &",
159 function profiles_content(&$a) {
161 $o .= '<script> $(document).ready(function() { $(\'#nav-profiles-link\').addClass(\'nav-selected\'); });</script>';
163 notice( t('Permission denied.') . EOL);
167 if(($a->argc > 2) && ($a->argv[1] === "drop") && intval($a->argv[2])) {
168 $r = q("SELECT * FROM `profile` WHERE `id` = %d AND `uid` = %d AND `is-default` = 0 AND `self` = 0 LIMIT 1",
170 intval($_SESSION['uid'])
173 notice( t('Profile not found.') . EOL);
174 goaway($a->get_baseurl() . '/profiles');
175 return; // NOTREACHED
178 // move every contact using this profile as their default to the user default
180 $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 ",
181 intval($_SESSION['uid']),
183 intval($_SESSION['uid'])
185 $r = q("DELETE FROM `profile` WHERE `id` = %d LIMIT 1",
189 notice( t('Profile deleted.') . EOL);
191 goaway($a->get_baseurl() . '/profiles');
192 return; // NOTREACHED
199 if(($a->argc > 1) && ($a->argv[1] === 'new')) {
201 $r0 = q("SELECT `id` FROM `profile` WHERE `uid` = %d",
202 intval($_SESSION['uid']));
203 $num_profiles = count($r0);
205 $name = t('Profile-') . ($num_profiles + 1);
207 $r1 = q("SELECT `name`, `photo`, `thumb` FROM `profile` WHERE `uid` = %d AND `is-default` = 1 LIMIT 1",
208 intval($_SESSION['uid']));
210 $r2 = q("INSERT INTO `profile` (`uid` , `profile-name` , `name`, `photo`, `thumb`)
211 VALUES ( %d, '%s', '%s', '%s', '%s' )",
212 intval($_SESSION['uid']),
214 dbesc($r1[0]['name']),
215 dbesc($r1[0]['photo']),
216 dbesc($ra[0]['thumb'])
219 $r3 = q("SELECT `id` FROM `profile` WHERE `uid` = %d AND `profile-name` = '%s' LIMIT 1",
220 intval($_SESSION['uid']),
223 notice( t('New profile created.') . EOL);
225 goaway($a->get_baseurl() . '/profiles/' . $r3[0]['id']);
226 goaway($a->get_baseurl() . '/profiles');
229 if(($a->argc > 2) && ($a->argv[1] === 'clone')) {
231 $r0 = q("SELECT `id` FROM `profile` WHERE `uid` = %d",
232 intval($_SESSION['uid']));
233 $num_profiles = count($r0);
235 $name = t('Profile-') . ($num_profiles + 1);
236 $r1 = q("SELECT * FROM `profile` WHERE `uid` = %d AND `id` = %d LIMIT 1",
237 intval($_SESSION['uid']),
241 notice( t('Profile unavailable to clone.') . EOL);
245 $r1[0]['is-default'] = 0;
246 $r1[0]['publish'] = 0;
247 $r1[0]['net-publish'] = 0;
248 $r1[0]['profile-name'] = dbesc($name);
252 $r2 = dbq("INSERT INTO `profile` (`"
253 . implode("`, `", array_keys($r1[0]))
255 . implode("', '", array_values($r1[0]))
258 $r3 = q("SELECT `id` FROM `profile` WHERE `uid` = %d AND `profile-name` = '%s' LIMIT 1",
259 intval($_SESSION['uid']),
262 notice( t('New profile created.') . EOL);
264 goaway($a->get_baseurl() . '/profiles/' . $r3[0]['id']);
265 goaway($a->get_baseurl() . '/profiles');
266 return; // NOTREACHED
270 if(($a->argc > 1) && (intval($a->argv[1]))) {
271 $r = q("SELECT * FROM `profile` WHERE `id` = %d AND `uid` = %d LIMIT 1",
273 intval($_SESSION['uid'])
276 notice( t('Profile not found.') . EOL);
280 require_once('mod/profile.php');
281 profile_load($a,$a->user['nickname'],$r[0]['id']);
283 require_once('include/profile_selectors.php');
285 $tpl = load_view_file('view/profed_head.tpl');
287 $opt_tpl = load_view_file("view/profile-hide-friends.tpl");
288 $hide_friends = replace_macros($opt_tpl,array(
289 '$yes_selected' => (($r[0]['hide-friends']) ? " checked=\"checked\" " : ""),
290 '$no_selected' => (($r[0]['hide-friends'] == 0) ? " checked=\"checked\" " : "")
294 $a->page['htmlhead'] .= replace_macros($tpl, array('$baseurl' => $a->get_baseurl()));
295 $a->page['htmlhead'] .= "<script type=\"text/javascript\" src=\"include/country.js\" ></script>";
301 $is_default = (($r[0]['is-default']) ? 1 : 0);
302 $tpl = load_view_file("view/profile_edit.tpl");
303 $o .= replace_macros($tpl,array(
304 '$disabled' => (($is_default) ? 'onclick="return false;" style="color: #BBBBFF;"' : ''),
305 '$baseurl' => $a->get_baseurl(),
306 '$profile_id' => $r[0]['id'],
307 '$profile_name' => $r[0]['profile-name'],
308 '$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>' : ""),
309 '$name' => $r[0]['name'],
310 '$dob' => dob($r[0]['dob']),
311 '$hide_friends' => $hide_friends,
312 '$address' => $r[0]['address'],
313 '$locality' => $r[0]['locality'],
314 '$region' => $r[0]['region'],
315 '$postal_code' => $r[0]['postal-code'],
316 '$country_name' => $r[0]['country-name'],
317 '$age' => ((intval($r[0]['dob'])) ? '(' . t('Age: ') . age($r[0]['dob'],$a->user['timezone'],$a->user['timezone']) . ')' : ''),
318 '$gender' => gender_selector($r[0]['gender']),
319 '$marital' => marital_selector($r[0]['marital']),
320 '$sexual' => sexpref_selector($r[0]['sexual']),
321 '$about' => $r[0]['about'],
322 '$homepage' => $r[0]['homepage'],
323 '$politic' => $r[0]['politic'],
324 '$religion' => $r[0]['religion'],
325 '$music' => $r[0]['music'],
326 '$book' => $r[0]['book'],
327 '$tv' => $r[0]['tv'],
328 '$film' => $r[0]['film'],
329 '$interest' => $r[0]['interest'],
330 '$romance' => $r[0]['romance'],
331 '$work' => $r[0]['work'],
332 '$education' => $r[0]['education'],
333 '$contact' => $r[0]['contact']
342 $r = q("SELECT * FROM `profile` WHERE `uid` = %d",
346 $o .= load_view_file('view/profile_listing_header.tpl');
347 $tpl_default = load_view_file('view/profile_entry_default.tpl');
348 $tpl = load_view_file('view/profile_entry.tpl');
351 $template = (($rr['is-default']) ? $tpl_default : $tpl);
352 $o .= replace_macros($template, array(
353 '$photo' => $rr['thumb'],
355 '$profile_name' => $rr['profile-name']