2008-11-20 20:55:06 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Table Definition for profile_tag
|
|
|
|
*/
|
|
|
|
|
2011-08-22 22:52:02 +01:00
|
|
|
class Profile_tag extends Managed_DataObject
|
2008-11-20 20:55:06 +00:00
|
|
|
{
|
|
|
|
public $__table = 'profile_tag'; // table name
|
|
|
|
public $tagger; // int(4) primary_key not_null
|
|
|
|
public $tagged; // int(4) primary_key not_null
|
|
|
|
public $tag; // varchar(64) primary_key not_null
|
|
|
|
public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
|
|
|
|
|
2011-08-22 22:52:02 +01:00
|
|
|
public static function schemaDef()
|
|
|
|
{
|
|
|
|
return array(
|
|
|
|
|
|
|
|
'fields' => array(
|
|
|
|
'tagger' => array('type' => 'int', 'not null' => true, 'description' => 'user making the tag'),
|
|
|
|
'tagged' => array('type' => 'int', 'not null' => true, 'description' => 'profile tagged'),
|
|
|
|
'tag' => array('type' => 'varchar', 'length' => 64, 'not null' => true, 'description' => 'hash tag associated with this notice'),
|
|
|
|
'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date the tag was added'),
|
|
|
|
),
|
|
|
|
'primary key' => array('tagger', 'tagged', 'tag'),
|
|
|
|
'foreign keys' => array(
|
|
|
|
'profile_tag_tagger_fkey' => array('profile', array('tagger' => 'id')),
|
|
|
|
'profile_tag_tagged_fkey' => array('profile', array('tagged' => 'id')),
|
|
|
|
'profile_tag_tag_fkey' => array('profile_list', array('tag' => 'tag')),
|
|
|
|
),
|
|
|
|
'indexes' => array(
|
|
|
|
'profile_tag_modified_idx' => array('modified'),
|
|
|
|
'profile_tag_tagger_tag_idx' => array('tagger', 'tag'),
|
|
|
|
'profile_tag_tagged_idx' => array('tagged'),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2011-03-06 17:58:03 +00:00
|
|
|
function links()
|
|
|
|
{
|
|
|
|
return array('tagger,tag' => 'profile_list:tagger,tag');
|
|
|
|
}
|
|
|
|
|
|
|
|
function getMeta()
|
|
|
|
{
|
|
|
|
return Profile_list::pkeyGet(array('tagger' => $this->tagger, 'tag' => $this->tag));
|
|
|
|
}
|
|
|
|
|
2015-07-17 11:09:24 +01:00
|
|
|
static function getSelfTagsArray(Profile $target)
|
|
|
|
{
|
|
|
|
return self::getTagsArray($target->getID(), $target->getID(), $target);
|
|
|
|
}
|
|
|
|
|
|
|
|
static function setSelfTags(Profile $target, array $newtags, array $privacy=array())
|
|
|
|
{
|
|
|
|
return self::setTags($target->getID(), $target->getID(), $newtags, $privacy);
|
|
|
|
}
|
|
|
|
|
2011-03-06 17:58:03 +00:00
|
|
|
static function getTags($tagger, $tagged, $auth_user=null) {
|
|
|
|
|
|
|
|
$profile_list = new Profile_list();
|
|
|
|
$include_priv = 1;
|
|
|
|
|
|
|
|
if (!($auth_user instanceof User ||
|
|
|
|
$auth_user instanceof Profile) ||
|
|
|
|
($auth_user->id !== $tagger)) {
|
2008-11-20 21:48:21 +00:00
|
|
|
|
2011-03-06 17:58:03 +00:00
|
|
|
$profile_list->private = false;
|
|
|
|
$include_priv = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
$key = sprintf('profile_tag:tagger_tagged_privacy:%d-%d-%d', $tagger, $tagged, $include_priv);
|
|
|
|
$tags = Profile_list::getCached($key);
|
|
|
|
if ($tags !== false) {
|
|
|
|
return $tags;
|
|
|
|
}
|
2009-02-28 23:17:49 +00:00
|
|
|
|
2011-07-08 07:12:28 +01:00
|
|
|
$qry = 'select profile_list.* from profile_list left join '.
|
|
|
|
'profile_tag on (profile_list.tag = profile_tag.tag and '.
|
|
|
|
'profile_list.tagger = profile_tag.tagger) where '.
|
|
|
|
'profile_tag.tagger = %d and profile_tag.tagged = %d ';
|
|
|
|
$qry = sprintf($qry, $tagger, $tagged);
|
|
|
|
|
|
|
|
if (!$include_priv) {
|
2011-09-27 15:47:13 +01:00
|
|
|
$qry .= ' and profile_list.private = 0';
|
2011-07-08 07:12:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$profile_list->query($qry);
|
2011-03-06 17:58:03 +00:00
|
|
|
|
|
|
|
Profile_list::setCache($key, $profile_list);
|
2009-02-28 23:17:49 +00:00
|
|
|
|
2011-03-06 17:58:03 +00:00
|
|
|
return $profile_list;
|
|
|
|
}
|
|
|
|
|
2015-07-17 11:09:24 +01:00
|
|
|
static function getTagsArray($tagger, $tagged, Profile $scoped=null)
|
2011-03-06 17:58:03 +00:00
|
|
|
{
|
|
|
|
$ptag = new Profile_tag();
|
2011-09-27 14:42:34 +01:00
|
|
|
|
2011-09-27 16:32:05 +01:00
|
|
|
$qry = sprintf('select profile_tag.tag '.
|
|
|
|
'from profile_tag join profile_list '.
|
|
|
|
' on (profile_tag.tagger = profile_list.tagger ' .
|
|
|
|
' and profile_tag.tag = profile_list.tag) ' .
|
|
|
|
'where profile_tag.tagger = %d ' .
|
|
|
|
'and profile_tag.tagged = %d ',
|
|
|
|
$tagger, $tagged);
|
2011-09-27 14:42:34 +01:00
|
|
|
|
2015-07-17 11:09:24 +01:00
|
|
|
if (!$scoped instanceof Profile || $scoped->getID() !== $tagger) {
|
2011-09-27 14:42:34 +01:00
|
|
|
$qry .= 'and profile_list.private = 0';
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-02-28 23:17:49 +00:00
|
|
|
|
2011-03-06 17:58:03 +00:00
|
|
|
$tags = array();
|
2011-09-27 14:42:34 +01:00
|
|
|
|
2011-09-27 16:32:05 +01:00
|
|
|
$ptag->query($qry);
|
2011-09-27 14:42:34 +01:00
|
|
|
|
2011-03-06 17:58:03 +00:00
|
|
|
while ($ptag->fetch()) {
|
|
|
|
$tags[] = $ptag->tag;
|
|
|
|
}
|
2009-02-28 23:17:49 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
return $tags;
|
|
|
|
}
|
2009-02-28 23:17:49 +00:00
|
|
|
|
2015-07-17 11:09:24 +01:00
|
|
|
static function setTags($tagger, $tagged, array $newtags, array $privacy=array()) {
|
2011-03-06 17:58:03 +00:00
|
|
|
|
2009-02-28 23:17:49 +00:00
|
|
|
$newtags = array_unique($newtags);
|
2015-07-17 11:09:24 +01:00
|
|
|
$oldtags = self::getTagsArray($tagger, $tagged, Profile::getByID($tagger));
|
2011-03-06 17:58:03 +00:00
|
|
|
|
|
|
|
$ptag = new Profile_tag();
|
2009-02-28 23:17:49 +00:00
|
|
|
|
2011-03-30 11:13:13 +01:00
|
|
|
// Delete stuff that's in old and not in new
|
2009-02-28 23:17:49 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$to_delete = array_diff($oldtags, $newtags);
|
2009-02-28 23:17:49 +00:00
|
|
|
|
2011-03-22 15:54:23 +00:00
|
|
|
// Insert stuff that's in new and not in old
|
2009-02-28 23:17:49 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$to_insert = array_diff($newtags, $oldtags);
|
2009-02-28 23:17:49 +00:00
|
|
|
|
2011-03-06 17:58:03 +00:00
|
|
|
foreach ($to_delete as $deltag) {
|
|
|
|
self::unTag($tagger, $tagged, $deltag);
|
|
|
|
}
|
2009-02-28 23:17:49 +00:00
|
|
|
|
2011-03-06 17:58:03 +00:00
|
|
|
foreach ($to_insert as $instag) {
|
|
|
|
$private = isset($privacy[$instag]) ? $privacy[$instag] : false;
|
|
|
|
self::setTag($tagger, $tagged, $instag, null, $private);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
# set a single tag
|
|
|
|
static function setTag($tagger, $tagged, $tag, $desc=null, $private=false) {
|
|
|
|
|
|
|
|
$ptag = Profile_tag::pkeyGet(array('tagger' => $tagger,
|
|
|
|
'tagged' => $tagged,
|
|
|
|
'tag' => $tag));
|
|
|
|
|
|
|
|
# if tag already exists, return it
|
2015-07-17 11:09:24 +01:00
|
|
|
if ($ptag instanceof Profile_tag) {
|
2011-03-06 17:58:03 +00:00
|
|
|
return $ptag;
|
|
|
|
}
|
|
|
|
|
2015-07-17 11:09:24 +01:00
|
|
|
$tagger_profile = Profile::getByID($tagger);
|
|
|
|
$tagged_profile = Profile::getByID($tagged);
|
2011-03-06 17:58:03 +00:00
|
|
|
|
|
|
|
if (Event::handle('StartTagProfile', array($tagger_profile, $tagged_profile, $tag))) {
|
|
|
|
|
|
|
|
if (!$tagger_profile->canTag($tagged_profile)) {
|
2011-04-10 18:59:55 +01:00
|
|
|
// TRANS: Client exception thrown trying to set a tag for a user that cannot be tagged.
|
2011-03-06 17:58:03 +00:00
|
|
|
throw new ClientException(_('You cannot tag this user.'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$tags = new Profile_list();
|
|
|
|
$tags->tagger = $tagger;
|
|
|
|
$count = (int) $tags->count('distinct tag');
|
|
|
|
|
|
|
|
if ($count >= common_config('peopletag', 'maxtags')) {
|
2011-04-10 18:59:55 +01:00
|
|
|
// TRANS: Client exception thrown trying to set more tags than allowed.
|
2011-03-06 17:58:03 +00:00
|
|
|
throw new ClientException(sprintf(_('You already have created %d or more tags ' .
|
|
|
|
'which is the maximum allowed number of tags. ' .
|
|
|
|
'Try using or deleting some existing tags.'),
|
|
|
|
common_config('peopletag', 'maxtags')));
|
|
|
|
}
|
|
|
|
|
|
|
|
$plist = new Profile_list();
|
|
|
|
$plist->query('BEGIN');
|
|
|
|
|
|
|
|
$profile_list = Profile_list::ensureTag($tagger, $tag, $desc, $private);
|
|
|
|
|
|
|
|
if ($profile_list->taggedCount() >= common_config('peopletag', 'maxpeople')) {
|
2011-04-17 19:08:03 +01:00
|
|
|
// TRANS: Client exception thrown when trying to add more people than allowed to a list.
|
|
|
|
throw new ClientException(sprintf(_('You already have %1$d or more people in list %2$s, ' .
|
2011-12-28 11:35:03 +00:00
|
|
|
'which is the maximum allowed number. ' .
|
2011-04-17 19:08:03 +01:00
|
|
|
'Try unlisting others first.'),
|
2011-03-06 17:58:03 +00:00
|
|
|
common_config('peopletag', 'maxpeople'), $tag));
|
|
|
|
}
|
|
|
|
|
|
|
|
$newtag = new Profile_tag();
|
|
|
|
|
|
|
|
$newtag->tagger = $tagger;
|
|
|
|
$newtag->tagged = $tagged;
|
|
|
|
$newtag->tag = $tag;
|
|
|
|
|
|
|
|
$result = $newtag->insert();
|
2009-02-28 23:17:49 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if (!$result) {
|
2011-03-06 17:58:03 +00:00
|
|
|
common_log_db_error($newtag, 'INSERT', __FILE__);
|
2015-07-17 11:09:24 +01:00
|
|
|
$plist->query('ROLLBACK');
|
2011-03-06 17:58:03 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
$plist->query('COMMIT');
|
|
|
|
Event::handle('EndTagProfile', array($newtag));
|
|
|
|
} catch (Exception $e) {
|
|
|
|
$newtag->delete();
|
|
|
|
$profile_list->delete();
|
|
|
|
throw $e;
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2011-03-06 17:58:03 +00:00
|
|
|
|
|
|
|
$profile_list->taggedCount(true);
|
|
|
|
self::blowCaches($tagger, $tagged);
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-02-28 23:17:49 +00:00
|
|
|
|
2011-03-06 17:58:03 +00:00
|
|
|
return $newtag;
|
|
|
|
}
|
|
|
|
|
|
|
|
static function unTag($tagger, $tagged, $tag) {
|
|
|
|
$ptag = Profile_tag::pkeyGet(array('tagger' => $tagger,
|
|
|
|
'tagged' => $tagged,
|
|
|
|
'tag' => $tag));
|
|
|
|
if (!$ptag) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Event::handle('StartUntagProfile', array($ptag))) {
|
|
|
|
$orig = clone($ptag);
|
|
|
|
$result = $ptag->delete();
|
2015-07-17 11:09:24 +01:00
|
|
|
if ($result === false) {
|
2011-03-06 17:58:03 +00:00
|
|
|
common_log_db_error($this, 'DELETE', __FILE__);
|
2008-12-23 19:19:07 +00:00
|
|
|
return false;
|
|
|
|
}
|
2011-03-06 17:58:03 +00:00
|
|
|
Event::handle('EndUntagProfile', array($orig));
|
2015-07-17 11:09:24 +01:00
|
|
|
$profile_list = Profile_list::pkeyGet(array('tag' => $tag, 'tagger' => $tagger));
|
|
|
|
if (!empty($profile_list)) {
|
|
|
|
$profile_list->taggedCount(true);
|
2011-03-06 17:58:03 +00:00
|
|
|
}
|
2015-07-17 11:09:24 +01:00
|
|
|
self::blowCaches($tagger, $tagged);
|
|
|
|
return true;
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2011-03-06 17:58:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// @fixme: move this to Profile_list?
|
|
|
|
static function cleanup($profile_list) {
|
|
|
|
$ptag = new Profile_tag();
|
|
|
|
$ptag->tagger = $profile_list->tagger;
|
|
|
|
$ptag->tag = $profile_list->tag;
|
|
|
|
$ptag->find();
|
|
|
|
|
|
|
|
while($ptag->fetch()) {
|
|
|
|
if (Event::handle('StartUntagProfile', array($ptag))) {
|
|
|
|
$orig = clone($ptag);
|
|
|
|
$result = $ptag->delete();
|
|
|
|
if (!$result) {
|
|
|
|
common_log_db_error($this, 'DELETE', __FILE__);
|
|
|
|
}
|
|
|
|
Event::handle('EndUntagProfile', array($orig));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-02-28 23:17:49 +00:00
|
|
|
|
2011-03-06 17:58:03 +00:00
|
|
|
// move a tag!
|
|
|
|
static function moveTag($orig, $new) {
|
|
|
|
$tags = new Profile_tag();
|
|
|
|
$qry = 'UPDATE profile_tag SET ' .
|
|
|
|
'tag = "%s", tagger = "%s" ' .
|
|
|
|
'WHERE tag = "%s" ' .
|
|
|
|
'AND tagger = "%s"';
|
2013-07-16 18:27:30 +01:00
|
|
|
$result = $tags->query(sprintf($qry,
|
|
|
|
$tags->escape($new->tag),
|
|
|
|
$tags->escape($new->tagger),
|
|
|
|
$tags->escape($orig->tag),
|
|
|
|
$tags->escape($orig->tagger)));
|
2009-02-28 23:17:49 +00:00
|
|
|
|
2013-10-28 18:36:05 +00:00
|
|
|
if ($result === false) {
|
2011-03-06 17:58:03 +00:00
|
|
|
common_log_db_error($tags, 'UPDATE', __FILE__);
|
2013-10-28 18:36:05 +00:00
|
|
|
throw new Exception('Could not move Profile_tag, see db log for details.');
|
2011-03-06 17:58:03 +00:00
|
|
|
}
|
2013-10-28 18:36:05 +00:00
|
|
|
return $result;
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-02-28 23:17:49 +00:00
|
|
|
|
2011-03-06 17:58:03 +00:00
|
|
|
static function blowCaches($tagger, $tagged) {
|
|
|
|
foreach (array(0, 1) as $perm) {
|
|
|
|
self::blow(sprintf('profile_tag:tagger_tagged_privacy:%d-%d-%d', $tagger, $tagged, $perm));
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2011-03-06 17:58:03 +00:00
|
|
|
return true;
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-02-28 23:17:49 +00:00
|
|
|
|
2011-03-22 15:54:23 +00:00
|
|
|
// Return profiles with a given tag
|
2008-12-23 19:19:07 +00:00
|
|
|
static function getTagged($tagger, $tag) {
|
|
|
|
$profile = new Profile();
|
|
|
|
$profile->query('SELECT profile.* ' .
|
|
|
|
'FROM profile JOIN profile_tag ' .
|
|
|
|
'ON profile.id = profile_tag.tagged ' .
|
2013-07-16 18:35:44 +01:00
|
|
|
'WHERE profile_tag.tagger = ' . $profile->escape($tagger) . ' ' .
|
|
|
|
'AND profile_tag.tag = "' . $profile->escape($tag) . '" ');
|
2008-12-23 19:19:07 +00:00
|
|
|
$tagged = array();
|
|
|
|
while ($profile->fetch()) {
|
|
|
|
$tagged[] = clone($profile);
|
|
|
|
}
|
2011-03-30 11:13:13 +01:00
|
|
|
return true;
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2011-04-14 19:01:10 +01:00
|
|
|
|
|
|
|
function insert()
|
|
|
|
{
|
|
|
|
$result = parent::insert();
|
|
|
|
if ($result) {
|
|
|
|
self::blow('profile_list:tagged_count:%d:%s',
|
|
|
|
$this->tagger,
|
|
|
|
$this->tag);
|
|
|
|
}
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
2013-10-29 09:20:57 +00:00
|
|
|
function delete($useWhere=false)
|
2011-04-14 19:01:10 +01:00
|
|
|
{
|
2013-10-29 09:20:57 +00:00
|
|
|
$result = parent::delete($useWhere);
|
|
|
|
if ($result !== false) {
|
2011-04-14 19:01:10 +01:00
|
|
|
self::blow('profile_list:tagged_count:%d:%s',
|
|
|
|
$this->tagger,
|
|
|
|
$this->tag);
|
|
|
|
}
|
|
|
|
return $result;
|
|
|
|
}
|
2008-11-20 20:55:06 +00:00
|
|
|
}
|