2008-08-13 15:26:37 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Table Definition for fave
|
|
|
|
*/
|
2008-09-26 17:18:24 +01:00
|
|
|
require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
|
2008-08-13 15:26:37 +01:00
|
|
|
|
2011-08-22 22:52:02 +01:00
|
|
|
class Fave extends Managed_DataObject
|
2008-08-13 15:26:37 +01:00
|
|
|
{
|
|
|
|
###START_AUTOCODE
|
|
|
|
/* the code below is auto generated do not remove the above tag */
|
|
|
|
|
|
|
|
public $__table = 'fave'; // table name
|
|
|
|
public $notice_id; // int(4) primary_key not_null
|
|
|
|
public $user_id; // int(4) primary_key not_null
|
2011-08-22 21:36:23 +01:00
|
|
|
public $uri; // varchar(255)
|
2008-08-13 15:26:37 +01:00
|
|
|
public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
|
|
|
|
|
|
|
|
/* the code above is auto generated do not remove the tag below */
|
|
|
|
###END_AUTOCODE
|
2008-09-08 19:16:24 +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 favorite'),
|
|
|
|
'user_id' => array('type' => 'int', 'not null' => true, 'description' => 'user who likes this notice'),
|
2011-08-22 23:13:02 +01:00
|
|
|
'uri' => array('type' => 'varchar', 'length' => 255, 'description' => 'universally unique identifier, usually a tag URI'),
|
2011-08-22 22:52:02 +01:00
|
|
|
'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
|
|
|
|
),
|
|
|
|
'primary key' => array('notice_id', 'user_id'),
|
2011-08-22 23:13:02 +01:00
|
|
|
'unique keys' => array(
|
|
|
|
'fave_uri_key' => array('uri'),
|
|
|
|
),
|
2011-08-22 22:52:02 +01:00
|
|
|
'foreign keys' => array(
|
|
|
|
'fave_notice_id_fkey' => array('notice', array('notice_id' => 'id')),
|
|
|
|
'fave_user_id_fkey' => array('profile', array('user_id' => 'id')), // note: formerly referenced notice.id, but we can now record remote users' favorites
|
|
|
|
),
|
|
|
|
'indexes' => array(
|
|
|
|
'fave_notice_id_idx' => array('notice_id'),
|
|
|
|
'fave_user_id_idx' => array('user_id', 'modified'),
|
|
|
|
'fave_modified_idx' => array('modified'),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2010-03-23 18:06:37 +00:00
|
|
|
/**
|
|
|
|
* Save a favorite record.
|
|
|
|
* @fixme post-author notification should be moved here
|
|
|
|
*
|
|
|
|
* @param Profile $profile the local or remote user who likes
|
|
|
|
* @param Notice $notice the notice that is liked
|
|
|
|
* @return mixed false on failure, or Fave record on success
|
|
|
|
*/
|
|
|
|
static function addNew(Profile $profile, Notice $notice) {
|
2010-02-20 17:03:32 +00:00
|
|
|
|
|
|
|
$fave = null;
|
|
|
|
|
|
|
|
if (Event::handle('StartFavorNotice', array($profile, $notice, &$fave))) {
|
|
|
|
|
|
|
|
$fave = new Fave();
|
|
|
|
|
|
|
|
$fave->user_id = $profile->id;
|
|
|
|
$fave->notice_id = $notice->id;
|
2011-08-22 21:36:23 +01:00
|
|
|
$fave->modified = common_sql_now();
|
|
|
|
$fave->uri = self::newURI($fave->user_id,
|
|
|
|
$fave->notice_id,
|
|
|
|
$fave->modified);
|
2010-02-20 17:03:32 +00:00
|
|
|
if (!$fave->insert()) {
|
|
|
|
common_log_db_error($fave, 'INSERT', __FILE__);
|
|
|
|
return false;
|
|
|
|
}
|
2011-08-08 15:22:20 +01:00
|
|
|
self::blow('fave:list-ids:notice_id:%d', $fave->notice_id);
|
2011-10-20 15:40:39 +01:00
|
|
|
self::blow('popular');
|
2010-02-20 17:03:32 +00:00
|
|
|
|
|
|
|
Event::handle('EndFavorNotice', array($profile, $notice));
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2010-02-20 17:03:32 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
return $fave;
|
|
|
|
}
|
2009-05-01 20:01:28 +01:00
|
|
|
|
2013-10-29 09:20:57 +00:00
|
|
|
function delete($useWhere=false)
|
2010-02-20 17:03:32 +00:00
|
|
|
{
|
2013-08-18 12:04:58 +01:00
|
|
|
$profile = Profile::getKV('id', $this->user_id);
|
|
|
|
$notice = Notice::getKV('id', $this->notice_id);
|
2010-02-20 17:03:32 +00:00
|
|
|
|
|
|
|
$result = null;
|
|
|
|
|
|
|
|
if (Event::handle('StartDisfavorNotice', array($profile, $notice, &$result))) {
|
|
|
|
|
2013-10-29 09:20:57 +00:00
|
|
|
$result = parent::delete($useWhere);
|
2011-08-08 15:22:20 +01:00
|
|
|
self::blow('fave:list-ids:notice_id:%d', $this->notice_id);
|
2011-10-20 15:40:39 +01:00
|
|
|
self::blow('popular');
|
2010-02-20 17:03:32 +00:00
|
|
|
|
|
|
|
if ($result) {
|
|
|
|
Event::handle('EndDisfavorNotice', array($profile, $notice));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
2010-05-05 22:46:36 +01:00
|
|
|
function stream($user_id, $offset=0, $limit=NOTICES_PER_PAGE, $own=false, $since_id=0, $max_id=0)
|
2009-05-01 20:01:28 +01:00
|
|
|
{
|
2011-03-24 22:04:19 +00:00
|
|
|
$stream = new FaveNoticeStream($user_id, $own);
|
2011-03-23 15:29:55 +00:00
|
|
|
|
|
|
|
return $stream->getNotices($offset, $limit, $since_id, $max_id);
|
2009-05-01 20:01:28 +01:00
|
|
|
}
|
|
|
|
|
2011-03-23 15:59:01 +00:00
|
|
|
function idStream($user_id, $offset=0, $limit=NOTICES_PER_PAGE, $own=false, $since_id=0, $max_id=0)
|
|
|
|
{
|
2011-03-24 22:04:19 +00:00
|
|
|
$stream = new FaveNoticeStream($user_id, $own);
|
2011-03-23 15:59:01 +00:00
|
|
|
|
|
|
|
return $stream->getNoticeIds($offset, $limit, $since_id, $max_id);
|
|
|
|
}
|
|
|
|
|
2010-08-04 20:07:49 +01:00
|
|
|
function asActivity()
|
|
|
|
{
|
2013-08-18 12:04:58 +01:00
|
|
|
$notice = Notice::getKV('id', $this->notice_id);
|
2013-05-24 14:26:58 +01:00
|
|
|
|
|
|
|
if (!$notice) {
|
|
|
|
throw new Exception("Fave for non-existent notice: " . $this->notice_id);
|
|
|
|
}
|
|
|
|
|
2013-08-18 12:04:58 +01:00
|
|
|
$profile = Profile::getKV('id', $this->user_id);
|
2010-08-04 20:07:49 +01:00
|
|
|
|
2013-05-24 14:26:58 +01:00
|
|
|
if (!$profile) {
|
|
|
|
throw new Exception("Fave by non-existent profile: " . $this->user_id);
|
|
|
|
}
|
|
|
|
|
2010-08-04 20:07:49 +01:00
|
|
|
$act = new Activity();
|
|
|
|
|
|
|
|
$act->verb = ActivityVerb::FAVORITE;
|
2010-12-10 23:50:50 +00:00
|
|
|
|
|
|
|
// FIXME: rationalize this with URL below
|
|
|
|
|
2011-08-22 21:36:23 +01:00
|
|
|
$act->id = $this->getURI();
|
2010-08-04 20:07:49 +01:00
|
|
|
|
2010-09-13 21:22:27 +01:00
|
|
|
$act->time = strtotime($this->modified);
|
2010-09-28 22:21:09 +01:00
|
|
|
// TRANS: Activity title when marking a notice as favorite.
|
2010-08-04 20:07:49 +01:00
|
|
|
$act->title = _("Favor");
|
2010-09-28 22:21:09 +01:00
|
|
|
// TRANS: Ntofication given when a user marks a notice as favorite.
|
|
|
|
// TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
|
2010-10-04 22:24:04 +01:00
|
|
|
$act->content = sprintf(_('%1$s marked notice %2$s as a favorite.'),
|
2010-08-04 20:07:49 +01:00
|
|
|
$profile->getBestName(),
|
2014-04-30 19:44:23 +01:00
|
|
|
$notice->getUrl());
|
2010-08-04 20:07:49 +01:00
|
|
|
|
2010-09-13 21:22:27 +01:00
|
|
|
$act->actor = ActivityObject::fromProfile($profile);
|
|
|
|
$act->objects[] = ActivityObject::fromNotice($notice);
|
2010-08-04 20:07:49 +01:00
|
|
|
|
2010-12-10 23:50:50 +00:00
|
|
|
$url = common_local_url('AtomPubShowFavorite',
|
|
|
|
array('profile' => $this->user_id,
|
|
|
|
'notice' => $this->notice_id));
|
|
|
|
|
|
|
|
$act->selfLink = $url;
|
|
|
|
$act->editLink = $url;
|
|
|
|
|
2010-08-04 20:07:49 +01:00
|
|
|
return $act;
|
|
|
|
}
|
2010-12-12 17:22:04 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Fetch a stream of favorites by profile
|
|
|
|
*
|
|
|
|
* @param integer $profileId Profile that faved
|
|
|
|
* @param integer $offset Offset from last
|
|
|
|
* @param integer $limit Number to get
|
|
|
|
*
|
|
|
|
* @return mixed stream of faves, use fetch() to iterate
|
|
|
|
*
|
|
|
|
* @todo Cache results
|
|
|
|
* @todo integrate with Fave::stream()
|
|
|
|
*/
|
|
|
|
|
|
|
|
static function byProfile($profileId, $offset, $limit)
|
|
|
|
{
|
|
|
|
$fav = new Fave();
|
|
|
|
|
|
|
|
$fav->user_id = $profileId;
|
|
|
|
|
|
|
|
$fav->orderBy('modified DESC');
|
|
|
|
|
|
|
|
$fav->limit($offset, $limit);
|
|
|
|
|
|
|
|
$fav->find();
|
|
|
|
|
|
|
|
return $fav;
|
|
|
|
}
|
2011-08-22 21:36:23 +01:00
|
|
|
|
|
|
|
function getURI()
|
|
|
|
{
|
|
|
|
if (!empty($this->uri)) {
|
|
|
|
return $this->uri;
|
|
|
|
} else {
|
|
|
|
return self::newURI($this->user_id, $this->notice_id, $this->modified);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static function newURI($profile_id, $notice_id, $modified)
|
|
|
|
{
|
|
|
|
return TagURI::mint('favor:%d:%d:%s',
|
|
|
|
$profile_id,
|
|
|
|
$notice_id,
|
|
|
|
common_date_iso8601($modified));
|
|
|
|
}
|
2008-08-13 15:26:37 +01:00
|
|
|
}
|