]> git.mxchange.org Git - friendica.git/blobdiff - mod/wall_attach.php
The first queries are replaced with the new functions. More to come ...
[friendica.git] / mod / wall_attach.php
index 932b6241d88b2df15fffef57de0e1e0e0b74059f..8bf1fdbf19d6293b0bada256d2bc4362fc4debae 100644 (file)
@@ -1,5 +1,7 @@
 <?php
 
+use Friendica\App;
+
 require_once('include/attach.php');
 require_once('include/datetime.php');
 
@@ -7,7 +9,7 @@ function wall_attach_post(App $a) {
 
        $r_json = (x($_GET,'response') && $_GET['response']=='json');
 
-       if ($a->argc > 1) {
+       if($a->argc > 1) {
                $nick = $a->argv[1];
                $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",
                        dbesc($nick)
@@ -36,20 +38,20 @@ function wall_attach_post(App $a) {
        $page_owner_nick  = $r[0]['nickname'];
        $community_page   = (($r[0]['page-flags'] == PAGE_COMMUNITY) ? true : false);
 
-       if ((local_user()) && (local_user() == $page_owner_uid))
+       if((local_user()) && (local_user() == $page_owner_uid))
                $can_post = true;
        else {
-               if ($community_page && remote_user()) {
+               if($community_page && remote_user()) {
                        $contact_id = 0;
-                       if (is_array($_SESSION['remote'])) {
-                               foreach ($_SESSION['remote'] as $v) {
-                                       if ($v['uid'] == $page_owner_uid) {
+                       if(is_array($_SESSION['remote'])) {
+                               foreach($_SESSION['remote'] as $v) {
+                                       if($v['uid'] == $page_owner_uid) {
                                                $contact_id = $v['cid'];
                                                break;
                                        }
                                }
                        }
-                       if ($contact_id) {
+                       if($contact_id) {
 
                                $r = q("SELECT `uid` FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `id` = %d AND `uid` = %d LIMIT 1",
                                        intval($contact_id),
@@ -62,7 +64,7 @@ function wall_attach_post(App $a) {
                        }
                }
        }
-       if (! $can_post) {
+       if(! $can_post) {
                if ($r_json) {
                        echo json_encode(array('error'=>t('Permission denied.')));
                        killme();
@@ -71,7 +73,7 @@ function wall_attach_post(App $a) {
                killme();
        }
 
-       if (! x($_FILES,'userfile')) {
+       if(! x($_FILES,'userfile')) {
                if ($r_json) {
                        echo json_encode(array('error'=>t('Invalid request.')));
                }
@@ -90,7 +92,7 @@ function wall_attach_post(App $a) {
         * Then Filesize gets <= 0.
         */
 
-       if ($filesize <=0) {
+       if($filesize <=0) {
                $msg = t('Sorry, maybe your upload is bigger than the PHP configuration allows') . EOL .(t('Or - did you try to upload an empty file?'));
                if ($r_json) {
                        echo json_encode(array('error'=>$msg));
@@ -101,7 +103,7 @@ function wall_attach_post(App $a) {
                killme();
        }
 
-       if (($maxfilesize) && ($filesize > $maxfilesize)) {
+       if(($maxfilesize) && ($filesize > $maxfilesize)) {
                $msg = sprintf(t('File exceeds size limit of %s'), formatBytes($maxfilesize));
                if ($r_json) {
                        echo json_encode(array('error'=>$msg));
@@ -154,7 +156,7 @@ function wall_attach_post(App $a) {
 
        @unlink($src);
 
-       if (! $r) {
+       if(! $r) {
                $msg =  t('File upload failed.');
                if ($r_json) {
                        echo json_encode(array('error'=>$msg));