]> git.mxchange.org Git - friendica.git/blob - mod/wall_attach.php
Merge pull request #927 from annando/master
[friendica.git] / mod / wall_attach.php
1 <?php
2
3 require_once('include/attach.php');
4 require_once('include/datetime.php');
5
6 function wall_attach_post(&$a) {
7
8         if($a->argc > 1) {
9                 $nick = $a->argv[1];
10                 $r = q("SELECT `user`.*, `contact`.`id` FROM `user` LEFT JOIN `contact` on `user`.`uid` = `contact`.`uid`  WHERE `user`.`nickname` = '%s' AND `user`.`blocked` = 0 and `contact`.`self` = 1 LIMIT 1",
11                         dbesc($nick)
12                 );
13                 if(! count($r))
14                         return;
15
16         }
17         else
18                 return;
19
20         $can_post  = false;
21         $visitor   = 0;
22
23         $page_owner_uid   = $r[0]['uid'];
24         $page_owner_cid   = $r[0]['id'];
25         $page_owner_nick  = $r[0]['nickname'];
26         $community_page   = (($r[0]['page-flags'] == PAGE_COMMUNITY) ? true : false);
27
28         if((local_user()) && (local_user() == $page_owner_uid))
29                 $can_post = true;
30         else {
31                 if($community_page && remote_user()) {
32                         $cid = 0;
33                         if(is_array($_SESSION['remote'])) {
34                                 foreach($_SESSION['remote'] as $v) {
35                                         if($v['uid'] == $page_owner_uid) {
36                                                 $cid = $v['cid'];
37                                                 break;
38                                         }
39                                 }
40                         }
41                         if($cid) {
42
43                                 $r = q("SELECT `uid` FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `id` = %d AND `uid` = %d LIMIT 1",
44                                         intval($cid),
45                                         intval($page_owner_uid)
46                                 );
47                                 if(count($r)) {
48                                         $can_post = true;
49                                         $visitor = $cid;
50                                 }
51                         }
52                 }
53         }
54         if(! $can_post) {
55                 notice( t('Permission denied.') . EOL );
56                 killme();
57         }
58
59         if(! x($_FILES,'userfile'))
60                 killme();
61
62         $src      = $_FILES['userfile']['tmp_name'];
63         $filename = basename($_FILES['userfile']['name']);
64         $filesize = intval($_FILES['userfile']['size']);
65
66         $maxfilesize = get_config('system','maxfilesize');
67
68         if(($maxfilesize) && ($filesize > $maxfilesize)) {
69                 notice( sprintf(t('File exceeds size limit of %d'), $maxfilesize) . EOL);
70                 @unlink($src);
71                 return;
72         }
73
74         $r = q("select sum(octet_length(data)) as total from attach where uid = %d ",
75                 intval($page_owner_uid)
76         );
77
78         $limit = service_class_fetch($page_owner_uid,'attach_upload_limit');
79
80         if(($limit !== false) && (($r[0]['total'] + strlen($imagedata)) > $limit)) {
81                 echo upgrade_message(true) . EOL ;
82                 @unlink($src);
83                 killme();
84         }
85
86
87         $filedata = @file_get_contents($src);
88         $mimetype = z_mime_content_type($filename);
89         $hash = random_string();
90         $created = datetime_convert();
91         $r = q("INSERT INTO `attach` ( `uid`, `hash`, `filename`, `filetype`, `filesize`, `data`, `created`, `edited`, `allow_cid`, `allow_gid`,`deny_cid`, `deny_gid` )
92                 VALUES ( %d, '%s', '%s', '%s', %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s' ) ",
93                 intval($page_owner_uid),
94                 dbesc($hash),
95                 dbesc($filename),
96                 dbesc($mimetype),
97                 intval($filesize),
98                 dbesc($filedata),
99                 dbesc($created),
100                 dbesc($created),
101                 dbesc('<' . $page_owner_cid . '>'),
102                 dbesc(''),
103                 dbesc(''),
104                 dbesc('')
105         );              
106
107         @unlink($src);
108
109         if(! $r) {
110                 echo ( t('File upload failed.') . EOL);
111                 killme();
112         }
113
114         $r = q("SELECT `id` FROM `attach` WHERE `uid` = %d AND `created` = '%s' AND `hash` = '%s' LIMIT 1",
115                 intval($page_owner_uid),
116                 dbesc($created),
117                 dbesc($hash)
118         );
119
120         if(! count($r)) {
121                 echo ( t('File upload failed.') . EOL);
122                 killme();
123         }
124
125         $lf = "\n";
126
127         echo  $lf . $lf . '[attachment]' . $r[0]['id'] . '[/attachment]' . $lf;
128         
129         killme();
130         // NOTREACHED
131 }