]> git.mxchange.org Git - friendica.git/blob - mod/profile_photo.php
clean up the salmon consumer bits
[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         require_once("mod/profile.php");
12         profile_load($a,$a->user['nickname']);
13
14 }
15
16
17 function profile_photo_post(&$a) {
18
19         if(! local_user()) {
20                 notice ( t('Permission denied.') . EOL );
21                 return;
22         }
23
24         if((x($_POST,'cropfinal')) && ($_POST['cropfinal'] == 1)) {
25
26                 // phase 2 - we have finished cropping
27
28                 if($a->argc != 2) {
29                         notice( t('Image uploaded but image cropping failed.') . EOL );
30                         return;
31                 }
32
33                 $image_id = $a->argv[1];
34
35                 if(substr($image_id,-2,1) == '-') {
36                         $scale = substr($image_id,-1,1);
37                         $image_id = substr($image_id,0,-2);
38                 }
39                         
40
41                 $srcX = $_POST['xstart'];
42                 $srcY = $_POST['ystart'];
43                 $srcW = $_POST['xfinal'] - $srcX;
44                 $srcH = $_POST['yfinal'] - $srcY;
45 //dbg(3);
46                 $r = q("SELECT * FROM `photo` WHERE `resource-id` = '%s' AND `uid` = %d AND `scale` = %d LIMIT 1",
47                         dbesc($image_id),
48                         dbesc(local_user()),
49                         intval($scale));
50
51                 if(count($r)) {
52
53                         $base_image = $r[0];
54
55                         $im = new Photo($base_image['data']);
56                         if($im->is_valid()) {
57                                 $im->cropImage(175,$srcX,$srcY,$srcW,$srcH);
58
59                                 $r = $im->store(local_user(), 0, $base_image['resource-id'],$base_image['filename'], t('Profile Photos'), 4, 1);
60
61                                 if($r === false)
62                                         notice ( t('Image size reduction [175] failed.') . EOL );
63
64                                 $im->scaleImage(80);
65
66                                 $r = $im->store(local_user(), 0, $base_image['resource-id'],$base_image['filename'], t('Profile Photos'), 5, 1);
67                         
68                                 if($r === false)
69                                         notice( t('Image size reduction [80] failed.') . EOL );
70
71                                 // Unset the profile photo flag from any other photos I own
72
73                                 $r = q("UPDATE `photo` SET `profile` = 0 WHERE `profile` = 1 AND `resource-id` != '%s' AND `uid` = %d",
74                                         dbesc($base_image['resource-id']),
75                                         intval(local_user())
76                                 );
77
78                                 $r = q("UPDATE `contact` SET `avatar-date` = '%s' WHERE `self` = 1 AND `uid` = %d LIMIT 1",
79                                         dbesc(datetime_convert()),
80                                         intval(local_user())
81                                 );
82
83                                 // Update global directory in background
84                                 $php_path = ((strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
85                                 $url = $_SESSION['my_url'];
86                                 if($url && strlen(get_config('system','directory_submit_url')))
87                                         proc_close(proc_open("\"$php_path\" \"include/directory.php\" \"$url\" &",
88                                                 array(),$foo));
89                         }
90                         else
91                                 notice( t('Unable to process image') . EOL);
92                 }
93                 goaway($a->get_baseurl() . '/profiles');
94                 return; // NOTREACHED
95         }
96
97         $src      = $_FILES['userfile']['tmp_name'];
98         $filename = basename($_FILES['userfile']['name']);
99         $filesize = intval($_FILES['userfile']['size']);
100
101         $imagedata = @file_get_contents($src);
102         $ph = new Photo($imagedata);
103
104         if(! $ph->is_valid()) {
105                 notice( t('Unable to process image.') . EOL );
106                 @unlink($src);
107                 return;
108         }
109
110         @unlink($src);
111
112         $width = $ph->getWidth();
113         $height = $ph->getHeight();
114
115         if($width < 175 || $height < 175) {
116                 $ph->scaleImageUp(200);
117                 $width = $ph->getWidth();
118                 $height = $ph->getHeight();
119         }
120
121         $hash = photo_new_resource();
122         
123
124         $smallest = 0;
125
126         $r = $ph->store(local_user(), 0 , $hash, $filename, t('Profile Photos'), 0 );   
127
128         if($r)
129                 notice( t('Image uploaded successfully.') . EOL );
130         else
131                 notice( t('Image upload failed.') . EOL );
132
133         if($width > 640 || $height > 640) {
134                 $ph->scaleImage(640);
135                 $r = $ph->store(local_user(), 0 , $hash, $filename, t('Profile Photos'), 1 );   
136
137                 if($r === false)
138                         notice( t('Image size reduction [640] failed.') . EOL );
139                 else
140                         $smallest = 1;
141         }
142
143         $a->config['imagecrop'] = $hash;
144         $a->config['imagecrop_resolution'] = $smallest;
145         $a->page['htmlhead'] .= load_view_file("view/crophead.tpl");
146         return;
147 }
148
149
150 if(! function_exists('profile_photo_content')) {
151 function profile_photo_content(&$a) {
152
153         if(! local_user()) {
154                 notice( t('Permission denied.') . EOL );
155                 return;
156         }
157
158         if(! x($a->config,'imagecrop')) {
159         
160                 $tpl = load_view_file('view/profile_photo.tpl');
161
162                 $o .= replace_macros($tpl,array(
163
164                 ));
165
166                 return $o;
167         }
168         else {
169                 $filename = $a->config['imagecrop'] . '-' . $a->config['imagecrop_resolution'] . '.jpg';
170                 $resolution = $a->config['imagecrop_resolution'];
171                 $tpl = load_view_file("view/cropbody.tpl");
172                 $o .= replace_macros($tpl,array(
173                         '$filename' => $filename,
174                         '$resource' => $a->config['imagecrop'] . '-' . $a->config['imagecrop_resolution'],
175                         '$image_url' => $a->get_baseurl() . '/photo/' . $filename
176                         ));
177
178                 return $o;
179         }
180
181         return; // NOTREACHED
182 }}