]> git.mxchange.org Git - friendica.git/blob - mod/profiles.php
8b44e2d59a7585fcabe1113fdad6401c2900d4f3
[friendica.git] / mod / profiles.php
1 <?php
2
3
4 function profiles_post(&$a) {
5
6         if(! local_user()) {
7                 $_SESSION['sysmsg'] .= "Unauthorised." . EOL;
8                 return;
9         }
10
11         // todo - delete... ensure that all contacts using the to-be-deleted profile are moved to the default.          
12
13         if(($a->argc > 1) && ($a->argv[1] != "new") && intval($a->argv[1])) {
14                 $r = q("SELECT * FROM `profile` WHERE `id` = %d AND `uid` = %d LIMIT 1",
15                         intval($a->argv[1]),
16                         intval($_SESSION['uid'])
17                 );
18                 if(! count($r)) {
19                         $_SESSION['sysmsg'] .= "Profile not found." . EOL;
20                         return;
21                 }
22                 $is_default = (($r[0]['is-default']) ? 1 : 0);
23
24                 $profile_name = notags(trim($_POST['profile_name']));
25                 if(! strlen($profile_name)) {
26                         $a->$_SESSION['sysmsg'] .= "Profile Name is required." . EOL;
27                         return;
28                 }
29         
30                 $name = notags(trim($_POST['name']));
31                 $gender = notags(trim($_POST['gender']));
32                 $address = notags(trim($_POST['address']));
33                 $locality = notags(trim($_POST['locality']));
34                 $region = notags(trim($_POST['region']));
35                 $postal_code = notags(trim($_POST['postal_code']));
36                 $country_name = notags(trim($_POST['country_name']));
37                 $marital = notags(trim(implode(', ',$_POST['marital'])));
38                 $homepage = notags(trim($_POST['homepage']));
39                 $about = str_replace(array('<','>','&'),array('&lt;','&gt;','&amp;'),trim($_POST['about']));
40                 if(x($_POST,'profile_in_directory'))
41                         $publish = (($_POST['profile_in_directory'] == 1) ? 1: 0);
42                 if(! in_array($gender,array('','Male','Female','Other')))
43                         $gender = '';
44
45                 $r = q("UPDATE `profile` 
46                         SET `profile-name` = '%s',
47                         `name` = '%s',
48                         `gender` = '%s',
49                         `address` = '%s',
50                         `locality` = '%s',
51                         `region` = '%s',
52                         `postal-code` = '%s',
53                         `country-name` = '%s',
54                         `marital` = '%s',
55                         `homepage` = '%s',
56                         `about` = '%s'
57                         WHERE `id` = %d AND `uid` = %d LIMIT 1",
58                         dbesc($profile_name),
59                         dbesc($name),
60                         dbesc($gender),
61                         dbesc($address),
62                         dbesc($locality),
63                         dbesc($region),
64                         dbesc($postal_code),
65                         dbesc($country_name),
66                         dbesc($marital),
67                         dbesc($homepage),
68                         dbesc($about),
69                         intval($a->argv[1]),
70                         intval($_SESSION['uid'])
71                 );
72
73                 if($r)
74                         $_SESSION['sysmsg'] .= "Profile updated." . EOL;
75
76
77                 if($is_default) {
78                         $r = q("UPDATE `profile` 
79                         SET `publish` = %d
80                         WHERE `id` = %d AND `uid` = %d LIMIT 1",
81                         intval($publish),
82                         intval($a->argv[1]),
83                         intval($_SESSION['uid'])
84
85                         );
86                 }
87
88
89         }
90
91
92
93 }
94
95
96
97
98 function profiles_content(&$a) {
99         if(! local_user()) {
100                 $_SESSION['sysmsg'] .= "Unauthorised." . EOL;
101                 return;
102         }
103
104         if(($a->argc > 1) && ($a->argv[1] == 'new')) {
105
106                 $r0 = q("SELECT `id` FROM `profile` WHERE `uid` = %d",
107                         intval($_SESSION['uid']));
108                 $num_profiles = count($r0);
109
110                 $name = "Profile-" . ($num_profiles + 1);
111
112                 $r1 = q("SELECT `name`, `photo`, `thumb` FROM `profile` WHERE `uid` = %d AND `is-default` = 1 LIMIT 1",
113                         intval($_SESSION['uid']));
114                 
115                 $r2 = q("INSERT INTO `profile` (`uid` , `profile-name` , `name`, `photo`, `thumb`)
116                         VALUES ( %d, '%s', '%s', '%s', '%s' )",
117                         intval($_SESSION['uid']),
118                         dbesc($name),
119                         dbesc($r1[0]['name']),
120                         dbesc($r1[0]['photo']),
121                         dbesc($ra[0]['thumb'])
122                 );
123
124                 $r3 = q("SELECT `id` FROM `profile` WHERE `uid` = %d AND `profile-name` = '%s' LIMIT 1",
125                         intval($_SESSION['uid']),
126                         dbesc($name)
127                 );
128                 $_SESSION['sysmsg'] .= "New profile created." . EOL;
129                 if(count($r3) == 1)
130                         goaway($a->get_baseurl() . '/profiles/' . $r3[0]['id']);
131                 goaway($a->get_baseurl() . '/profiles');
132         }                
133
134         if(($a->argc > 2) && ($a->argv[1] == 'clone')) {
135
136                 $r0 = q("SELECT `id` FROM `profile` WHERE `uid` = %d",
137                         intval($_SESSION['uid']));
138                 $num_profiles = count($r0);
139
140                 $name = "Profile-" . ($num_profiles + 1);
141                 $r1 = q("SELECT * FROM `profile` WHERE `uid` = %d AND `id` = %d LIMIT 1",
142                         intval($_SESSION['uid']),
143                         intval($a->argv[2])
144                 );
145                 if(! count($r1)) {
146                         notice("Profile unavailable to clone." . EOL);
147                         return;
148                 }
149                 unset($r1[0]['id']);
150                 $r1[0]['is-default'] = 0;
151                 $r1[0]['publish'] = 0;  
152                 $r1[0]['profile-name'] = dbesc($name);
153
154                 dbesc_array($r1[0]);
155
156                 $r2 = q("INSERT INTO `profile` (`" 
157                         . implode("`, `", array_keys($r1[0])) 
158                         . "`) VALUES ('" 
159                         . implode("', '", array_values($r1[0])) 
160                         . "')" );
161
162                 $r3 = q("SELECT `id` FROM `profile` WHERE `uid` = %d AND `profile-name` = '%s' LIMIT 1",
163                         intval($_SESSION['uid']),
164                         dbesc($name)
165                 );
166                 $_SESSION['sysmsg'] .= "New profile created." . EOL;
167                 if(count($r3) == 1)
168                         goaway($a->get_baseurl() . '/profiles/' . $r3[0]['id']);
169         goaway($a->get_baseurl() . '/profiles');
170         return; // NOTREACHED
171         }                
172
173
174
175
176
177         if(intval($a->argv[1])) {
178                 $r = q("SELECT * FROM `profile` WHERE `id` = %d AND `uid` = %d LIMIT 1",
179                         intval($a->argv[1]),
180                         intval($_SESSION['uid'])
181                 );
182                 if(! count($r)) {
183                         $_SESSION['sysmsg'] .= "Profile not found." . EOL;
184                         return;
185                 }
186
187                 require_once('mod/profile.php');
188                 profile_load($a,$_SESSION['uid'],$r[0]['id']);
189
190                 require_once('view/profile_selectors.php');
191
192                 $tpl = file_get_contents('view/jot-header.tpl');
193                 $opt_tpl = file_get_contents("view/profile-in-directory.tpl");
194                 $profile_in_dir = replace_macros($opt_tpl,array(
195                         '$yes_selected' => (($r[0]['publish']) ? " checked=\"checked\" " : ""),
196                         '$no_selected' => (($r[0]['publish'] == 0) ? " checked=\"checked\" " : "")
197                 ));
198
199
200                 $a->page['htmlhead'] .= replace_macros($tpl, array('$baseurl' => $a->get_baseurl()));
201                 $a->page['htmlhead'] .= "<script type=\"text/javascript\" src=\"include/country.js\" ></script>";
202         
203 //              $a->page['aside'] = file_get_contents('view/sidenote.tpl');     
204                 $is_default = (($r[0]['is-default']) ? 1 : 0);
205                 $tpl = file_get_contents("view/profile_edit.tpl");
206                 $o .= replace_macros($tpl,array(
207                         '$baseurl' => $a->get_baseurl(),
208                         '$profile_id' => $r[0]['id'],
209                         '$profile_name' => $r[0]['profile-name'],
210                         '$default' => (($is_default) ? "<p id=\"profile-edit-default-desc\">This is your <strong>public</strong> profile.</p>" : ""),
211                         '$name' => $r[0]['name'],
212                         '$dob' => $r[0]['dob'],
213                         '$address' => $r[0]['address'],
214                         '$locality' => $r[0]['locality'],
215                         '$region' => $r[0]['region'],
216                         '$postal_code' => $r[0]['postal-code'],
217                         '$country_name' => $r[0]['country-name'],
218                         '$age' => $r[0]['age'],
219                         '$gender' => gender_selector($r[0]['gender']),
220                         '$marital' => marital_selector($r[0]['marital']),
221                         '$about' => $r[0]['about'],
222                         '$homepage' => $r[0]['homepage'],
223                         '$profile_in_dir' => (($is_default) ? $profile_in_dir : '')
224                 ));
225
226                 return $o;
227
228
229         }
230         else {
231
232                 $r = q("SELECT * FROM `profile` WHERE `uid` = %d",
233                         $_SESSION['uid']);
234                 if(count($r)) {
235
236                         $o .= file_get_contents('view/profile_listing_header.tpl');
237                         $tpl_default = file_get_contents('view/profile_entry_default.tpl');
238                         $tpl = file_get_contents('view/profile_entry.tpl');
239
240                         foreach($r as $rr) {
241                                 $template = (($rr['is-default']) ? $tpl_default : $tpl);
242                                 $o .= replace_macros($template, array(
243                                         '$photo' => $rr['thumb'],
244                                         '$id' => $rr['id'],
245                                         '$profile_name' => $rr['profile-name']
246                                 ));
247                         }
248                 }
249                 return $o;
250         }
251
252 }