ec4e432d55
Sometimes we just want to accept the user's wrong, but when it comes to remote APIs etc. we probably want to let the client know it has done something already (in this case multiple identical subscription requests - which might indicate to it that it should refresh the sub lists or something).
99 lines
3.6 KiB
PHP
99 lines
3.6 KiB
PHP
<?php
|
|
|
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
|
|
|
/**
|
|
* Table Definition for subscription_queue
|
|
*/
|
|
|
|
class Subscription_queue extends Managed_DataObject
|
|
{
|
|
public $__table = 'subscription_queue'; // table name
|
|
public $subscriber;
|
|
public $subscribed;
|
|
public $created;
|
|
|
|
public static function schemaDef()
|
|
{
|
|
return array(
|
|
'description' => 'Holder for subscription requests awaiting moderation.',
|
|
'fields' => array(
|
|
'subscriber' => array('type' => 'int', 'not null' => true, 'description' => 'remote or local profile making the request'),
|
|
'subscribed' => array('type' => 'int', 'not null' => true, 'description' => 'remote or local profile being subscribed to'),
|
|
'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'),
|
|
),
|
|
'primary key' => array('subscriber', 'subscribed'),
|
|
'indexes' => array(
|
|
'subscription_queue_subscriber_created_idx' => array('subscriber', 'created'),
|
|
'subscription_queue_subscribed_created_idx' => array('subscribed', 'created'),
|
|
),
|
|
'foreign keys' => array(
|
|
'subscription_queue_subscriber_fkey' => array('profile', array('subscriber' => 'id')),
|
|
'subscription_queue_subscribed_fkey' => array('profile', array('subscribed' => 'id')),
|
|
)
|
|
);
|
|
}
|
|
|
|
public static function saveNew(Profile $subscriber, Profile $subscribed)
|
|
{
|
|
if (self::exists($subscriber, $subscribed)) {
|
|
throw new AlreadyFulfilledException(_('This subscription request is already in progress.'));
|
|
}
|
|
$rq = new Subscription_queue();
|
|
$rq->subscriber = $subscriber->id;
|
|
$rq->subscribed = $subscribed->id;
|
|
$rq->created = common_sql_now();
|
|
$rq->insert();
|
|
return $rq;
|
|
}
|
|
|
|
public function exists(Profile $subscriber, Profile $other)
|
|
{
|
|
$sub = Subscription_queue::pkeyGet(array('subscriber' => $subscriber->id,
|
|
'subscribed' => $other->id));
|
|
return ($sub instanceof Subscription_queue);
|
|
}
|
|
|
|
/**
|
|
* Complete a pending subscription, as we've got approval of some sort.
|
|
*
|
|
* @return Subscription
|
|
*/
|
|
public function complete()
|
|
{
|
|
$subscriber = Profile::getKV('id', $this->subscriber);
|
|
$subscribed = Profile::getKV('id', $this->subscribed);
|
|
try {
|
|
$sub = Subscription::start($subscriber, $subscribed, Subscription::FORCE);
|
|
$this->delete();
|
|
} catch (AlreadyFulfilledException $e) {
|
|
common_debug('Tried to start a subscription which already existed.');
|
|
}
|
|
return $sub;
|
|
}
|
|
|
|
/**
|
|
* Cancel an outstanding subscription request to the other profile.
|
|
*/
|
|
public function abort()
|
|
{
|
|
$subscriber = Profile::getKV('id', $this->subscriber);
|
|
$subscribed = Profile::getKV('id', $this->subscribed);
|
|
if (Event::handle('StartCancelSubscription', array($subscriber, $subscribed))) {
|
|
$this->delete();
|
|
Event::handle('EndCancelSubscription', array($subscriber, $subscribed));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Send notifications via email etc to group administrators about
|
|
* this exciting new pending moderation queue item!
|
|
*/
|
|
public function notify()
|
|
{
|
|
$other = Profile::getKV('id', $this->subscriber);
|
|
$listenee = User::getKV('id', $this->subscribed);
|
|
mail_subscribe_pending_notify_profile($listenee, $other);
|
|
}
|
|
}
|