2008-05-07 18:15:42 +01:00
|
|
|
<?php
|
2008-05-20 20:14:12 +01:00
|
|
|
/*
|
2008-05-14 20:26:48 +01:00
|
|
|
* Laconica - a distributed open-source microblogging tool
|
|
|
|
* Copyright (C) 2008, Controlez-Vous, Inc.
|
2008-05-20 20:14:12 +01:00
|
|
|
*
|
2008-05-14 20:26:48 +01:00
|
|
|
* 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.
|
2008-05-20 20:14:12 +01:00
|
|
|
*
|
2008-05-14 20:26:48 +01:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2008-12-23 19:19:07 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2008-05-14 20:26:48 +01:00
|
|
|
* GNU Affero General Public License for more details.
|
2008-05-20 20:14:12 +01:00
|
|
|
*
|
2008-05-14 20:26:48 +01:00
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
2008-12-23 19:19:07 +00:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2008-05-14 20:26:48 +01:00
|
|
|
*/
|
2008-05-14 20:00:09 +01:00
|
|
|
|
2008-05-17 16:47:01 +01:00
|
|
|
if (!defined('LACONICA')) { exit(1); }
|
2008-05-14 20:00:09 +01:00
|
|
|
|
2008-05-07 18:15:42 +01:00
|
|
|
/**
|
|
|
|
* Table Definition for notice
|
|
|
|
*/
|
2008-09-26 17:18:24 +01:00
|
|
|
require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
|
2008-05-07 18:15:42 +01:00
|
|
|
|
single function for important streams, with memcached support
I moved the 4 streams for a user (with friends, faves, replies,
personal) into functions on the User object. Added a helper function
in Notice for making notice streams. Also, will fetch notice streams
out of the memcached server, if possible. Made the API, RSS, and HTML
output all use the same streams (hopefully cached).
Added some code to Notice to blow the cache when a notice is posted.
Also, added code to favor and disfavor actions to blow the faves
cache, too.
darcs-hash:20080928120119-5ed1f-ead542348bcd3cf315be6f42934353154402eb16.gz
2008-09-28 13:01:19 +01:00
|
|
|
/* We keep the first three 20-notice pages, plus one for pagination check,
|
|
|
|
* in the memcached cache. */
|
|
|
|
|
|
|
|
define('NOTICE_CACHE_WINDOW', 61);
|
|
|
|
|
2008-11-04 05:33:59 +00:00
|
|
|
class Notice extends Memcached_DataObject
|
2008-05-07 18:15:42 +01:00
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
###START_AUTOCODE
|
|
|
|
/* the code below is auto generated do not remove the above tag */
|
|
|
|
|
|
|
|
public $__table = 'notice'; // table name
|
|
|
|
public $id; // int(4) primary_key not_null
|
|
|
|
public $profile_id; // int(4) not_null
|
|
|
|
public $uri; // varchar(255) unique_key
|
|
|
|
public $content; // varchar(140)
|
|
|
|
public $rendered; // text()
|
|
|
|
public $url; // varchar(255)
|
|
|
|
public $created; // datetime() not_null
|
|
|
|
public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
|
|
|
|
public $reply_to; // int(4)
|
|
|
|
public $is_local; // tinyint(1)
|
|
|
|
public $source; // varchar(32)
|
|
|
|
|
|
|
|
/* Static get */
|
2008-12-23 19:33:23 +00:00
|
|
|
function staticGet($k,$v=null)
|
|
|
|
{ return Memcached_DataObject::staticGet('Notice',$k,$v); }
|
2008-12-23 19:19:07 +00:00
|
|
|
|
|
|
|
/* the code above is auto generated do not remove the tag below */
|
|
|
|
###END_AUTOCODE
|
|
|
|
|
2008-12-23 19:33:23 +00:00
|
|
|
function getProfile()
|
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
return Profile::staticGet('id', $this->profile_id);
|
|
|
|
}
|
|
|
|
|
2008-12-23 19:33:23 +00:00
|
|
|
function delete()
|
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
$this->blowCaches(true);
|
|
|
|
$this->blowFavesCache(true);
|
|
|
|
$this->blowInboxes();
|
|
|
|
return parent::delete();
|
|
|
|
}
|
|
|
|
|
2008-12-23 19:33:23 +00:00
|
|
|
function saveTags()
|
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
/* extract all #hastags */
|
|
|
|
$count = preg_match_all('/(?:^|\s)#([A-Za-z0-9_\-\.]{1,64})/', strtolower($this->content), $match);
|
|
|
|
if (!$count) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* elide characters we don't want in the tag */
|
|
|
|
$match[1] = str_replace(array('-', '_', '.'), '', $match[1]);
|
|
|
|
|
|
|
|
/* Add them to the database */
|
|
|
|
foreach(array_unique($match[1]) as $hashtag) {
|
|
|
|
$tag = DB_DataObject::factory('Notice_tag');
|
|
|
|
$tag->notice_id = $this->id;
|
|
|
|
$tag->tag = $hashtag;
|
|
|
|
$tag->created = $this->created;
|
|
|
|
$id = $tag->insert();
|
|
|
|
if (!$id) {
|
|
|
|
$last_error = PEAR::getStaticProperty('DB_DataObject','lastError');
|
|
|
|
common_log(LOG_ERR, 'DB error inserting hashtag: ' . $last_error->message);
|
|
|
|
common_server_error(sprintf(_('DB error inserting hashtag: %s'), $last_error->message));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-12-23 19:21:29 +00:00
|
|
|
static function saveNew($profile_id, $content, $source=null, $is_local=1, $reply_to=null, $uri=null) {
|
2008-12-23 19:19:07 +00:00
|
|
|
|
|
|
|
$profile = Profile::staticGet($profile_id);
|
2008-12-10 19:13:37 +00:00
|
|
|
|
|
|
|
if (!$profile) {
|
2008-12-10 18:11:23 +00:00
|
|
|
common_log(LOG_ERR, 'Problem saving notice. Unknown user.');
|
|
|
|
return _('Problem saving notice. Unknown user.');
|
|
|
|
}
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-12-10 19:43:35 +00:00
|
|
|
if (common_config('throttle', 'enabled') && !Notice::checkEditThrottle($profile_id)) {
|
2008-12-10 17:47:22 +00:00
|
|
|
common_log(LOG_WARNING, 'Excessive posting by profile #' . $profile_id . '; throttled.');
|
2008-12-23 19:19:07 +00:00
|
|
|
return _('Too many notices too fast; take a breather and post again in a few minutes.');
|
2008-12-10 17:47:22 +00:00
|
|
|
}
|
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$banned = common_config('profile', 'banned');
|
2008-12-10 19:13:37 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if ( in_array($profile_id, $banned) || in_array($profile->nickname, $banned)) {
|
|
|
|
common_log(LOG_WARNING, "Attempted post from banned user: $profile->nickname (user id = $profile_id).");
|
2008-12-10 19:13:37 +00:00
|
|
|
return _('You are banned from posting notices on this site.');
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2008-12-10 19:13:37 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$notice = new Notice();
|
|
|
|
$notice->profile_id = $profile_id;
|
2008-12-02 18:42:58 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$blacklist = common_config('public', 'blacklist');
|
2008-12-02 18:42:58 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
# Blacklisted are non-false, but not 1, either
|
2008-12-02 18:42:58 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($blacklist && in_array($profile_id, $blacklist)) {
|
|
|
|
$notice->is_local = -1;
|
|
|
|
} else {
|
|
|
|
$notice->is_local = $is_local;
|
|
|
|
}
|
2008-12-02 18:42:58 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$notice->reply_to = $reply_to;
|
|
|
|
$notice->created = common_sql_now();
|
|
|
|
$notice->content = common_shorten_links($content);
|
|
|
|
$notice->rendered = common_render_content($notice->content, $notice);
|
|
|
|
$notice->source = $source;
|
|
|
|
$notice->uri = $uri;
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$id = $notice->insert();
|
2008-07-30 03:28:56 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if (!$id) {
|
|
|
|
common_log_db_error($notice, 'INSERT', __FILE__);
|
|
|
|
return _('Problem saving notice.');
|
|
|
|
}
|
2008-07-30 03:28:56 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
# Update the URI after the notice is in the database
|
|
|
|
if (!$uri) {
|
|
|
|
$orig = clone($notice);
|
|
|
|
$notice->uri = common_notice_uri($notice);
|
2008-07-30 03:28:56 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if (!$notice->update($orig)) {
|
|
|
|
common_log_db_error($notice, 'UPDATE', __FILE__);
|
|
|
|
return _('Problem saving notice.');
|
|
|
|
}
|
|
|
|
}
|
2008-07-30 03:28:56 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
# XXX: do we need to change this for remote users?
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
common_save_replies($notice);
|
|
|
|
$notice->saveTags();
|
2008-09-15 07:56:16 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
# Clear the cache for subscribed users, so they'll update at next request
|
|
|
|
# XXX: someone clever could prepend instead of clearing the cache
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if (common_config('memcached', 'enabled')) {
|
|
|
|
$notice->blowCaches();
|
|
|
|
}
|
2008-10-22 21:56:21 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$notice->addToInboxes();
|
|
|
|
return $notice;
|
|
|
|
}
|
single function for important streams, with memcached support
I moved the 4 streams for a user (with friends, faves, replies,
personal) into functions on the User object. Added a helper function
in Notice for making notice streams. Also, will fetch notice streams
out of the memcached server, if possible. Made the API, RSS, and HTML
output all use the same streams (hopefully cached).
Added some code to Notice to blow the cache when a notice is posted.
Also, added code to favor and disfavor actions to blow the faves
cache, too.
darcs-hash:20080928120119-5ed1f-ead542348bcd3cf315be6f42934353154402eb16.gz
2008-09-28 13:01:19 +01:00
|
|
|
|
2008-12-10 17:47:22 +00:00
|
|
|
static function checkEditThrottle($profile_id) {
|
|
|
|
$profile = Profile::staticGet($profile_id);
|
|
|
|
if (!$profile) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
# Get the Nth notice
|
|
|
|
$notice = $profile->getNotices(common_config('throttle', 'count') - 1, 1);
|
|
|
|
if ($notice && $notice->fetch()) {
|
|
|
|
# If the Nth notice was posted less than timespan seconds ago
|
|
|
|
if (time() - strtotime($notice->created) <= common_config('throttle', 'timespan')) {
|
|
|
|
# Then we throttle
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
# Either not N notices in the stream, OR the Nth was not posted within timespan seconds
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-12-23 19:33:23 +00:00
|
|
|
function blowCaches($blowLast=false)
|
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
$this->blowSubsCache($blowLast);
|
|
|
|
$this->blowNoticeCache($blowLast);
|
|
|
|
$this->blowRepliesCache($blowLast);
|
|
|
|
$this->blowPublicCache($blowLast);
|
|
|
|
$this->blowTagCache($blowLast);
|
|
|
|
}
|
|
|
|
|
2008-12-23 19:33:23 +00:00
|
|
|
function blowTagCache($blowLast=false)
|
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
$cache = common_memcache();
|
|
|
|
if ($cache) {
|
|
|
|
$tag = new Notice_tag();
|
|
|
|
$tag->notice_id = $this->id;
|
|
|
|
if ($tag->find()) {
|
|
|
|
while ($tag->fetch()) {
|
|
|
|
$cache->delete(common_cache_key('notice_tag:notice_stream:' . $tag->tag));
|
|
|
|
if ($blowLast) {
|
|
|
|
$cache->delete(common_cache_key('notice_tag:notice_stream:' . $tag->tag . ';last'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$tag->free();
|
|
|
|
unset($tag);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-23 19:33:23 +00:00
|
|
|
function blowSubsCache($blowLast=false)
|
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
$cache = common_memcache();
|
|
|
|
if ($cache) {
|
|
|
|
$user = new User();
|
|
|
|
|
|
|
|
$user->query('SELECT id ' .
|
|
|
|
'FROM user JOIN subscription ON user.id = subscription.subscriber ' .
|
|
|
|
'WHERE subscription.subscribed = ' . $this->profile_id);
|
|
|
|
|
|
|
|
while ($user->fetch()) {
|
|
|
|
$cache->delete(common_cache_key('user:notices_with_friends:' . $user->id));
|
|
|
|
if ($blowLast) {
|
|
|
|
$cache->delete(common_cache_key('user:notices_with_friends:' . $user->id . ';last'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$user->free();
|
|
|
|
unset($user);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-23 19:33:23 +00:00
|
|
|
function blowNoticeCache($blowLast=false)
|
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($this->is_local) {
|
|
|
|
$cache = common_memcache();
|
|
|
|
if ($cache) {
|
|
|
|
$cache->delete(common_cache_key('profile:notices:'.$this->profile_id));
|
|
|
|
if ($blowLast) {
|
|
|
|
$cache->delete(common_cache_key('profile:notices:'.$this->profile_id.';last'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-23 19:33:23 +00:00
|
|
|
function blowRepliesCache($blowLast=false)
|
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
$cache = common_memcache();
|
|
|
|
if ($cache) {
|
|
|
|
$reply = new Reply();
|
|
|
|
$reply->notice_id = $this->id;
|
|
|
|
if ($reply->find()) {
|
|
|
|
while ($reply->fetch()) {
|
|
|
|
$cache->delete(common_cache_key('user:replies:'.$reply->profile_id));
|
|
|
|
if ($blowLast) {
|
|
|
|
$cache->delete(common_cache_key('user:replies:'.$reply->profile_id.';last'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$reply->free();
|
|
|
|
unset($reply);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-23 19:33:23 +00:00
|
|
|
function blowPublicCache($blowLast=false)
|
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($this->is_local == 1) {
|
|
|
|
$cache = common_memcache();
|
|
|
|
if ($cache) {
|
|
|
|
$cache->delete(common_cache_key('public'));
|
|
|
|
if ($blowLast) {
|
|
|
|
$cache->delete(common_cache_key('public').';last');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-23 19:33:23 +00:00
|
|
|
function blowFavesCache($blowLast=false)
|
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
$cache = common_memcache();
|
|
|
|
if ($cache) {
|
|
|
|
$fave = new Fave();
|
|
|
|
$fave->notice_id = $this->id;
|
|
|
|
if ($fave->find()) {
|
|
|
|
while ($fave->fetch()) {
|
|
|
|
$cache->delete(common_cache_key('user:faves:'.$fave->user_id));
|
|
|
|
if ($blowLast) {
|
|
|
|
$cache->delete(common_cache_key('user:faves:'.$fave->user_id.';last'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$fave->free();
|
|
|
|
unset($fave);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# XXX: too many args; we need to move to named params or even a separate
|
|
|
|
# class for notice streams
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-12-23 19:21:29 +00:00
|
|
|
static function getStream($qry, $cachekey, $offset=0, $limit=20, $since_id=0, $before_id=0, $order=null, $since=null) {
|
2008-12-09 05:53:45 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if (common_config('memcached', 'enabled')) {
|
2008-12-09 05:53:45 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
# Skip the cache if this is a since, since_id or before_id qry
|
|
|
|
if ($since_id > 0 || $before_id > 0 || $since) {
|
|
|
|
return Notice::getStreamDirect($qry, $offset, $limit, $since_id, $before_id, $order, $since);
|
|
|
|
} else {
|
|
|
|
return Notice::getCachedStream($qry, $cachekey, $offset, $limit, $order);
|
|
|
|
}
|
|
|
|
}
|
2008-11-22 12:42:35 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
return Notice::getStreamDirect($qry, $offset, $limit, $since_id, $before_id, $order, $since);
|
|
|
|
}
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
static function getStreamDirect($qry, $offset, $limit, $since_id, $before_id, $order, $since) {
|
single function for important streams, with memcached support
I moved the 4 streams for a user (with friends, faves, replies,
personal) into functions on the User object. Added a helper function
in Notice for making notice streams. Also, will fetch notice streams
out of the memcached server, if possible. Made the API, RSS, and HTML
output all use the same streams (hopefully cached).
Added some code to Notice to blow the cache when a notice is posted.
Also, added code to favor and disfavor actions to blow the faves
cache, too.
darcs-hash:20080928120119-5ed1f-ead542348bcd3cf315be6f42934353154402eb16.gz
2008-09-28 13:01:19 +01:00
|
|
|
|
2008-12-23 19:44:28 +00:00
|
|
|
$needAnd = false;
|
|
|
|
$needWhere = true;
|
single function for important streams, with memcached support
I moved the 4 streams for a user (with friends, faves, replies,
personal) into functions on the User object. Added a helper function
in Notice for making notice streams. Also, will fetch notice streams
out of the memcached server, if possible. Made the API, RSS, and HTML
output all use the same streams (hopefully cached).
Added some code to Notice to blow the cache when a notice is posted.
Also, added code to favor and disfavor actions to blow the faves
cache, too.
darcs-hash:20080928120119-5ed1f-ead542348bcd3cf315be6f42934353154402eb16.gz
2008-09-28 13:01:19 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if (preg_match('/\bWHERE\b/i', $qry)) {
|
2008-12-23 19:44:28 +00:00
|
|
|
$needWhere = false;
|
|
|
|
$needAnd = true;
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($since_id > 0) {
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($needWhere) {
|
|
|
|
$qry .= ' WHERE ';
|
2008-12-23 19:44:28 +00:00
|
|
|
$needWhere = false;
|
2008-12-23 19:19:07 +00:00
|
|
|
} else {
|
|
|
|
$qry .= ' AND ';
|
|
|
|
}
|
2008-11-22 12:42:35 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$qry .= ' notice.id > ' . $since_id;
|
|
|
|
}
|
single function for important streams, with memcached support
I moved the 4 streams for a user (with friends, faves, replies,
personal) into functions on the User object. Added a helper function
in Notice for making notice streams. Also, will fetch notice streams
out of the memcached server, if possible. Made the API, RSS, and HTML
output all use the same streams (hopefully cached).
Added some code to Notice to blow the cache when a notice is posted.
Also, added code to favor and disfavor actions to blow the faves
cache, too.
darcs-hash:20080928120119-5ed1f-ead542348bcd3cf315be6f42934353154402eb16.gz
2008-09-28 13:01:19 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($before_id > 0) {
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($needWhere) {
|
|
|
|
$qry .= ' WHERE ';
|
2008-12-23 19:44:28 +00:00
|
|
|
$needWhere = false;
|
2008-12-23 19:19:07 +00:00
|
|
|
} else {
|
|
|
|
$qry .= ' AND ';
|
|
|
|
}
|
single function for important streams, with memcached support
I moved the 4 streams for a user (with friends, faves, replies,
personal) into functions on the User object. Added a helper function
in Notice for making notice streams. Also, will fetch notice streams
out of the memcached server, if possible. Made the API, RSS, and HTML
output all use the same streams (hopefully cached).
Added some code to Notice to blow the cache when a notice is posted.
Also, added code to favor and disfavor actions to blow the faves
cache, too.
darcs-hash:20080928120119-5ed1f-ead542348bcd3cf315be6f42934353154402eb16.gz
2008-09-28 13:01:19 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$qry .= ' notice.id < ' . $before_id;
|
|
|
|
}
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($since) {
|
2008-09-28 18:14:07 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($needWhere) {
|
|
|
|
$qry .= ' WHERE ';
|
2008-12-23 19:44:28 +00:00
|
|
|
$needWhere = false;
|
2008-12-23 19:19:07 +00:00
|
|
|
} else {
|
|
|
|
$qry .= ' AND ';
|
|
|
|
}
|
single function for important streams, with memcached support
I moved the 4 streams for a user (with friends, faves, replies,
personal) into functions on the User object. Added a helper function
in Notice for making notice streams. Also, will fetch notice streams
out of the memcached server, if possible. Made the API, RSS, and HTML
output all use the same streams (hopefully cached).
Added some code to Notice to blow the cache when a notice is posted.
Also, added code to favor and disfavor actions to blow the faves
cache, too.
darcs-hash:20080928120119-5ed1f-ead542348bcd3cf315be6f42934353154402eb16.gz
2008-09-28 13:01:19 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$qry .= ' notice.created > \'' . date('Y-m-d H:i:s', $since) . '\'';
|
|
|
|
}
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
# Allow ORDER override
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($order) {
|
|
|
|
$qry .= $order;
|
|
|
|
} else {
|
|
|
|
$qry .= ' ORDER BY notice.created DESC, notice.id DESC ';
|
|
|
|
}
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if (common_config('db','type') == 'pgsql') {
|
|
|
|
$qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
|
|
|
|
} else {
|
|
|
|
$qry .= ' LIMIT ' . $offset . ', ' . $limit;
|
|
|
|
}
|
single function for important streams, with memcached support
I moved the 4 streams for a user (with friends, faves, replies,
personal) into functions on the User object. Added a helper function
in Notice for making notice streams. Also, will fetch notice streams
out of the memcached server, if possible. Made the API, RSS, and HTML
output all use the same streams (hopefully cached).
Added some code to Notice to blow the cache when a notice is posted.
Also, added code to favor and disfavor actions to blow the faves
cache, too.
darcs-hash:20080928120119-5ed1f-ead542348bcd3cf315be6f42934353154402eb16.gz
2008-09-28 13:01:19 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$notice = new Notice();
|
2008-11-22 12:42:35 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$notice->query($qry);
|
2008-11-22 12:41:51 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
return $notice;
|
|
|
|
}
|
2008-11-22 12:42:35 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
# XXX: this is pretty long and should probably be broken up into
|
|
|
|
# some helper functions
|
2008-11-22 12:42:35 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
static function getCachedStream($qry, $cachekey, $offset, $limit, $order) {
|
2008-11-22 12:42:35 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
# If outside our cache window, just go to the DB
|
2008-11-22 12:42:35 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($offset + $limit > NOTICE_CACHE_WINDOW) {
|
2008-12-23 19:21:29 +00:00
|
|
|
return Notice::getStreamDirect($qry, $offset, $limit, null, null, $order, null);
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2008-11-22 12:42:35 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
# Get the cache; if we can't, just go to the DB
|
2008-11-22 12:42:35 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$cache = common_memcache();
|
2008-11-22 12:42:35 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if (!$cache) {
|
2008-12-23 19:21:29 +00:00
|
|
|
return Notice::getStreamDirect($qry, $offset, $limit, null, null, $order, null);
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2008-11-22 12:41:51 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
# Get the notices out of the cache
|
2008-11-22 12:41:51 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$notices = $cache->get(common_cache_key($cachekey));
|
2008-11-22 12:41:51 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
# On a cache hit, return a DB-object-like wrapper
|
2008-11-22 12:42:35 +00:00
|
|
|
|
2008-12-23 19:44:28 +00:00
|
|
|
if ($notices !== false) {
|
2008-12-23 19:19:07 +00:00
|
|
|
$wrapper = new NoticeWrapper(array_slice($notices, $offset, $limit));
|
|
|
|
return $wrapper;
|
|
|
|
}
|
single function for important streams, with memcached support
I moved the 4 streams for a user (with friends, faves, replies,
personal) into functions on the User object. Added a helper function
in Notice for making notice streams. Also, will fetch notice streams
out of the memcached server, if possible. Made the API, RSS, and HTML
output all use the same streams (hopefully cached).
Added some code to Notice to blow the cache when a notice is posted.
Also, added code to favor and disfavor actions to blow the faves
cache, too.
darcs-hash:20080928120119-5ed1f-ead542348bcd3cf315be6f42934353154402eb16.gz
2008-09-28 13:01:19 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
# If the cache was invalidated because of new data being
|
|
|
|
# added, we can try and just get the new stuff. We keep an additional
|
|
|
|
# copy of the data at the key + ';last'
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
# No cache hit. Try to get the *last* cached version
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$last_notices = $cache->get(common_cache_key($cachekey) . ';last');
|
single function for important streams, with memcached support
I moved the 4 streams for a user (with friends, faves, replies,
personal) into functions on the User object. Added a helper function
in Notice for making notice streams. Also, will fetch notice streams
out of the memcached server, if possible. Made the API, RSS, and HTML
output all use the same streams (hopefully cached).
Added some code to Notice to blow the cache when a notice is posted.
Also, added code to favor and disfavor actions to blow the faves
cache, too.
darcs-hash:20080928120119-5ed1f-ead542348bcd3cf315be6f42934353154402eb16.gz
2008-09-28 13:01:19 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($last_notices) {
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
# Reverse-chron order, so last ID is last.
|
single function for important streams, with memcached support
I moved the 4 streams for a user (with friends, faves, replies,
personal) into functions on the User object. Added a helper function
in Notice for making notice streams. Also, will fetch notice streams
out of the memcached server, if possible. Made the API, RSS, and HTML
output all use the same streams (hopefully cached).
Added some code to Notice to blow the cache when a notice is posted.
Also, added code to favor and disfavor actions to blow the faves
cache, too.
darcs-hash:20080928120119-5ed1f-ead542348bcd3cf315be6f42934353154402eb16.gz
2008-09-28 13:01:19 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$last_id = $last_notices[0]->id;
|
single function for important streams, with memcached support
I moved the 4 streams for a user (with friends, faves, replies,
personal) into functions on the User object. Added a helper function
in Notice for making notice streams. Also, will fetch notice streams
out of the memcached server, if possible. Made the API, RSS, and HTML
output all use the same streams (hopefully cached).
Added some code to Notice to blow the cache when a notice is posted.
Also, added code to favor and disfavor actions to blow the faves
cache, too.
darcs-hash:20080928120119-5ed1f-ead542348bcd3cf315be6f42934353154402eb16.gz
2008-09-28 13:01:19 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
# XXX: this assumes monotonically increasing IDs; a fair
|
|
|
|
# bet with our DB.
|
2008-11-22 12:42:35 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$new_notice = Notice::getStreamDirect($qry, 0, NOTICE_CACHE_WINDOW,
|
2008-12-23 19:21:29 +00:00
|
|
|
$last_id, null, $order, null);
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($new_notice) {
|
|
|
|
$new_notices = array();
|
|
|
|
while ($new_notice->fetch()) {
|
|
|
|
$new_notices[] = clone($new_notice);
|
|
|
|
}
|
|
|
|
$new_notice->free();
|
|
|
|
$notices = array_slice(array_merge($new_notices, $last_notices),
|
|
|
|
0, NOTICE_CACHE_WINDOW);
|
2008-09-28 18:14:07 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
# Store the array in the cache for next time
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$result = $cache->set(common_cache_key($cachekey), $notices);
|
|
|
|
$result = $cache->set(common_cache_key($cachekey) . ';last', $notices);
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
# return a wrapper of the array for use now
|
2008-10-22 21:56:21 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
return new NoticeWrapper(array_slice($notices, $offset, $limit));
|
|
|
|
}
|
|
|
|
}
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
# Otherwise, get the full cache window out of the DB
|
2008-11-22 12:42:35 +00:00
|
|
|
|
2008-12-23 19:21:29 +00:00
|
|
|
$notice = Notice::getStreamDirect($qry, 0, NOTICE_CACHE_WINDOW, null, null, $order, null);
|
single function for important streams, with memcached support
I moved the 4 streams for a user (with friends, faves, replies,
personal) into functions on the User object. Added a helper function
in Notice for making notice streams. Also, will fetch notice streams
out of the memcached server, if possible. Made the API, RSS, and HTML
output all use the same streams (hopefully cached).
Added some code to Notice to blow the cache when a notice is posted.
Also, added code to favor and disfavor actions to blow the faves
cache, too.
darcs-hash:20080928120119-5ed1f-ead542348bcd3cf315be6f42934353154402eb16.gz
2008-09-28 13:01:19 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
# If there are no hits, just return the value
|
2008-10-01 01:12:33 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if (!$notice) {
|
|
|
|
return $notice;
|
|
|
|
}
|
2008-11-22 12:42:35 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
# Pack results into an array
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$notices = array();
|
2008-11-14 07:42:11 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
while ($notice->fetch()) {
|
|
|
|
$notices[] = clone($notice);
|
|
|
|
}
|
2008-10-23 21:35:05 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$notice->free();
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
# Store the array in the cache for next time
|
2008-10-23 21:35:05 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$result = $cache->set(common_cache_key($cachekey), $notices);
|
|
|
|
$result = $cache->set(common_cache_key($cachekey) . ';last', $notices);
|
2008-11-14 07:42:11 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
# return a wrapper of the array for use now
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$wrapper = new NoticeWrapper(array_slice($notices, $offset, $limit));
|
|
|
|
|
|
|
|
return $wrapper;
|
|
|
|
}
|
|
|
|
|
2008-12-23 19:33:23 +00:00
|
|
|
function publicStream($offset=0, $limit=20, $since_id=0, $before_id=0, $since=null)
|
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
|
|
|
|
$parts = array();
|
|
|
|
|
|
|
|
$qry = 'SELECT * FROM notice ';
|
|
|
|
|
|
|
|
if (common_config('public', 'localonly')) {
|
|
|
|
$parts[] = 'is_local = 1';
|
|
|
|
} else {
|
|
|
|
# -1 == blacklisted
|
|
|
|
$parts[] = 'is_local != -1';
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($parts) {
|
|
|
|
$qry .= ' WHERE ' . implode(' AND ', $parts);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Notice::getStream($qry,
|
|
|
|
'public',
|
2008-12-23 19:21:29 +00:00
|
|
|
$offset, $limit, $since_id, $before_id, null, $since);
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2008-12-23 19:33:23 +00:00
|
|
|
function addToInboxes()
|
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
$enabled = common_config('inboxes', 'enabled');
|
|
|
|
|
|
|
|
if ($enabled === true || $enabled === 'transitional') {
|
|
|
|
$inbox = new Notice_inbox();
|
|
|
|
$qry = 'INSERT INTO notice_inbox (user_id, notice_id, created) ' .
|
|
|
|
'SELECT user.id, ' . $this->id . ', "' . $this->created . '" ' .
|
|
|
|
'FROM user JOIN subscription ON user.id = subscription.subscriber ' .
|
|
|
|
'WHERE subscription.subscribed = ' . $this->profile_id . ' ' .
|
|
|
|
'AND NOT EXISTS (SELECT user_id, notice_id ' .
|
|
|
|
'FROM notice_inbox ' .
|
|
|
|
'WHERE user_id = user.id ' .
|
|
|
|
'AND notice_id = ' . $this->id . ' )';
|
|
|
|
if ($enabled === 'transitional') {
|
|
|
|
$qry .= ' AND user.inboxed = 1';
|
|
|
|
}
|
|
|
|
$inbox->query($qry);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Delete from inboxes if we're deleted.
|
|
|
|
|
2008-12-23 19:33:23 +00:00
|
|
|
function blowInboxes()
|
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
|
|
|
|
$enabled = common_config('inboxes', 'enabled');
|
|
|
|
|
|
|
|
if ($enabled === true || $enabled === 'transitional') {
|
|
|
|
$inbox = new Notice_inbox();
|
|
|
|
$inbox->notice_id = $this->id;
|
|
|
|
$inbox->delete();
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-05-07 18:15:42 +01:00
|
|
|
}
|
2008-10-22 21:56:21 +01:00
|
|
|
|