]> git.mxchange.org Git - friendica.git/blobdiff - mod/post.php
Fix formatting in mod/settings
[friendica.git] / mod / post.php
index c8a88e66cd329c5bd853084f638a33a52e29e1fb..58d7695d41ef4975283445809f226e4758a40292 100644 (file)
@@ -1,52 +1,55 @@
 <?php
-
 /**
- * Zot endpoint
+ * @file mod/post.php
+ * @brief Zot endpoint
  */
 
+use Friendica\App;
+use Friendica\Database\DBM;
+use dba;
 
-require_once('include/salmon.php');
-require_once('include/crypto.php');
+require_once 'include/crypto.php';
 // not yet ready for prime time
 //require_once('include/zot.php');
 
-function post_post(App $a) {
-
+/**
+ * @param object $a App
+ * @return void
+ */
+function post_post(App $a)
+{
        $bulk_delivery = false;
 
        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 (! dbm::is_result($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
 }
-