2008-07-06 23:38:39 +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/>.
|
|
|
|
|
2008-07-06 23:38:39 +01:00
|
|
|
/**
|
|
|
|
* Table Definition for reply
|
|
|
|
*/
|
2020-06-28 23:41:46 +01:00
|
|
|
|
|
|
|
defined('GNUSOCIAL') || die();
|
2008-07-06 23:38:39 +01:00
|
|
|
|
2011-08-22 22:52:02 +01:00
|
|
|
class Reply extends Managed_DataObject
|
2008-07-06 23:38:39 +01:00
|
|
|
{
|
|
|
|
###START_AUTOCODE
|
|
|
|
/* the code below is auto generated do not remove the above tag */
|
|
|
|
|
|
|
|
public $__table = 'reply'; // table name
|
|
|
|
public $notice_id; // int(4) primary_key not_null
|
|
|
|
public $profile_id; // int(4) primary_key not_null
|
2020-06-28 23:41:46 +01:00
|
|
|
public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
|
2009-04-30 01:45:33 +01:00
|
|
|
public $replied_id; // int(4)
|
2008-07-06 23:38:39 +01:00
|
|
|
|
|
|
|
/* the code above is auto generated do not remove the tag below */
|
|
|
|
###END_AUTOCODE
|
2009-04-30 01:45:33 +01:00
|
|
|
|
2011-08-22 22:52:02 +01:00
|
|
|
public static function schemaDef()
|
|
|
|
{
|
|
|
|
return array(
|
|
|
|
'fields' => array(
|
|
|
|
'notice_id' => array('type' => 'int', 'not null' => true, 'description' => 'notice that is the reply'),
|
|
|
|
'profile_id' => array('type' => 'int', 'not null' => true, 'description' => 'profile replied to'),
|
2020-06-28 23:41:46 +01:00
|
|
|
'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
|
2011-08-22 22:52:02 +01:00
|
|
|
'replied_id' => array('type' => 'int', 'description' => 'notice replied to (not used, see notice.reply_to)'),
|
|
|
|
),
|
|
|
|
'primary key' => array('notice_id', 'profile_id'),
|
|
|
|
'foreign keys' => array(
|
|
|
|
'reply_notice_id_fkey' => array('notice', array('notice_id' => 'id')),
|
|
|
|
'reply_profile_id_fkey' => array('profile', array('profile_id' => 'id')),
|
|
|
|
),
|
|
|
|
'indexes' => array(
|
|
|
|
'reply_notice_id_idx' => array('notice_id'),
|
|
|
|
'reply_profile_id_idx' => array('profile_id'),
|
|
|
|
'reply_replied_id_idx' => array('replied_id'),
|
2011-10-20 17:50:39 +01:00
|
|
|
'reply_profile_id_modified_notice_id_idx' => array('profile_id', 'modified', 'notice_id')
|
2011-08-22 22:52:02 +01:00
|
|
|
),
|
|
|
|
);
|
2020-06-28 23:41:46 +01:00
|
|
|
}
|
|
|
|
|
2010-04-23 14:55:46 +01:00
|
|
|
/**
|
|
|
|
* Wrapper for record insertion to update related caches
|
|
|
|
*/
|
2020-06-28 23:41:46 +01:00
|
|
|
public function insert()
|
2010-04-23 14:55:46 +01:00
|
|
|
{
|
|
|
|
$result = parent::insert();
|
|
|
|
|
|
|
|
if ($result) {
|
|
|
|
self::blow('reply:stream:%d', $this->profile_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
2020-06-28 23:41:46 +01:00
|
|
|
public static function stream(
|
|
|
|
$user_id,
|
|
|
|
$offset = 0,
|
|
|
|
$limit = NOTICES_PER_PAGE,
|
|
|
|
$since_id = 0,
|
|
|
|
$max_id = 0
|
|
|
|
) {
|
2016-03-01 13:51:47 +00:00
|
|
|
// FIXME: Use some other method to get Profile::current() in order
|
|
|
|
// to avoid confusion between background processing and session user.
|
|
|
|
$stream = new ReplyNoticeStream($user_id, Profile::current());
|
2011-03-23 15:29:55 +00:00
|
|
|
return $stream->getNotices($offset, $limit, $since_id, $max_id);
|
2009-04-30 01:45:33 +01:00
|
|
|
}
|
2008-07-06 23:38:39 +01:00
|
|
|
}
|