]> git.mxchange.org Git - friendica.git/blob - mod/profile_photo.php
Merge branch 'master' of https://github.com/friendica/friendica
[friendica.git] / mod / profile_photo.php
1 <?php
2
3 require_once("Photo.php");
4
5 function profile_photo_init(&$a) {
6
7         if(! local_user()) {
8                 return;
9         }
10
11         profile_load($a,$a->user['nickname']);
12
13 }
14
15
16 function profile_photo_post(&$a) {
17
18         if(! local_user()) {
19                 notice ( t('Permission denied.') . EOL );
20                 return;
21         }
22         
23         check_form_security_token_redirectOnErr('/profile_photo', 'profile_photo');
24         
25         if((x($_POST,'cropfinal')) && ($_POST['cropfinal'] == 1)) {
26
27                 // phase 2 - we have finished cropping
28
29                 if($a->argc != 2) {
30                         notice( t('Image uploaded but image cropping failed.') . EOL );
31                         return;
32                 }
33
34                 $image_id = $a->argv[1];
35
36                 if(substr($image_id,-2,1) == '-') {
37                         $scale = substr($image_id,-1,1);
38                         $image_id = substr($image_id,0,-2);
39                 }
40                         
41
42                 $srcX = $_POST['xstart'];
43                 $srcY = $_POST['ystart'];
44                 $srcW = $_POST['xfinal'] - $srcX;
45                 $srcH = $_POST['yfinal'] - $srcY;
46
47                 $r = q("SELECT * FROM `photo` WHERE `resource-id` = '%s' AND `uid` = %d AND `scale` = %d LIMIT 1",
48                         dbesc($image_id),
49                         dbesc(local_user()),
50                         intval($scale));
51
52                 if(count($r)) {
53
54                         $base_image = $r[0];
55
56                         $im = new Photo($base_image['data']);
57                         if($im->is_valid()) {
58                                 $im->cropImage(175,$srcX,$srcY,$srcW,$srcH);
59
60                                 $r = $im->store(local_user(), 0, $base_image['resource-id'],$base_image['filename'], t('Profile Photos'), 4, 1);
61
62                                 if($r === false)
63                                         notice ( sprintf(t('Image size reduction [%s] failed.'),"175") . EOL );
64
65                                 $im->scaleImage(80);
66
67                                 $r = $im->store(local_user(), 0, $base_image['resource-id'],$base_image['filename'], t('Profile Photos'), 5, 1);
68                         
69                                 if($r === false)
70                                         notice( sprintf(t('Image size reduction [%s] failed.'),"80") . EOL );
71
72                                 $im->scaleImage(48);
73
74                                 $r = $im->store(local_user(), 0, $base_image['resource-id'],$base_image['filename'], t('Profile Photos'), 6, 1);
75                         
76                                 if($r === false)
77                                         notice( sprintf(t('Image size reduction [%s] failed.'),"48") . EOL );
78
79                                 // Unset the profile photo flag from any other photos I own
80
81                                 $r = q("UPDATE `photo` SET `profile` = 0 WHERE `profile` = 1 AND `resource-id` != '%s' AND `uid` = %d",
82                                         dbesc($base_image['resource-id']),
83                                         intval(local_user())
84                                 );
85
86                                 $r = q("UPDATE `contact` SET `avatar-date` = '%s' WHERE `self` = 1 AND `uid` = %d LIMIT 1",
87                                         dbesc(datetime_convert()),
88                                         intval(local_user())
89                                 );
90
91                                 info( t('Shift-reload the page or clear browser cache if the new photo does not display immediately.') . EOL);
92                                 // Update global directory in background
93                                 $url = $a->get_baseurl() . '/profile/' . $a->user['nickname'];
94                                 if($url && strlen(get_config('system','directory_submit_url')))
95                                         proc_run('php',"include/directory.php","$url");
96
97                                 require_once('include/profile_update.php');
98                                 profile_change();
99                         }
100                         else
101                                 notice( t('Unable to process image') . EOL);
102                 }
103
104                 goaway($a->get_baseurl() . '/profiles');
105                 return; // NOTREACHED
106         }
107
108         $src      = $_FILES['userfile']['tmp_name'];
109         $filename = basename($_FILES['userfile']['name']);
110         $filesize = intval($_FILES['userfile']['size']);
111
112         $maximagesize = get_config('system','maximagesize');
113
114         if(($maximagesize) && ($filesize > $maximagesize)) {
115                 notice( sprintf(t('Image exceeds size limit of %d'), $maximagesize) . EOL);
116                 @unlink($src);
117                 return;
118         }
119
120         $imagedata = @file_get_contents($src);
121         $ph = new Photo($imagedata);
122
123         if(! $ph->is_valid()) {
124                 notice( t('Unable to process image.') . EOL );
125                 @unlink($src);
126                 return;
127         }
128
129         @unlink($src);
130         return profile_photo_crop_ui_head($a, $ph);
131         
132 }
133
134
135 if(! function_exists('profile_photo_content')) {
136 function profile_photo_content(&$a) {
137
138         if(! local_user()) {
139                 notice( t('Permission denied.') . EOL );
140                 return;
141         }
142         
143         $newuser = false;
144
145         if($a->argc == 2 && $a->argv[1] === 'new')
146                 $newuser = true;
147
148         if( $a->argv[1]=='use'){
149                 if ($a->argc<3){
150                         notice( t('Permission denied.') . EOL );
151                         return;
152                 };
153                 
154 //              check_form_security_token_redirectOnErr('/profile_photo', 'profile_photo');
155         
156                 $resource_id = $a->argv[2];
157                 //die(":".local_user());
158                 $r=q("SELECT * FROM `photo` WHERE `uid` = %d AND `resource-id` = '%s' ORDER BY `scale` ASC",
159                         intval(local_user()),
160                         dbesc($resource_id)
161                         );
162                 if (!count($r)){
163                         notice( t('Permission denied.') . EOL );
164                         return;
165                 }
166                 $havescale = false;
167                 foreach($r as $rr) {
168                         if($rr['scale'] == 5)
169                                 $havescale = true;
170                 }
171
172                 // set an already uloaded photo as profile photo
173                 // if photo is in 'Profile Photos', change it in db
174                 if (($r[0]['album']== t('Profile Photos')) && ($havescale)){
175                         $r=q("UPDATE `photo` SET `profile`=0 WHERE `profile`=1 AND `uid`=%d",
176                                 intval(local_user()));
177                         
178                         $r=q("UPDATE `photo` SET `profile`=1 WHERE `uid` = %d AND `resource-id` = '%s'",
179                                 intval(local_user()),
180                                 dbesc($resource_id)
181                                 );
182                         
183                         $r = q("UPDATE `contact` SET `avatar-date` = '%s' WHERE `self` = 1 AND `uid` = %d LIMIT 1",
184                                 dbesc(datetime_convert()),
185                                 intval(local_user())
186                         );
187                         
188                         // Update global directory in background
189                         $url = $_SESSION['my_url'];
190                         if($url && strlen(get_config('system','directory_submit_url')))
191                                 proc_run('php',"include/directory.php","$url");
192                         
193                         goaway($a->get_baseurl() . '/profiles');
194                         return; // NOTREACHED
195                 }
196                 $ph = new Photo($r[0]['data']);
197                 profile_photo_crop_ui_head($a, $ph);
198                 // go ahead as we have jus uploaded a new photo to crop
199         }
200
201         if(! x($a->config,'imagecrop')) {
202         
203                 $tpl = get_markup_template('profile_photo.tpl');
204
205                 $o .= replace_macros($tpl,array(
206                         '$user' => $a->user['nickname'],
207                         '$lbl_upfile' => t('Upload File:'),
208                         '$title' => t('Upload Profile Photo'),
209                         '$submit' => t('Upload'),
210                         '$form_security_token' => get_form_security_token("profile_photo"),
211                         '$select' => sprintf('%s %s', t('or'), ($newuser) ? '<a href="' . $a->get_baseurl() . '">' . t('skip this step') . '</a>' : '<a href="'. $a->get_baseurl() . '/photos/' . $a->user['nickname'] . '">' . t('select a photo from your photo albums') . '</a>')
212                 ));
213
214                 return $o;
215         }
216         else {
217                 $filename = $a->config['imagecrop'] . '-' . $a->config['imagecrop_resolution'] . '.jpg';
218                 $resolution = $a->config['imagecrop_resolution'];
219                 $tpl = get_markup_template("cropbody.tpl");
220                 $o .= replace_macros($tpl,array(
221                         '$filename' => $filename,
222                         '$resource' => $a->config['imagecrop'] . '-' . $a->config['imagecrop_resolution'],
223                         '$image_url' => $a->get_baseurl() . '/photo/' . $filename,
224                         '$title' => t('Crop Image'),
225                         '$desc' => t('Please adjust the image cropping for optimum viewing.'),
226                         '$form_security_token' => get_form_security_token("profile_photo"),
227                         '$done' => t('Done Editing')
228                 ));
229                 return $o;
230         }
231
232         return; // NOTREACHED
233 }}
234
235
236 if(! function_exists('_crop_ui_head')) {
237 function profile_photo_crop_ui_head(&$a, $ph){
238         $width = $ph->getWidth();
239         $height = $ph->getHeight();
240
241         if($width < 175 || $height < 175) {
242                 $ph->scaleImageUp(200);
243                 $width = $ph->getWidth();
244                 $height = $ph->getHeight();
245         }
246
247         $hash = photo_new_resource();
248         
249
250         $smallest = 0;
251
252         $r = $ph->store(local_user(), 0 , $hash, $filename, t('Profile Photos'), 0 );   
253
254         if($r)
255                 info( t('Image uploaded successfully.') . EOL );
256         else
257                 notice( t('Image upload failed.') . EOL );
258
259         if($width > 640 || $height > 640) {
260                 $ph->scaleImage(640);
261                 $r = $ph->store(local_user(), 0 , $hash, $filename, t('Profile Photos'), 1 );   
262                 
263                 if($r === false)
264                         notice( sprintf(t('Image size reduction [%s] failed.'),"640") . EOL );
265                 else
266                         $smallest = 1;
267         }
268
269         $a->config['imagecrop'] = $hash;
270         $a->config['imagecrop_resolution'] = $smallest;
271         $a->page['htmlhead'] .= get_markup_template("crophead.tpl");
272         return;
273 }}
274