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
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* 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
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
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
|
|
|
{
|
|
|
|
###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
|
2008-05-22 19:41:09 +01:00
|
|
|
public $uri; // varchar(255) unique_key
|
2008-11-12 17:25:17 +00:00
|
|
|
public $content; // varchar(140)
|
|
|
|
public $rendered; // text()
|
|
|
|
public $url; // varchar(255)
|
2008-05-07 18:15:42 +01:00
|
|
|
public $created; // datetime() not_null
|
|
|
|
public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
|
2008-11-12 17:25:17 +00:00
|
|
|
public $reply_to; // int(4)
|
|
|
|
public $is_local; // tinyint(1)
|
|
|
|
public $source; // varchar(32)
|
2008-05-07 18:15:42 +01:00
|
|
|
|
|
|
|
/* Static get */
|
2008-09-26 17:09:41 +01:00
|
|
|
function staticGet($k,$v=NULL) { return Memcached_DataObject::staticGet('Notice',$k,$v); }
|
2008-05-07 18:15:42 +01:00
|
|
|
|
|
|
|
/* the code above is auto generated do not remove the tag below */
|
|
|
|
###END_AUTOCODE
|
2008-05-09 03:16:04 +01:00
|
|
|
|
|
|
|
function getProfile() {
|
2008-10-04 03:11:58 +01:00
|
|
|
return Profile::staticGet('id', $this->profile_id);
|
2008-05-09 03:16:04 +01:00
|
|
|
}
|
2008-07-20 06:57:02 +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
|
|
|
function delete() {
|
|
|
|
$this->blowCaches();
|
|
|
|
$this->blowFavesCache();
|
2008-10-23 21:35:05 +01:00
|
|
|
$this->blowInboxes();
|
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
|
|
|
parent::delete();
|
|
|
|
}
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-07-20 06:57:02 +01:00
|
|
|
function saveTags() {
|
|
|
|
/* extract all #hastags */
|
2008-09-01 03:59:32 +01:00
|
|
|
$count = preg_match_all('/(?:^|\s)#([A-Za-z0-9_\-\.]{1,64})/', strtolower($this->content), $match);
|
2008-07-20 06:57:02 +01:00
|
|
|
if (!$count) {
|
|
|
|
return true;
|
|
|
|
}
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-09-01 03:59:32 +01:00
|
|
|
/* elide characters we don't want in the tag */
|
|
|
|
$match[1] = str_replace(array('-', '_', '.'), '', $match[1]);
|
2008-07-20 06:57:02 +01:00
|
|
|
|
|
|
|
/* 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');
|
2008-08-08 00:42:27 +01:00
|
|
|
common_log(LOG_ERR, 'DB error inserting hashtag: ' . $last_error->message);
|
2008-07-20 06:57:02 +01:00
|
|
|
common_server_error(sprintf(_('DB error inserting hashtag: %s'), $last_error->message));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2008-08-26 22:11:08 +01:00
|
|
|
|
|
|
|
static function saveNew($profile_id, $content, $source=NULL, $is_local=1, $reply_to=NULL, $uri=NULL) {
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-07-30 03:28:56 +01:00
|
|
|
$notice = new Notice();
|
|
|
|
$notice->profile_id = $profile_id;
|
|
|
|
$notice->is_local = $is_local;
|
2008-08-15 19:53:17 +01:00
|
|
|
$notice->reply_to = $reply_to;
|
2008-08-25 19:30:05 +01:00
|
|
|
$notice->created = common_sql_now();
|
2008-07-30 03:28:56 +01:00
|
|
|
$notice->content = $content;
|
|
|
|
$notice->rendered = common_render_content($notice->content, $notice);
|
2008-09-02 18:38:04 +01:00
|
|
|
$notice->source = $source;
|
|
|
|
$notice->uri = $uri;
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-07-30 03:28:56 +01:00
|
|
|
$id = $notice->insert();
|
|
|
|
|
|
|
|
if (!$id) {
|
2008-09-26 17:50:29 +01:00
|
|
|
common_log_db_error($notice, 'INSERT', __FILE__);
|
2008-07-30 03:28:56 +01:00
|
|
|
return _('Problem saving notice.');
|
|
|
|
}
|
|
|
|
|
2008-09-02 18:38:04 +01:00
|
|
|
# Update the URI after the notice is in the database
|
|
|
|
if (!$uri) {
|
|
|
|
$orig = clone($notice);
|
2008-08-26 22:11:08 +01:00
|
|
|
$notice->uri = common_notice_uri($notice);
|
2008-07-30 03:28:56 +01:00
|
|
|
|
2008-09-02 18:38:04 +01:00
|
|
|
if (!$notice->update($orig)) {
|
2008-09-26 17:52:01 +01:00
|
|
|
common_log_db_error($notice, 'UPDATE', __FILE__);
|
2008-09-02 18:38:04 +01:00
|
|
|
return _('Problem saving notice.');
|
|
|
|
}
|
2008-07-30 03:28:56 +01:00
|
|
|
}
|
|
|
|
|
2008-08-26 22:11:08 +01:00
|
|
|
# XXX: do we need to change this for remote users?
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-07-30 03:28:56 +01:00
|
|
|
common_save_replies($notice);
|
|
|
|
$notice->saveTags();
|
2008-09-15 07:56:16 +01: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-09-15 07:56:16 +01:00
|
|
|
if (common_config('memcached', 'enabled')) {
|
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
|
|
|
$notice->blowCaches();
|
2008-09-15 07:56:16 +01:00
|
|
|
}
|
2008-10-22 21:56:21 +01:00
|
|
|
|
|
|
|
$notice->addToInboxes();
|
2008-07-30 03:28:56 +01:00
|
|
|
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
|
|
|
|
|
|
|
function blowCaches() {
|
|
|
|
$this->blowSubsCache();
|
|
|
|
$this->blowNoticeCache();
|
|
|
|
$this->blowRepliesCache();
|
|
|
|
$this->blowPublicCache();
|
2008-09-28 19:18:12 +01:00
|
|
|
$this->blowTagCache();
|
|
|
|
}
|
|
|
|
|
|
|
|
function blowTagCache() {
|
|
|
|
$cache = common_memcache();
|
|
|
|
if ($cache) {
|
|
|
|
$tag = new Notice_tag();
|
|
|
|
$tag->notice_id = $this->id;
|
|
|
|
if ($tag->find()) {
|
|
|
|
while ($tag->fetch()) {
|
2008-09-29 23:21:07 +01:00
|
|
|
$cache->delete(common_cache_key('notice_tag:notice_stream:' . $tag->tag));
|
2008-09-28 19:18:12 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
$tag->free();
|
|
|
|
unset($tag);
|
|
|
|
}
|
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-11-04 05:33:59 +00:00
|
|
|
|
2008-09-20 18:53:39 +01:00
|
|
|
function blowSubsCache() {
|
2008-09-26 21:01:02 +01:00
|
|
|
$cache = common_memcache();
|
|
|
|
if ($cache) {
|
2008-09-20 18:53:39 +01:00
|
|
|
$user = new User();
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-09-20 18:53:39 +01:00
|
|
|
$user->query('SELECT id ' .
|
|
|
|
'FROM user JOIN subscription ON user.id = subscription.subscriber ' .
|
|
|
|
'WHERE subscription.subscribed = ' . $this->profile_id);
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-09-20 18:53:39 +01:00
|
|
|
while ($user->fetch()) {
|
|
|
|
$cache->delete(common_cache_key('user:notices_with_friends:' . $user->id));
|
|
|
|
}
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-09-20 18:53:39 +01:00
|
|
|
$user->free();
|
|
|
|
unset($user);
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
|
|
|
|
function blowNoticeCache() {
|
|
|
|
if ($this->is_local) {
|
|
|
|
$cache = common_memcache();
|
|
|
|
if ($cache) {
|
|
|
|
$cache->delete(common_cache_key('user:notices:'.$this->profile_id));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function blowRepliesCache() {
|
|
|
|
$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));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$reply->free();
|
|
|
|
unset($reply);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function blowPublicCache() {
|
|
|
|
if ($this->is_local) {
|
|
|
|
$cache = common_memcache();
|
|
|
|
if ($cache) {
|
|
|
|
$cache->delete(common_cache_key('public'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function blowFavesCache() {
|
|
|
|
$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));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$fave->free();
|
|
|
|
unset($fave);
|
|
|
|
}
|
|
|
|
}
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-11-12 17:25:17 +00:00
|
|
|
# XXX: too many args; we need to move to named params or even a separate
|
|
|
|
# class for notice streams
|
2008-11-22 12:42:35 +00:00
|
|
|
|
2008-11-12 17:25:17 +00:00
|
|
|
static function getStream($qry, $cachekey, $offset=0, $limit=20, $since_id=0, $before_id=0, $order=NULL) {
|
2008-11-04 05:33:59 +00: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
|
|
|
if (common_config('memcached', 'enabled')) {
|
2008-11-04 05:33:59 +00:00
|
|
|
|
|
|
|
# Skip the cache if this is a since_id or before_id qry
|
|
|
|
if ($since_id > 0 || $before_id > 0) {
|
2008-11-12 17:25:17 +00:00
|
|
|
return Notice::getStreamDirect($qry, $offset, $limit, $since_id, $before_id, $order);
|
2008-11-04 05:33:59 +00:00
|
|
|
} else {
|
2008-11-12 17:25:17 +00:00
|
|
|
return Notice::getCachedStream($qry, $cachekey, $offset, $limit, $order);
|
2008-11-04 05:33:59 +00: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
|
|
|
}
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-11-12 17:25:17 +00:00
|
|
|
return Notice::getStreamDirect($qry, $offset, $limit, $since_id, $before_id, $order);
|
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-11-12 17:25:17 +00:00
|
|
|
static function getStreamDirect($qry, $offset, $limit, $since_id, $before_id, $order) {
|
2008-11-04 05:33:59 +00:00
|
|
|
|
|
|
|
$needAnd = FALSE;
|
|
|
|
$needWhere = TRUE;
|
|
|
|
|
|
|
|
if (preg_match('/\bWHERE\b/i', $qry)) {
|
|
|
|
$needWhere = FALSE;
|
|
|
|
$needAnd = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($since_id > 0) {
|
|
|
|
|
|
|
|
if ($needWhere) {
|
|
|
|
$qry .= ' WHERE ';
|
|
|
|
$needWhere = FALSE;
|
|
|
|
} else {
|
|
|
|
$qry .= ' AND ';
|
|
|
|
}
|
|
|
|
|
|
|
|
$qry .= ' notice.id > ' . $since_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($before_id > 0) {
|
|
|
|
|
|
|
|
if ($needWhere) {
|
|
|
|
$qry .= ' WHERE ';
|
|
|
|
$needWhere = FALSE;
|
|
|
|
} else {
|
|
|
|
$qry .= ' AND ';
|
|
|
|
}
|
|
|
|
|
|
|
|
$qry .= ' notice.id < ' . $before_id;
|
|
|
|
}
|
|
|
|
|
2008-11-12 17:25:17 +00:00
|
|
|
# Allow ORDER override
|
2008-11-22 12:42:35 +00:00
|
|
|
|
2008-11-12 17:25:17 +00:00
|
|
|
if ($order) {
|
|
|
|
$qry .= $order;
|
|
|
|
} else {
|
|
|
|
$qry .= ' ORDER BY notice.created DESC, notice.id DESC ';
|
|
|
|
}
|
2008-11-04 05:33:59 +00:00
|
|
|
|
|
|
|
if (common_config('db','type') == 'pgsql') {
|
2008-09-28 18:43:16 +01:00
|
|
|
$qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
|
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
|
|
|
} else {
|
2008-09-28 18:43:16 +01:00
|
|
|
$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
|
|
|
}
|
|
|
|
|
|
|
|
$notice = new Notice();
|
|
|
|
|
|
|
|
$notice->query($qry);
|
2008-11-04 05:33:59 +00: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
|
|
|
return $notice;
|
|
|
|
}
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-11-22 12:41:51 +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-11-12 17:25:17 +00:00
|
|
|
static function getCachedStream($qry, $cachekey, $offset, $limit, $order) {
|
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
|
|
|
|
|
|
|
# If outside our cache window, just go to the DB
|
2008-11-04 05:33:59 +00: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
|
|
|
if ($offset + $limit > NOTICE_CACHE_WINDOW) {
|
2008-11-12 17:25:17 +00:00
|
|
|
return Notice::getStreamDirect($qry, $offset, $limit, NULL, NULL, $order);
|
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
|
|
|
}
|
|
|
|
|
|
|
|
# Get the cache; if we can't, just go to the DB
|
2008-11-04 05:33:59 +00: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
|
|
|
$cache = common_memcache();
|
2008-09-28 18:14:07 +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
|
|
|
if (!$cache) {
|
2008-11-12 17:25:17 +00:00
|
|
|
return Notice::getStreamDirect($qry, $offset, $limit, NULL, NULL, $order);
|
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
|
|
|
}
|
|
|
|
|
|
|
|
# Get the notices out of the cache
|
2008-11-04 05:33:59 +00: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
|
|
|
$notices = $cache->get(common_cache_key($cachekey));
|
2008-11-04 05:33:59 +00: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
|
|
|
# On a cache hit, return a DB-object-like wrapper
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-09-28 18:35:58 +01:00
|
|
|
if ($notices !== FALSE) {
|
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
|
|
|
$wrapper = new NoticeWrapper(array_slice($notices, $offset, $limit));
|
|
|
|
return $wrapper;
|
|
|
|
}
|
|
|
|
|
2008-11-22 12:41:51 +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-22 12:42:35 +00:00
|
|
|
|
2008-11-22 12:41:51 +00:00
|
|
|
# No cache hit. Try to get the *last* cached version
|
|
|
|
|
|
|
|
$last_notices = $cache->get(common_cache_key($cachekey) . ';last');
|
2008-11-22 12:42:35 +00:00
|
|
|
|
2008-11-22 12:41:51 +00:00
|
|
|
if ($last_notices) {
|
2008-11-22 12:42:35 +00:00
|
|
|
|
2008-11-22 12:41:51 +00:00
|
|
|
# Reverse-chron order, so last ID is last.
|
2008-11-22 12:42:35 +00:00
|
|
|
|
2008-11-22 12:41:51 +00:00
|
|
|
$last_id = $last_notices[0]->id;
|
2008-11-22 12:42:35 +00:00
|
|
|
|
2008-11-22 12:41:51 +00:00
|
|
|
# XXX: this assumes monotonically increasing IDs; a fair
|
|
|
|
# bet with our DB.
|
2008-11-22 12:42:35 +00:00
|
|
|
|
2008-11-22 12:41:51 +00:00
|
|
|
$new_notice = Notice::getStreamDirect($qry, 0, NOTICE_CACHE_WINDOW,
|
|
|
|
$last_id, NULL, $order);
|
2008-11-22 12:42:35 +00:00
|
|
|
|
2008-11-22 12:41:51 +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-11-22 12:42:35 +00:00
|
|
|
|
2008-11-22 12:41:51 +00:00
|
|
|
# Store the array in the cache for next time
|
|
|
|
|
|
|
|
$result = $cache->set(common_cache_key($cachekey), $notices);
|
|
|
|
$result = $cache->set(common_cache_key($cachekey) . ';last', $notices);
|
|
|
|
|
|
|
|
# return a wrapper of the array for use now
|
|
|
|
|
|
|
|
return new NoticeWrapper(array_slice($notices, $offset, $limit));
|
|
|
|
}
|
|
|
|
}
|
2008-11-22 12:42:35 +00: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
|
|
|
# Otherwise, get the full cache window out of the DB
|
|
|
|
|
2008-11-12 17:25:17 +00:00
|
|
|
$notice = Notice::getStreamDirect($qry, 0, NOTICE_CACHE_WINDOW, NULL, NULL, $order);
|
2008-11-04 05:33:59 +00: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
|
|
|
# If there are no hits, just return the value
|
2008-11-04 05:33:59 +00: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
|
|
|
if (!$notice) {
|
|
|
|
return $notice;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Pack results into an array
|
2008-11-04 05:33:59 +00: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
|
|
|
$notices = array();
|
|
|
|
|
|
|
|
while ($notice->fetch()) {
|
|
|
|
$notices[] = clone($notice);
|
|
|
|
}
|
|
|
|
|
2008-11-22 12:41:51 +00:00
|
|
|
$notice->free();
|
2008-11-22 12:42:35 +00: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
|
|
|
# Store the array in the cache for next time
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-09-28 18:14:07 +01:00
|
|
|
$result = $cache->set(common_cache_key($cachekey), $notices);
|
2008-11-22 12:41:51 +00:00
|
|
|
$result = $cache->set(common_cache_key($cachekey) . ';last', $notices);
|
2008-09-28 18:14:07 +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
|
|
|
# return a wrapper of the array for use now
|
2008-11-04 05:33:59 +00: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
|
|
|
$wrapper = new NoticeWrapper(array_slice($notices, $offset, $limit));
|
2008-11-04 05:33:59 +00: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
|
|
|
return $wrapper;
|
|
|
|
}
|
2008-10-22 21:56:21 +01:00
|
|
|
|
2008-10-01 01:12:33 +01:00
|
|
|
function publicStream($offset=0, $limit=20, $since_id=0, $before_id=0) {
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-11-20 18:37:22 +00:00
|
|
|
$parts = array();
|
2008-11-22 12:42:35 +00: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
|
|
|
$qry = 'SELECT * FROM notice ';
|
|
|
|
|
|
|
|
if (common_config('public', 'localonly')) {
|
2008-11-20 18:37:22 +00:00
|
|
|
$parts[] = 'is_local = 1';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (common_config('public', 'blacklist')) {
|
|
|
|
$parts[] = 'profile_id not in (' . implode(',', common_config('public', 'blacklist')) . ')';
|
2008-10-01 01:12:33 +01:00
|
|
|
}
|
|
|
|
|
2008-11-20 18:37:22 +00:00
|
|
|
if ($parts) {
|
|
|
|
$qry .= ' WHERE ' . implode(' AND ', $parts);
|
|
|
|
}
|
2008-11-22 12:42:35 +00: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
|
|
|
return Notice::getStream($qry,
|
|
|
|
'public',
|
2008-11-04 05:33:59 +00:00
|
|
|
$offset, $limit, $since_id, $before_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-11-04 05:33:59 +00:00
|
|
|
|
2008-10-22 21:56:21 +01:00
|
|
|
function addToInboxes() {
|
2008-11-14 07:42:11 +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 ' .
|
2008-11-21 18:41:32 +00:00
|
|
|
'WHERE subscription.subscribed = ' . $this->profile_id . ' ' .
|
|
|
|
'AND NOT EXISTS (SELECT user_id, notice_id ' .
|
|
|
|
'FROM notice_inbox ' .
|
2008-11-22 12:42:35 +00:00
|
|
|
'WHERE user_id = user.id ' .
|
2008-11-21 18:41:32 +00:00
|
|
|
'AND notice_id = ' . $this->id . ' )';
|
2008-11-14 07:42:11 +00:00
|
|
|
if ($enabled === 'transitional') {
|
|
|
|
$qry .= ' AND user.inboxed = 1';
|
|
|
|
}
|
|
|
|
$inbox->query($qry);
|
|
|
|
}
|
2008-10-22 21:56:21 +01:00
|
|
|
return;
|
|
|
|
}
|
2008-10-23 21:35:05 +01:00
|
|
|
|
|
|
|
# Delete from inboxes if we're deleted.
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-10-23 21:35:05 +01:00
|
|
|
function blowInboxes() {
|
|
|
|
|
2008-11-14 07:42:11 +00:00
|
|
|
$enabled = common_config('inboxes', 'enabled');
|
|
|
|
|
|
|
|
if ($enabled === true || $enabled === 'transitional') {
|
|
|
|
$inbox = new Notice_inbox();
|
|
|
|
$inbox->notice_id = $this->id;
|
|
|
|
$inbox->delete();
|
|
|
|
}
|
2008-11-04 05:33:59 +00:00
|
|
|
|
2008-10-23 21:35:05 +01:00
|
|
|
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
|
|
|
|