The GNU-Social import is removed
This commit is contained in:
parent
31e8574006
commit
d75cd8a00a
5 changed files with 10 additions and 17 deletions
|
@ -1066,8 +1066,8 @@ class DFRN
|
|||
|
||||
$fields = ['id', 'uid', 'url', 'network', 'avatar-date', 'avatar', 'name-date', 'uri-date', 'addr',
|
||||
'name', 'nick', 'about', 'location', 'keywords', 'xmpp', 'bdyear', 'bd', 'hidden', 'contact-type'];
|
||||
$condition = ["`uid` = ? AND `nurl` = ? AND `network` != ? AND NOT `pending` AND NOT `blocked`",
|
||||
$importer["importer_uid"], Strings::normaliseLink($author["link"]), Protocol::STATUSNET];
|
||||
$condition = ["`uid` = ? AND `nurl` = ? AND NOT `pending` AND NOT `blocked`",
|
||||
$importer["importer_uid"], Strings::normaliseLink($author["link"])];
|
||||
|
||||
if ($importer['account-type'] != User::ACCOUNT_TYPE_COMMUNITY) {
|
||||
$condition = DBA::mergeConditions($condition, ['rel' => [Contact::SHARING, Contact::FRIEND]]);
|
||||
|
|
|
@ -103,9 +103,9 @@ class OStatus
|
|||
*/
|
||||
if ($aliaslink != '') {
|
||||
$contact = DBA::selectFirst('contact', [], [
|
||||
"`uid` = ? AND `alias` = ? AND `network` != ? AND `rel` IN (?, ?)",
|
||||
"`uid` = ? AND `alias` = ? AND `rel` IN (?, ?)",
|
||||
$importer['uid'],
|
||||
$aliaslink, Protocol::STATUSNET,
|
||||
$aliaslink,
|
||||
Contact::SHARING, Contact::FRIEND,
|
||||
]);
|
||||
}
|
||||
|
@ -116,11 +116,10 @@ class OStatus
|
|||
}
|
||||
|
||||
$contact = DBA::selectFirst('contact', [], [
|
||||
"`uid` = ? AND `nurl` IN (?, ?) AND `network` != ? AND `rel` IN (?, ?)",
|
||||
"`uid` = ? AND `nurl` IN (?, ?) AND `rel` IN (?, ?)",
|
||||
$importer['uid'],
|
||||
Strings::normaliseLink($author['author-link']),
|
||||
Strings::normaliseLink($aliaslink),
|
||||
Protocol::STATUSNET,
|
||||
Contact::SHARING,
|
||||
Contact::FRIEND,
|
||||
]);
|
||||
|
@ -128,10 +127,9 @@ class OStatus
|
|||
|
||||
if (!DBA::isResult($contact) && ($addr != '')) {
|
||||
$contact = DBA::selectFirst('contact', [], [
|
||||
"`uid` = ? AND `addr` = ? AND `network` != ? AND `rel` IN (?, ?)",
|
||||
"`uid` = ? AND `addr` = ? AND `rel` IN (?, ?)",
|
||||
$importer['uid'],
|
||||
$addr,
|
||||
Protocol::STATUSNET,
|
||||
Contact::SHARING,
|
||||
Contact::FRIEND,
|
||||
]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue