From e5fecbb406a5a7b8044549c5e50cc67e1d87f23a Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 16 Aug 2020 18:55:06 +0000 Subject: [PATCH] Remove unused "rating" functionality --- mod/dfrn_poll.php | 66 +++++++++++----------------------------- static/dbview.config.php | 1 - 2 files changed, 17 insertions(+), 50 deletions(-) diff --git a/mod/dfrn_poll.php b/mod/dfrn_poll.php index 3d073dc8ea..4ad8e0f499 100644 --- a/mod/dfrn_poll.php +++ b/mod/dfrn_poll.php @@ -239,7 +239,6 @@ function dfrn_poll_post(App $a) { $dfrn_id = $_POST['dfrn_id'] ?? ''; $challenge = $_POST['challenge'] ?? ''; - $url = $_POST['url'] ?? ''; $sec = $_POST['sec'] ?? ''; $ptype = $_POST['type'] ?? ''; $perm = ($_POST['perm'] ?? '') ?: 'r'; @@ -319,7 +318,6 @@ function dfrn_poll_post(App $a) exit(); } - $type = $r[0]['type']; $last_update = $r[0]['last_update']; DBA::delete('challenge', ['dfrn-id' => $dfrn_id, 'challenge' => $challenge]); @@ -346,59 +344,29 @@ function dfrn_poll_post(App $a) } $contact = $r[0]; - $owner_uid = $r[0]['uid']; $contact_id = $r[0]['id']; - if ($type === 'reputation' && strlen($url)) { - $r = q("SELECT * FROM `contact` WHERE `url` = '%s' AND `uid` = %d LIMIT 1", - DBA::escape($url), - intval($owner_uid) - ); - $reputation = 0; - $text = ''; - - if (DBA::isResult($r)) { - $reputation = $r[0]['rating']; - $text = $r[0]['reason']; - - if ($r[0]['id'] == $contact_id) { // inquiring about own reputation not allowed - $reputation = 0; - $text = ''; - } + // Update the writable flag if it changed + Logger::debug('post request feed', ['post' => $_POST]); + if ($dfrn_version >= 2.21) { + if ($perm === 'rw') { + $writable = 1; + } else { + $writable = 0; } - echo " - - $url - $reputation - $text - - "; - exit(); - // NOTREACHED - } else { - // Update the writable flag if it changed - Logger::debug('post request feed', ['post' => $_POST]); - if ($dfrn_version >= 2.21) { - if ($perm === 'rw') { - $writable = 1; - } else { - $writable = 0; - } - - if ($writable != $contact['writable']) { - q("UPDATE `contact` SET `writable` = %d WHERE `id` = %d", - intval($writable), - intval($contact_id) - ); - } + if ($writable != $contact['writable']) { + q("UPDATE `contact` SET `writable` = %d WHERE `id` = %d", + intval($writable), + intval($contact_id) + ); } - - header("Content-type: application/atom+xml"); - $o = DFRN::feed($dfrn_id, $a->argv[1], $last_update, $direction); - echo $o; - exit(); } + + header("Content-type: application/atom+xml"); + $o = DFRN::feed($dfrn_id, $a->argv[1], $last_update, $direction); + echo $o; + exit(); } function dfrn_poll_content(App $a) diff --git a/static/dbview.config.php b/static/dbview.config.php index 95179045c5..b27e3a7245 100755 --- a/static/dbview.config.php +++ b/static/dbview.config.php @@ -186,7 +186,6 @@ return [ "archive" => ["contact", "archive"], "pending" => ["contact", "pending"], "deleted" => ["contact", "deleted"], - "rating" => ["contact", "rating"], "unsearchable" => ["contact", "unsearchable"], "sensitive" => ["contact", "sensitive"], "baseurl" => ["contact", "baseurl"], -- 2.39.2