]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Ostatus_source filled no purpose whatsoever
authorMikael Nordfeldth <mmn@hethane.se>
Fri, 26 Feb 2016 21:37:26 +0000 (22:37 +0100)
committerMikael Nordfeldth <mmn@hethane.se>
Fri, 26 Feb 2016 21:37:26 +0000 (22:37 +0100)
plugins/OStatus/OStatusPlugin.php
plugins/OStatus/classes/Ostatus_profile.php
plugins/OStatus/classes/Ostatus_source.php [deleted file]

index 17ce8e46236200f5b954f1c44fbe00e58d4b9f99..292af658ed9a98b5c411ef0eb9f029866c72ff78 100644 (file)
@@ -476,7 +476,6 @@ class OStatusPlugin extends Plugin
     function onCheckSchema() {
         $schema = Schema::get();
         $schema->ensureTable('ostatus_profile', Ostatus_profile::schemaDef());
-        $schema->ensureTable('ostatus_source', Ostatus_source::schemaDef());
         $schema->ensureTable('feedsub', FeedSub::schemaDef());
         $schema->ensureTable('hubsub', HubSub::schemaDef());
         $schema->ensureTable('magicsig', Magicsig::schemaDef());
index 8c7be80a60e2be7d280dfa0c01c24f1f6afc2ad0..2b1ab8ddd90222d2d9f821ccd54b17c237ea9a04 100644 (file)
@@ -539,7 +539,6 @@ class Ostatus_profile extends Managed_DataObject
 
         try {
             $stored = Notice::saveActivity($activity, $actor, $options);
-            Ostatus_source::saveNew($stored, $this, $method);
         } catch (Exception $e) {
             common_log(LOG_ERR, "OStatus save of remote message $sourceUri failed: " . $e->getMessage());
             throw $e;
diff --git a/plugins/OStatus/classes/Ostatus_source.php b/plugins/OStatus/classes/Ostatus_source.php
deleted file mode 100644 (file)
index 88a6a58..0000000
+++ /dev/null
@@ -1,77 +0,0 @@
-<?php
-/*
- * StatusNet - the distributed open-source microblogging tool
- * Copyright (C) 2010, StatusNet, Inc.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
- */
-
-if (!defined('STATUSNET')) {
-    exit(1);
-}
-
-/**
- * @package OStatusPlugin
- * @maintainer Brion Vibber <brion@status.net>
- */
-class Ostatus_source extends Managed_DataObject
-{
-    public $__table = 'ostatus_source';
-
-    public $notice_id; // notice we're referring to
-    public $profile_uri; // uri of the ostatus_profile this came through -- may be a group feed
-    public $method; // push or salmon
-    public $created;
-    public $modified;
-
-    public static function schemaDef()
-    {
-        return array(
-            'fields' => array(
-                'notice_id' => array('type' => 'int', 'not null' => true, 'description' => 'Notice ID relation'),
-                'profile_uri' => array('type' => 'varchar', 'not null' => true, 'length' => 191, 'description' => 'Profile URI'),
-                'method' => array('type' => 'enum("push","salmon")', 'not null' => true, 'description' => 'source method'),
-                'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'),
-                'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
-            ),
-            'primary key' => array('notice_id'),
-            'foreign keys' => array(
-               'ostatus_source_notice_id_fkey' => array('notice', array('notice_id' => 'id')),
-               // not in profile table yet 'ostatus_source_profile_uri_fkey' => array('profile', array('profile_uri' => 'uri')),
-            ),
-            'indexes' => array(
-                'ostatus_source_profile_uri_idx' => array('profile_uri'),
-            ),
-        );
-   }
-
-    /**
-     * Save a remote notice source record; this helps indicate how trusted we are.
-     * @param string $method
-     */
-    public static function saveNew(Notice $notice, Ostatus_profile $oprofile, $method)
-    {
-        $osource = new Ostatus_source();
-        $osource->notice_id = $notice->id;
-        $osource->profile_uri = $oprofile->uri;
-        $osource->method = $method;
-        $osource->created = common_sql_now();
-        if ($osource->insert()) {
-           return true;
-        } else {
-            common_log_db_error($osource, 'INSERT', __FILE__);
-            return false;
-        }
-    }
-}