X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fpost.php;h=58d7695d41ef4975283445809f226e4758a40292;hb=3359f3f5c7ecc4b6a34c4fcfc095ab4dd5fab0f1;hp=c0e783a6aaded3cb6ea126bfd177eb50cb76e4df;hpb=7de5c7ebe1fba7757f06762d26dae478c9de5389;p=friendica.git diff --git a/mod/post.php b/mod/post.php index c0e783a6aa..58d7695d41 100644 --- a/mod/post.php +++ b/mod/post.php @@ -1,51 +1,55 @@ argc == 1) { + if ($a->argc == 1) { $bulk_delivery = true; - } - else { + } else { $nickname = $a->argv[2]; - $r = q("SELECT * FROM `user` WHERE `nickname` = '%s' - AND `account_expired` = 0 AND `account_removed` = 0 LIMIT 1", - dbesc($nickname) - ); - if(! count($r)) + $r = dba::select('user', array(), array('nickname' => $nickname, 'account_expired' => 0, 'account_removed' => 0), array('limit' => 1)); + if (! DBM::is_result($r)) { http_status_exit(500); + } - $importer = $r[0]; + $importer = $r; } $xml = file_get_contents('php://input'); logger('mod-post: new zot: ' . $xml, LOGGER_DATA); - if(! $xml) + if (! $xml) { http_status_exit(500); + } - $msg = zot_decode($importer,$xml); + $msg = zot_decode($importer, $xml); - logger('mod-post: decoded msg: ' . print_r($msg,true), LOGGER_DATA); + logger('mod-post: decoded msg: ' . print_r($msg, true), LOGGER_DATA); - if(! is_array($msg)) + if (! is_array($msg)) { http_status_exit(500); + } $ret = 0; - $ret = zot_incoming($bulk_delivery, $importer,$msg); + $ret = zot_incoming($bulk_delivery, $importer, $msg); http_status_exit(($ret) ? $ret : 200); // NOTREACHED } -