mirror of
https://github.com/friendica/friendica
synced 2024-11-09 17:02:54 +00:00
Fix comtact-relation follower calculation
This commit is contained in:
parent
7d10518e94
commit
0d2ea97eb1
5 changed files with 50 additions and 23 deletions
|
@ -1,6 +1,6 @@
|
||||||
-- ------------------------------------------
|
-- ------------------------------------------
|
||||||
-- Friendica 2024.03-rc (Yellow Archangel)
|
-- Friendica 2024.03-rc (Yellow Archangel)
|
||||||
-- DB_UPDATE_VERSION 1552
|
-- DB_UPDATE_VERSION 1553
|
||||||
-- ------------------------------------------
|
-- ------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
@ -539,6 +539,7 @@ CREATE TABLE IF NOT EXISTS `contact-relation` (
|
||||||
`relation-score` smallint unsigned COMMENT 'score for interactions of relation-cid on cid',
|
`relation-score` smallint unsigned COMMENT 'score for interactions of relation-cid on cid',
|
||||||
`thread-score` smallint unsigned COMMENT 'score for interactions of cid on threads of relation-cid',
|
`thread-score` smallint unsigned COMMENT 'score for interactions of cid on threads of relation-cid',
|
||||||
`relation-thread-score` smallint unsigned COMMENT 'score for interactions of relation-cid on threads of cid',
|
`relation-thread-score` smallint unsigned COMMENT 'score for interactions of relation-cid on threads of cid',
|
||||||
|
`post-score` smallint unsigned COMMENT 'score for the amount of posts from cid that can be seen by relation-cid',
|
||||||
PRIMARY KEY(`cid`,`relation-cid`),
|
PRIMARY KEY(`cid`,`relation-cid`),
|
||||||
INDEX `relation-cid` (`relation-cid`),
|
INDEX `relation-cid` (`relation-cid`),
|
||||||
FOREIGN KEY (`cid`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
|
FOREIGN KEY (`cid`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
|
||||||
|
|
|
@ -6,17 +6,18 @@ Contact relations
|
||||||
Fields
|
Fields
|
||||||
------
|
------
|
||||||
|
|
||||||
| Field | Description | Type | Null | Key | Default | Extra |
|
| Field | Description | Type | Null | Key | Default | Extra |
|
||||||
| --------------------- | -------------------------------------------------------- | ----------------- | ---- | --- | ------------------- | ----- |
|
| --------------------- | ----------------------------------------------------------------------- | ----------------- | ---- | --- | ------------------- | ----- |
|
||||||
| cid | contact the related contact had interacted with | int unsigned | NO | PRI | 0 | |
|
| cid | contact the related contact had interacted with | int unsigned | NO | PRI | 0 | |
|
||||||
| relation-cid | related contact who had interacted with the contact | int unsigned | NO | PRI | 0 | |
|
| relation-cid | related contact who had interacted with the contact | int unsigned | NO | PRI | 0 | |
|
||||||
| last-interaction | Date of the last interaction by relation-cid on cid | datetime | NO | | 0001-01-01 00:00:00 | |
|
| last-interaction | Date of the last interaction by relation-cid on cid | datetime | NO | | 0001-01-01 00:00:00 | |
|
||||||
| follow-updated | Date of the last update of the contact relationship | datetime | NO | | 0001-01-01 00:00:00 | |
|
| follow-updated | Date of the last update of the contact relationship | datetime | NO | | 0001-01-01 00:00:00 | |
|
||||||
| follows | if true, relation-cid follows cid | boolean | NO | | 0 | |
|
| follows | if true, relation-cid follows cid | boolean | NO | | 0 | |
|
||||||
| score | score for interactions of cid on relation-cid | smallint unsigned | YES | | NULL | |
|
| score | score for interactions of cid on relation-cid | smallint unsigned | YES | | NULL | |
|
||||||
| relation-score | score for interactions of relation-cid on cid | smallint unsigned | YES | | NULL | |
|
| relation-score | score for interactions of relation-cid on cid | smallint unsigned | YES | | NULL | |
|
||||||
| thread-score | score for interactions of cid on threads of relation-cid | smallint unsigned | YES | | NULL | |
|
| thread-score | score for interactions of cid on threads of relation-cid | smallint unsigned | YES | | NULL | |
|
||||||
| relation-thread-score | score for interactions of relation-cid on threads of cid | smallint unsigned | YES | | NULL | |
|
| relation-thread-score | score for interactions of relation-cid on threads of cid | smallint unsigned | YES | | NULL | |
|
||||||
|
| post-score | score for the amount of posts from cid that can be seen by relation-cid | smallint unsigned | YES | | NULL | |
|
||||||
|
|
||||||
Indexes
|
Indexes
|
||||||
------------
|
------------
|
||||||
|
|
|
@ -103,6 +103,7 @@ class Widget
|
||||||
{
|
{
|
||||||
// Always hide content from these networks
|
// Always hide content from these networks
|
||||||
$networks = [Protocol::PHANTOM, Protocol::FACEBOOK, Protocol::APPNET, Protocol::TWITTER, Protocol::ZOT];
|
$networks = [Protocol::PHANTOM, Protocol::FACEBOOK, Protocol::APPNET, Protocol::TWITTER, Protocol::ZOT];
|
||||||
|
Addon::loadAddons();
|
||||||
|
|
||||||
if (!Addon::isEnabled("discourse")) {
|
if (!Addon::isEnabled("discourse")) {
|
||||||
$networks[] = Protocol::DISCOURSE;
|
$networks[] = Protocol::DISCOURSE;
|
||||||
|
|
|
@ -22,6 +22,7 @@
|
||||||
namespace Friendica\Model\Contact;
|
namespace Friendica\Model\Contact;
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
|
use Friendica\Content\Widget;
|
||||||
use Friendica\Core\Logger;
|
use Friendica\Core\Logger;
|
||||||
use Friendica\Core\Protocol;
|
use Friendica\Core\Protocol;
|
||||||
use Friendica\Database\Database;
|
use Friendica\Database\Database;
|
||||||
|
@ -78,14 +79,14 @@ class Relation
|
||||||
*/
|
*/
|
||||||
public static function discoverByUser(int $uid)
|
public static function discoverByUser(int $uid)
|
||||||
{
|
{
|
||||||
$contact = Contact::selectFirst(['id', 'url', 'network'], ['uid' => $uid, 'self' => true]);
|
$contact = Contact::selectFirst(['id', 'url', 'network'], ['id' => Contact::getPublicIdByUserId($uid)]);
|
||||||
if (empty($contact)) {
|
if (empty($contact)) {
|
||||||
Logger::warning('Self contact for user not found', ['uid' => $uid]);
|
Logger::warning('Self contact for user not found', ['uid' => $uid]);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
$followers = self::getContacts($uid, [Contact::FOLLOWER, Contact::FRIEND]);
|
$followers = self::getContacts($uid, [Contact::FOLLOWER, Contact::FRIEND], false);
|
||||||
$followings = self::getContacts($uid, [Contact::SHARING, Contact::FRIEND]);
|
$followings = self::getContacts($uid, [Contact::SHARING, Contact::FRIEND], false);
|
||||||
|
|
||||||
self::updateFollowersFollowings($contact, $followers, $followings);
|
self::updateFollowersFollowings($contact, $followers, $followings);
|
||||||
}
|
}
|
||||||
|
@ -207,10 +208,11 @@ class Relation
|
||||||
* Fetch contact url list from the given local user
|
* Fetch contact url list from the given local user
|
||||||
*
|
*
|
||||||
* @param integer $uid
|
* @param integer $uid
|
||||||
* @param array $rel
|
* @param array $rel
|
||||||
|
* @param bool $only_ap
|
||||||
* @return array contact list
|
* @return array contact list
|
||||||
*/
|
*/
|
||||||
private static function getContacts(int $uid, array $rel): array
|
private static function getContacts(int $uid, array $rel, bool $only_ap = true): array
|
||||||
{
|
{
|
||||||
$list = [];
|
$list = [];
|
||||||
$profile = Profile::getByUID($uid);
|
$profile = Profile::getByUID($uid);
|
||||||
|
@ -219,15 +221,22 @@ class Relation
|
||||||
}
|
}
|
||||||
|
|
||||||
$condition = [
|
$condition = [
|
||||||
'rel' => $rel,
|
'rel' => $rel,
|
||||||
'uid' => $uid,
|
'uid' => $uid,
|
||||||
'self' => false,
|
'self' => false,
|
||||||
'deleted' => false,
|
'deleted' => false,
|
||||||
'hidden' => false,
|
'hidden' => false,
|
||||||
'archive' => false,
|
'archive' => false,
|
||||||
'pending' => false,
|
'pending' => false,
|
||||||
|
'blocked' => false,
|
||||||
|
'failed' => false,
|
||||||
];
|
];
|
||||||
$condition = DBA::mergeConditions($condition, ["`url` IN (SELECT `url` FROM `apcontact`)"]);
|
if ($only_ap) {
|
||||||
|
$condition = DBA::mergeConditions($condition, ["`url` IN (SELECT `url` FROM `apcontact`)"]);
|
||||||
|
} else {
|
||||||
|
$networks = Widget::unavailableNetworks();
|
||||||
|
$condition = DBA::mergeConditions($condition, array_merge(["NOT `network` IN (" . substr(str_repeat("?, ", count($networks)), 0, -2) . ")"], $networks));
|
||||||
|
}
|
||||||
$contacts = DBA::select('contact', ['url'], $condition);
|
$contacts = DBA::select('contact', ['url'], $condition);
|
||||||
while ($contact = DBA::fetch($contacts)) {
|
while ($contact = DBA::fetch($contacts)) {
|
||||||
$list[] = $contact['url'];
|
$list[] = $contact['url'];
|
||||||
|
@ -870,6 +879,20 @@ class Relation
|
||||||
DBA::update('contact-relation', ['thread-score' => $score], ['relation-cid' => $contact_id, 'cid' => $interaction['author-id']]);
|
DBA::update('contact-relation', ['thread-score' => $score], ['relation-cid' => $contact_id, 'cid' => $interaction['author-id']]);
|
||||||
}
|
}
|
||||||
DBA::close($interactions);
|
DBA::close($interactions);
|
||||||
|
|
||||||
|
$total = DBA::fetchFirst("SELECT count(*) AS `posts` FROM `post-thread-user` WHERE EXISTS(SELECT `cid` FROM `contact-relation` WHERE `cid` = `post-thread-user`.`author-id` AND `relation-cid` = ? AND `follows`) AND `uid` = ? AND `created` > ?",
|
||||||
|
$contact_id, $uid, DateTimeFormat::utc('now - ' . $days . ' day'));
|
||||||
|
|
||||||
|
Logger::debug('Calculate post-score', ['uid' => $uid, 'total' => $total['posts']]);
|
||||||
|
|
||||||
|
$posts = DBA::p("SELECT `author-id`, count(*) AS `posts` FROM `post-thread-user` WHERE EXISTS(SELECT `cid` FROM `contact-relation` WHERE `cid` = `post-thread-user`.`author-id` AND `relation-cid` = ? AND `follows`) AND `uid` = ? AND `created` > ? GROUP BY `author-id`",
|
||||||
|
$contact_id, $uid, DateTimeFormat::utc('now - ' . $days . ' day'));
|
||||||
|
while ($post = DBA::fetch($posts)) {
|
||||||
|
$score = min((int)(($post['posts'] / $total['posts']) * 65535), 65535);
|
||||||
|
DBA::update('contact-relation', ['post-score' => $score], ['relation-cid' => $contact_id, 'cid' => $post['author-id']]);
|
||||||
|
}
|
||||||
|
DBA::close($posts);
|
||||||
|
|
||||||
Logger::debug('Calculation - end', ['uid' => $uid]);
|
Logger::debug('Calculation - end', ['uid' => $uid]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -56,7 +56,7 @@ use Friendica\Database\DBA;
|
||||||
|
|
||||||
// This file is required several times during the test in DbaDefinition which justifies this condition
|
// This file is required several times during the test in DbaDefinition which justifies this condition
|
||||||
if (!defined('DB_UPDATE_VERSION')) {
|
if (!defined('DB_UPDATE_VERSION')) {
|
||||||
define('DB_UPDATE_VERSION', 1552);
|
define('DB_UPDATE_VERSION', 1553);
|
||||||
}
|
}
|
||||||
|
|
||||||
return [
|
return [
|
||||||
|
@ -598,6 +598,7 @@ return [
|
||||||
"relation-score" => ["type" => "smallint unsigned", "comment" => "score for interactions of relation-cid on cid"],
|
"relation-score" => ["type" => "smallint unsigned", "comment" => "score for interactions of relation-cid on cid"],
|
||||||
"thread-score" => ["type" => "smallint unsigned", "comment" => "score for interactions of cid on threads of relation-cid"],
|
"thread-score" => ["type" => "smallint unsigned", "comment" => "score for interactions of cid on threads of relation-cid"],
|
||||||
"relation-thread-score" => ["type" => "smallint unsigned", "comment" => "score for interactions of relation-cid on threads of cid"],
|
"relation-thread-score" => ["type" => "smallint unsigned", "comment" => "score for interactions of relation-cid on threads of cid"],
|
||||||
|
"post-score" => ["type" => "smallint unsigned", "comment" => "score for the amount of posts from cid that can be seen by relation-cid"],
|
||||||
],
|
],
|
||||||
"indexes" => [
|
"indexes" => [
|
||||||
"PRIMARY" => ["cid", "relation-cid"],
|
"PRIMARY" => ["cid", "relation-cid"],
|
||||||
|
|
Loading…
Reference in a new issue