2010-09-05 04:45:55 +01:00
|
|
|
<?php
|
2020-06-28 23:41:46 +01:00
|
|
|
// This file is part of GNU social - https://www.gnu.org/software/social
|
|
|
|
//
|
|
|
|
// GNU social 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.
|
|
|
|
//
|
|
|
|
// GNU social 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 GNU social. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2010-09-05 04:45:55 +01:00
|
|
|
/**
|
|
|
|
* Data class for remembering notice-to-status mappings
|
|
|
|
*
|
2020-06-28 23:41:46 +01:00
|
|
|
* @category Data
|
|
|
|
* @package GNUsocial
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @copyright 2010 StatusNet, Inc.
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2010-09-05 04:45:55 +01:00
|
|
|
*/
|
|
|
|
|
2020-06-28 23:41:46 +01:00
|
|
|
defined('GNUSOCIAL') || die();
|
2010-09-05 04:45:55 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Data class for mapping notices to statuses
|
|
|
|
*
|
2020-06-28 23:41:46 +01:00
|
|
|
* Notices flow back and forth between Twitter and GNU social. We use this
|
|
|
|
* table to remember which GNU social notice corresponds to which Twitter
|
2010-09-05 04:45:55 +01:00
|
|
|
* status.
|
|
|
|
*
|
|
|
|
* Note that notice_id is unique only within a single database; if you
|
|
|
|
* want to share this data for some reason, get the notice's URI and use
|
|
|
|
* that instead, since it's universally unique.
|
|
|
|
*
|
2020-06-28 23:41:46 +01:00
|
|
|
* @category Action
|
|
|
|
* @package GNUsocial
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @copyright 2010 StatusNet, Inc.
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2010-09-05 04:45:55 +01:00
|
|
|
*
|
2020-06-28 23:41:46 +01:00
|
|
|
* @see DB_DataObject
|
2010-09-05 04:45:55 +01:00
|
|
|
*/
|
2013-08-18 11:10:44 +01:00
|
|
|
class Notice_to_status extends Managed_DataObject
|
2010-09-05 04:45:55 +01:00
|
|
|
{
|
|
|
|
public $__table = 'notice_to_status'; // table name
|
|
|
|
public $notice_id; // int(4) primary_key not_null
|
2013-08-19 16:08:18 +01:00
|
|
|
public $status_id; // bigint not_null
|
2020-06-28 23:41:46 +01:00
|
|
|
public $created; // datetime()
|
|
|
|
public $modified; // timestamp() not_null
|
2010-09-05 04:45:55 +01:00
|
|
|
|
2013-08-19 16:08:18 +01:00
|
|
|
public static function schemaDef()
|
2010-09-05 04:45:55 +01:00
|
|
|
{
|
2013-08-19 16:08:18 +01:00
|
|
|
return array(
|
|
|
|
'fields' => array(
|
|
|
|
'notice_id' => array('type' => 'int', 'not null' => true, 'description' => 'local notice id'),
|
|
|
|
'status_id' => array('type' => 'int', 'size' => 'big', 'not null' => true, 'description' => 'twitter status id'),
|
2020-06-28 23:41:46 +01:00
|
|
|
'created' => array('type' => 'datetime', 'description' => 'date this record was created'),
|
2013-08-19 16:08:18 +01:00
|
|
|
'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
|
|
|
|
),
|
|
|
|
'primary key' => array('notice_id'),
|
|
|
|
'unique keys' => array(
|
2020-07-31 14:12:48 +01:00
|
|
|
'notice_to_status_status_id_key' => array('status_id'),
|
2013-08-19 16:08:18 +01:00
|
|
|
),
|
|
|
|
'foreign keys' => array(
|
|
|
|
'notice_to_status_notice_id_fkey' => array('notice', array('notice_id' => 'id')),
|
|
|
|
),
|
|
|
|
);
|
2010-09-05 04:45:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Save a mapping between a notice and a status
|
2010-11-12 21:06:41 +00:00
|
|
|
* Warning: status_id values may not fit in 32-bit integers.
|
2010-09-05 04:45:55 +01:00
|
|
|
*
|
|
|
|
* @param integer $notice_id ID of the notice in StatusNet
|
|
|
|
* @param integer $status_id ID of the status in Twitter
|
|
|
|
*
|
|
|
|
* @return Notice_to_status new object for this value
|
|
|
|
*/
|
2020-06-28 23:41:46 +01:00
|
|
|
public static function saveNew($notice_id, $status_id)
|
2010-09-05 04:45:55 +01:00
|
|
|
{
|
2010-11-12 21:06:41 +00:00
|
|
|
if (empty($notice_id)) {
|
|
|
|
throw new Exception("Invalid notice_id $notice_id");
|
|
|
|
}
|
2013-08-18 12:04:58 +01:00
|
|
|
$n2s = Notice_to_status::getKV('notice_id', $notice_id);
|
2010-09-05 05:05:11 +01:00
|
|
|
|
|
|
|
if (!empty($n2s)) {
|
|
|
|
return $n2s;
|
|
|
|
}
|
|
|
|
|
2010-11-12 21:06:41 +00:00
|
|
|
if (empty($status_id)) {
|
|
|
|
throw new Exception("Invalid status_id $status_id");
|
|
|
|
}
|
2013-08-18 12:04:58 +01:00
|
|
|
$n2s = Notice_to_status::getKV('status_id', $status_id);
|
2010-09-05 05:05:11 +01:00
|
|
|
|
|
|
|
if (!empty($n2s)) {
|
|
|
|
return $n2s;
|
|
|
|
}
|
|
|
|
|
2010-09-05 05:07:02 +01:00
|
|
|
common_debug("Mapping notice {$notice_id} to Twitter status {$status_id}");
|
|
|
|
|
2010-09-05 04:45:55 +01:00
|
|
|
$n2s = new Notice_to_status();
|
|
|
|
|
|
|
|
$n2s->notice_id = $notice_id;
|
|
|
|
$n2s->status_id = $status_id;
|
|
|
|
$n2s->created = common_sql_now();
|
|
|
|
|
|
|
|
$n2s->insert();
|
|
|
|
|
|
|
|
return $n2s;
|
|
|
|
}
|
|
|
|
}
|