Update web modules handling introduction to use new model class
This commit is contained in:
parent
c239d218d8
commit
0656e9ece4
|
@ -14,7 +14,7 @@ use Friendica\Core\Renderer;
|
||||||
use Friendica\Core\System;
|
use Friendica\Core\System;
|
||||||
use Friendica\Database\DBA;
|
use Friendica\Database\DBA;
|
||||||
use Friendica\Module\Login;
|
use Friendica\Module\Login;
|
||||||
use Friendica\Model\Contact;
|
use Friendica\Model\Introduction;
|
||||||
use Friendica\Model\Notify;
|
use Friendica\Model\Notify;
|
||||||
|
|
||||||
function notifications_post(App $a)
|
function notifications_post(App $a)
|
||||||
|
@ -30,43 +30,20 @@ function notifications_post(App $a)
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($request_id) {
|
if ($request_id) {
|
||||||
$intro = DBA::selectFirst('intro', ['id', 'contact-id', 'fid'], ['id' => $request_id, 'uid' => local_user()]);
|
/** @var Introduction $Intro */
|
||||||
|
$Intro = \Friendica\BaseObject::getClass(Introduction::class);
|
||||||
|
$Intro->fetch(['id' => $request_id, 'uid' => local_user()]);
|
||||||
|
|
||||||
if (DBA::isResult($intro)) {
|
switch ($_POST['submit']) {
|
||||||
$intro_id = $intro['id'];
|
case L10n::t('Discard'):
|
||||||
$contact_id = $intro['contact-id'];
|
$Intro->discard();
|
||||||
} else {
|
break;
|
||||||
notice(L10n::t('Invalid request identifier.') . EOL);
|
case L10n::t('Ignore'):
|
||||||
return;
|
$Intro->ignore();
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
// If it is a friend suggestion, the contact is not a new friend but an existing friend
|
$a->internalRedirect('notifications/intros');
|
||||||
// that should not be deleted.
|
|
||||||
|
|
||||||
$fid = $intro['fid'];
|
|
||||||
|
|
||||||
if ($_POST['submit'] == L10n::t('Discard')) {
|
|
||||||
DBA::delete('intro', ['id' => $intro_id]);
|
|
||||||
if (!$fid) {
|
|
||||||
// When the contact entry had been created just for that intro, we want to get rid of it now
|
|
||||||
$condition = ['id' => $contact_id, 'uid' => local_user(),
|
|
||||||
'self' => false, 'pending' => true, 'rel' => [0, Contact::FOLLOWER]];
|
|
||||||
$contact_pending = DBA::exists('contact', $condition);
|
|
||||||
|
|
||||||
// Remove the "pending" to stop the reappearing in any case
|
|
||||||
DBA::update('contact', ['pending' => false], ['id' => $contact_id]);
|
|
||||||
|
|
||||||
if ($contact_pending) {
|
|
||||||
Contact::remove($contact_id);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
$a->internalRedirect('notifications/intros');
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($_POST['submit'] == L10n::t('Ignore')) {
|
|
||||||
DBA::update('intro', ['ignore' => true], ['id' => $intro_id]);
|
|
||||||
$a->internalRedirect('notifications/intros');
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,17 +1,9 @@
|
||||||
<?php
|
<?php
|
||||||
namespace Friendica\Module;
|
namespace Friendica\Module;
|
||||||
|
|
||||||
use Friendica\App;
|
|
||||||
use Friendica\BaseModule;
|
use Friendica\BaseModule;
|
||||||
use Friendica\Core\L10n;
|
use Friendica\Core\L10n;
|
||||||
use Friendica\Core\Logger;
|
use Friendica\Model\Introduction;
|
||||||
use Friendica\Core\Protocol;
|
|
||||||
use Friendica\Database\DBA;
|
|
||||||
use Friendica\Model\Contact;
|
|
||||||
use Friendica\Model\User;
|
|
||||||
use Friendica\Protocol\Diaspora;
|
|
||||||
use Friendica\Protocol\ActivityPub;
|
|
||||||
use Friendica\Util\DateTimeFormat;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Process follow request confirmations
|
* Process follow request confirmations
|
||||||
|
@ -30,67 +22,15 @@ class FollowConfirm extends BaseModule
|
||||||
|
|
||||||
$intro_id = intval($_POST['intro_id'] ?? 0);
|
$intro_id = intval($_POST['intro_id'] ?? 0);
|
||||||
$duplex = intval($_POST['duplex'] ?? 0);
|
$duplex = intval($_POST['duplex'] ?? 0);
|
||||||
$cid = intval($_POST['contact_id'] ?? 0);
|
|
||||||
$hidden = intval($_POST['hidden'] ?? 0);
|
$hidden = intval($_POST['hidden'] ?? 0);
|
||||||
|
|
||||||
if (empty($cid)) {
|
/** @var Introduction $Intro */
|
||||||
notice(L10n::t('No given contact.') . EOL);
|
$Intro = self::getClass(Introduction::class);
|
||||||
return;
|
$Intro->fetch(['id' => $intro_id, 'uid' => local_user()]);
|
||||||
}
|
|
||||||
|
|
||||||
Logger::info('Confirming follower', ['cid' => $cid]);
|
$cid = $Intro->{'contact-id'};
|
||||||
|
|
||||||
$contact = DBA::selectFirst('contact', [], ['id' => $cid, 'uid' => $uid]);
|
$Intro->confirm($duplex, $hidden);
|
||||||
if (!DBA::isResult($contact)) {
|
|
||||||
Logger::warning('Contact not found in DB.', ['cid' => $cid]);
|
|
||||||
notice(L10n::t('Contact not found.') . EOL);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$relation = $contact['rel'];
|
|
||||||
$new_relation = $contact['rel'];
|
|
||||||
$writable = $contact['writable'];
|
|
||||||
|
|
||||||
if (!empty($contact['protocol'])) {
|
|
||||||
$protocol = $contact['protocol'];
|
|
||||||
} else {
|
|
||||||
$protocol = $contact['network'];
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($protocol == Protocol::ACTIVITYPUB) {
|
|
||||||
ActivityPub\Transmitter::sendContactAccept($contact['url'], $contact['hub-verify'], $uid);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (in_array($protocol, [Protocol::DIASPORA, Protocol::ACTIVITYPUB])) {
|
|
||||||
if ($duplex) {
|
|
||||||
$new_relation = Contact::FRIEND;
|
|
||||||
} else {
|
|
||||||
$new_relation = Contact::FOLLOWER;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($new_relation != Contact::FOLLOWER) {
|
|
||||||
$writable = 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$fields = ['name-date' => DateTimeFormat::utcNow(),
|
|
||||||
'uri-date' => DateTimeFormat::utcNow(),
|
|
||||||
'blocked' => false, 'pending' => false, 'protocol' => $protocol,
|
|
||||||
'writable' => $writable, 'hidden' => $hidden, 'rel' => $new_relation];
|
|
||||||
DBA::update('contact', $fields, ['id' => $cid]);
|
|
||||||
|
|
||||||
if ($new_relation == Contact::FRIEND) {
|
|
||||||
if ($protocol == Protocol::DIASPORA) {
|
|
||||||
$user = User::getById($uid);
|
|
||||||
$contact = Contact::getById($cid);
|
|
||||||
$ret = Diaspora::sendShare($user, $contact);
|
|
||||||
Logger::info('share returns', ['return' => $ret]);
|
|
||||||
} elseif ($protocol == Protocol::ACTIVITYPUB) {
|
|
||||||
ActivityPub\Transmitter::sendActivity('Follow', $contact['url'], $uid);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
DBA::delete('intro', ['id' => $intro_id]);
|
|
||||||
|
|
||||||
$a->internalRedirect('contact/' . intval($cid));
|
$a->internalRedirect('contact/' . intval($cid));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue