Add mutuals and all methods in Contact\Relation
- Remove unused $fields parameters from list methods - Fix wrong SQL condition in listCommon
This commit is contained in:
parent
077b57ecb3
commit
b45ba63dbf
|
@ -335,7 +335,6 @@ class Relation
|
||||||
* Returns a paginated list of contacts that are followed the provided public contact.
|
* Returns a paginated list of contacts that are followed the provided public contact.
|
||||||
*
|
*
|
||||||
* @param int $cid Public contact id
|
* @param int $cid Public contact id
|
||||||
* @param array $field Field list
|
|
||||||
* @param array $condition Additional condition on the contact table
|
* @param array $condition Additional condition on the contact table
|
||||||
* @param int $count
|
* @param int $count
|
||||||
* @param int $offset
|
* @param int $offset
|
||||||
|
@ -343,14 +342,14 @@ class Relation
|
||||||
* @return array
|
* @return array
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public static function listFollows(int $cid, array $fields = [], array $condition = [], int $count = 30, int $offset = 0, bool $shuffle = false)
|
public static function listFollows(int $cid, array $condition = [], int $count = 30, int $offset = 0, bool $shuffle = false)
|
||||||
{
|
{
|
||||||
$condition = DBA::mergeConditions($condition,
|
$condition = DBA::mergeConditions($condition,
|
||||||
['`id` IN (SELECT `relation-cid` FROM `contact-relation` WHERE `cid` = ? AND `follows`)',
|
['`id` IN (SELECT `relation-cid` FROM `contact-relation` WHERE `cid` = ? AND `follows`)',
|
||||||
$cid]
|
$cid]
|
||||||
);
|
);
|
||||||
|
|
||||||
return DI::dba()->selectToArray('contact', $fields, $condition,
|
return DI::dba()->selectToArray('contact', [], $condition,
|
||||||
['limit' => [$offset, $count], 'order' => [$shuffle ? 'RAND()' : 'name']]
|
['limit' => [$offset, $count], 'order' => [$shuffle ? 'RAND()' : 'name']]
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -377,7 +376,6 @@ class Relation
|
||||||
* Returns a paginated list of contacts that follow the provided public contact.
|
* Returns a paginated list of contacts that follow the provided public contact.
|
||||||
*
|
*
|
||||||
* @param int $cid Public contact id
|
* @param int $cid Public contact id
|
||||||
* @param array $field Field list
|
|
||||||
* @param array $condition Additional condition on the contact table
|
* @param array $condition Additional condition on the contact table
|
||||||
* @param int $count
|
* @param int $count
|
||||||
* @param int $offset
|
* @param int $offset
|
||||||
|
@ -385,17 +383,104 @@ class Relation
|
||||||
* @return array
|
* @return array
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public static function listFollowers(int $cid, array $fields = [], array $condition = [], int $count = 30, int $offset = 0, bool $shuffle = false)
|
public static function listFollowers(int $cid, array $condition = [], int $count = 30, int $offset = 0, bool $shuffle = false)
|
||||||
{
|
{
|
||||||
$condition = DBA::mergeConditions($condition,
|
$condition = DBA::mergeConditions($condition,
|
||||||
['`id` IN (SELECT `cid` FROM `contact-relation` WHERE `relation-cid` = ? AND `follows`)', $cid]
|
['`id` IN (SELECT `cid` FROM `contact-relation` WHERE `relation-cid` = ? AND `follows`)', $cid]
|
||||||
);
|
);
|
||||||
|
|
||||||
return DI::dba()->selectToArray('contact', $fields, $condition,
|
return DI::dba()->selectToArray('contact', [], $condition,
|
||||||
['limit' => [$offset, $count], 'order' => [$shuffle ? 'RAND()' : 'name']]
|
['limit' => [$offset, $count], 'order' => [$shuffle ? 'RAND()' : 'name']]
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Counts the number of contacts that are known mutuals with the provided public contact.
|
||||||
|
*
|
||||||
|
* @param int $cid Public contact id
|
||||||
|
* @param array $condition Additional condition array on the contact table
|
||||||
|
* @return int
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
public static function countMutuals(int $cid, array $condition = [])
|
||||||
|
{
|
||||||
|
$condition = DBA::mergeConditions($condition,
|
||||||
|
['`id` IN (SELECT `relation-cid` FROM `contact-relation` WHERE `cid` = ? AND `follows`)
|
||||||
|
AND `id` IN (SELECT `cid` FROM `contact-relation` WHERE `relation-cid` = ? AND `follows`)',
|
||||||
|
$cid, $cid]
|
||||||
|
);
|
||||||
|
|
||||||
|
return DI::dba()->count('contact', $condition);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns a paginated list of contacts that are known mutuals with the provided public contact.
|
||||||
|
*
|
||||||
|
* @param int $cid Public contact id
|
||||||
|
* @param array $condition Additional condition on the contact table
|
||||||
|
* @param int $count
|
||||||
|
* @param int $offset
|
||||||
|
* @param bool $shuffle
|
||||||
|
* @return array
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
public static function listMutuals(int $cid, array $condition = [], int $count = 30, int $offset = 0, bool $shuffle = false)
|
||||||
|
{
|
||||||
|
$condition = DBA::mergeConditions($condition,
|
||||||
|
['`id` IN (SELECT `relation-cid` FROM `contact-relation` WHERE `cid` = ? AND `follows`)
|
||||||
|
AND `id` IN (SELECT `cid` FROM `contact-relation` WHERE `relation-cid` = ? AND `follows`)',
|
||||||
|
$cid, $cid]
|
||||||
|
);
|
||||||
|
|
||||||
|
return DI::dba()->selectToArray('contact', [], $condition,
|
||||||
|
['limit' => [$offset, $count], 'order' => [$shuffle ? 'name' : 'RAND()']]
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Counts the number of contacts with any relationship with the provided public contact.
|
||||||
|
*
|
||||||
|
* @param int $cid Public contact id
|
||||||
|
* @param array $condition Additional condition array on the contact table
|
||||||
|
* @return int
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
public static function countAll(int $cid, array $condition = [])
|
||||||
|
{
|
||||||
|
$condition = DBA::mergeConditions($condition,
|
||||||
|
['`id` IN (SELECT `relation-cid` FROM `contact-relation` WHERE `cid` = ? AND `follows`)
|
||||||
|
OR `id` IN (SELECT `cid` FROM `contact-relation` WHERE `relation-cid` = ? AND `follows`)',
|
||||||
|
$cid, $cid]
|
||||||
|
);
|
||||||
|
|
||||||
|
return DI::dba()->count('contact', $condition);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns a paginated list of contacts with any relationship with the provided public contact.
|
||||||
|
*
|
||||||
|
* @param int $cid Public contact id
|
||||||
|
* @param array $condition Additional condition on the contact table
|
||||||
|
* @param int $count
|
||||||
|
* @param int $offset
|
||||||
|
* @param bool $shuffle
|
||||||
|
* @return array
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
public static function listAll(int $cid, array $condition = [], int $count = 30, int $offset = 0, bool $shuffle = false)
|
||||||
|
{
|
||||||
|
$condition = DBA::mergeConditions($condition,
|
||||||
|
['`id` IN (SELECT `relation-cid` FROM `contact-relation` WHERE `cid` = ? AND `follows`)
|
||||||
|
OR `id` IN (SELECT `cid` FROM `contact-relation` WHERE `relation-cid` = ? AND `follows`)',
|
||||||
|
$cid, $cid]
|
||||||
|
);
|
||||||
|
|
||||||
|
return DI::dba()->selectToArray('contact', [], $condition,
|
||||||
|
['limit' => [$offset, $count], 'order' => [$shuffle ? 'name' : 'RAND()']]
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Counts the number of contacts that both provided public contacts have interacted with at least once.
|
* Counts the number of contacts that both provided public contacts have interacted with at least once.
|
||||||
* Interactions include follows and likes and comments on public posts.
|
* Interactions include follows and likes and comments on public posts.
|
||||||
|
@ -423,7 +508,6 @@ class Relation
|
||||||
*
|
*
|
||||||
* @param int $sourceId Public contact id
|
* @param int $sourceId Public contact id
|
||||||
* @param int $targetId Public contact id
|
* @param int $targetId Public contact id
|
||||||
* @param array $field Field list
|
|
||||||
* @param array $condition Additional condition on the contact table
|
* @param array $condition Additional condition on the contact table
|
||||||
* @param int $count
|
* @param int $count
|
||||||
* @param int $offset
|
* @param int $offset
|
||||||
|
@ -434,8 +518,8 @@ class Relation
|
||||||
public static function listCommon(int $sourceId, int $targetId, array $condition = [], int $count = 30, int $offset = 0, bool $shuffle = false)
|
public static function listCommon(int $sourceId, int $targetId, array $condition = [], int $count = 30, int $offset = 0, bool $shuffle = false)
|
||||||
{
|
{
|
||||||
$condition = DBA::mergeConditions($condition,
|
$condition = DBA::mergeConditions($condition,
|
||||||
["`id` IN (SELECT `relation-cid` FROM `contact-relation` WHERE `cid` = ? AND `follows`)
|
["`id` IN (SELECT `relation-cid` FROM `contact-relation` WHERE `cid` = ?)
|
||||||
AND `id` IN (SELECT `relation-cid` FROM `contact-relation` WHERE `cid` = ? AND `follows`)",
|
AND `id` IN (SELECT `relation-cid` FROM `contact-relation` WHERE `cid` = ?)",
|
||||||
$sourceId, $targetId]
|
$sourceId, $targetId]
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -444,7 +528,6 @@ class Relation
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Counts the number of contacts that are followed by both provided public contacts.
|
* Counts the number of contacts that are followed by both provided public contacts.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue