Add meta protocol group for private post support
This commit is contained in:
parent
4e427f615b
commit
3e6018b3f2
2 changed files with 4 additions and 2 deletions
|
@ -25,6 +25,8 @@ class Protocol
|
||||||
|
|
||||||
const FEDERATED = [self::DFRN, self::DIASPORA, self::OSTATUS, self::ACTIVITYPUB];
|
const FEDERATED = [self::DFRN, self::DIASPORA, self::OSTATUS, self::ACTIVITYPUB];
|
||||||
|
|
||||||
|
const SUPPORT_PRIVATE = [self::DFRN, self::DIASPORA, self::MAIL, self::ACTIVITYPUB, self::PUMPIO];
|
||||||
|
|
||||||
// Supported through a connector
|
// Supported through a connector
|
||||||
const DIASPORA2 = 'dspc'; // Diaspora connector
|
const DIASPORA2 = 'dspc'; // Diaspora connector
|
||||||
const LINKEDIN = 'lnkd'; // LinkedIn
|
const LINKEDIN = 'lnkd'; // LinkedIn
|
||||||
|
|
|
@ -336,7 +336,7 @@ class Group extends BaseObject
|
||||||
$followersStmt = Contact::select(['id'], [
|
$followersStmt = Contact::select(['id'], [
|
||||||
'uid' => $uid,
|
'uid' => $uid,
|
||||||
'rel' => [Contact::FOLLOWER, Contact::FRIEND],
|
'rel' => [Contact::FOLLOWER, Contact::FRIEND],
|
||||||
'protocol' => Protocol::NATIVE_SUPPORT,
|
'protocol' => Protocol::SUPPORT_PRIVATE,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
while($follower = DBA::fetch($followersStmt)) {
|
while($follower = DBA::fetch($followersStmt)) {
|
||||||
|
@ -351,7 +351,7 @@ class Group extends BaseObject
|
||||||
$mutualsStmt = Contact::select(['id'], [
|
$mutualsStmt = Contact::select(['id'], [
|
||||||
'uid' => $uid,
|
'uid' => $uid,
|
||||||
'rel' => [Contact::FRIEND],
|
'rel' => [Contact::FRIEND],
|
||||||
'protocol' => Protocol::NATIVE_SUPPORT,
|
'protocol' => Protocol::SUPPORT_PRIVATE,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
while($mutual = DBA::fetch($mutualsStmt)) {
|
while($mutual = DBA::fetch($mutualsStmt)) {
|
||||||
|
|
Loading…
Reference in a new issue