Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
099f236f45
46
include/DReport.php
Normal file
46
include/DReport.php
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
|
||||||
|
class DReport {
|
||||||
|
|
||||||
|
private $location;
|
||||||
|
private $sender;
|
||||||
|
private $recipient;
|
||||||
|
private $message_id;
|
||||||
|
private $status;
|
||||||
|
private $date;
|
||||||
|
|
||||||
|
function __construct($location,$sender,$recipient,$message_id,$status = 'deliver') {
|
||||||
|
$this->location = $location;
|
||||||
|
$this->sender = $sender;
|
||||||
|
$this->recipient = $recipient;
|
||||||
|
$this->message_id = $message_id;
|
||||||
|
$this->status = $status;
|
||||||
|
$this->date = datetime_convert();
|
||||||
|
}
|
||||||
|
|
||||||
|
function update($status) {
|
||||||
|
$this->status = $status;
|
||||||
|
$this->date = datetime_convert();
|
||||||
|
}
|
||||||
|
|
||||||
|
function set($arr) {
|
||||||
|
$this->location = $arr['location'];
|
||||||
|
$this->sender = $arr['sender'];
|
||||||
|
$this->recipient = $arr['recipient'];
|
||||||
|
$this->message_id = $arr['message_id'];
|
||||||
|
$this->status = $arr['status'];
|
||||||
|
$this->date = $arr['date'];
|
||||||
|
}
|
||||||
|
|
||||||
|
function get() {
|
||||||
|
return array(
|
||||||
|
'location' => $this->location,
|
||||||
|
'sender' => $this->sender,
|
||||||
|
'recipient' => $this->recipient,
|
||||||
|
'message_id' => $this->message_id,
|
||||||
|
'status' => $this->status,
|
||||||
|
'date' => $this->date
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
@ -487,20 +487,17 @@ function zot_refresh($them, $channel = null, $force = false) {
|
|||||||
if($y) {
|
if($y) {
|
||||||
logger("New introduction received for {$channel['channel_name']}");
|
logger("New introduction received for {$channel['channel_name']}");
|
||||||
$new_perms = get_all_perms($channel['channel_id'],$x['hash']);
|
$new_perms = get_all_perms($channel['channel_id'],$x['hash']);
|
||||||
if($new_perms != $previous_perms) {
|
|
||||||
// Send back a permissions update if permissions have changed
|
// Send a clone sync packet and a permissions update if permissions have changed
|
||||||
$z = q("select * from abook where abook_xchan = '%s' and abook_channel = %d and abook_self = 0 limit 1",
|
|
||||||
dbesc($x['hash']),
|
$new_connection = q("select * from abook where abook_xchan = '%s' and abook_channel = %d and abook_self = 0 order by abook_created desc limit 1",
|
||||||
intval($channel['channel_id'])
|
dbesc($x['hash']),
|
||||||
);
|
intval($channel['channel_id'])
|
||||||
if($z)
|
|
||||||
proc_run('php','include/notifier.php','permission_update',$z[0]['abook_id']);
|
|
||||||
}
|
|
||||||
$new_connection = q("select abook_id, abook_pending from abook where abook_channel = %d and abook_xchan = '%s' order by abook_created desc limit 1",
|
|
||||||
intval($channel['channel_id']),
|
|
||||||
dbesc($x['hash'])
|
|
||||||
);
|
);
|
||||||
|
|
||||||
if($new_connection) {
|
if($new_connection) {
|
||||||
|
if($new_perms != $previous_perms)
|
||||||
|
proc_run('php','include/notifier.php','permission_update',$new_connection[0]['abook_id']);
|
||||||
require_once('include/enotify.php');
|
require_once('include/enotify.php');
|
||||||
notification(array(
|
notification(array(
|
||||||
'type' => NOTIFY_INTRO,
|
'type' => NOTIFY_INTRO,
|
||||||
@ -508,12 +505,17 @@ function zot_refresh($them, $channel = null, $force = false) {
|
|||||||
'to_xchan' => $channel['channel_hash'],
|
'to_xchan' => $channel['channel_hash'],
|
||||||
'link' => z_root() . '/connedit/' . $new_connection[0]['abook_id'],
|
'link' => z_root() . '/connedit/' . $new_connection[0]['abook_id'],
|
||||||
));
|
));
|
||||||
}
|
|
||||||
|
if($their_perms & PERMS_R_STREAM) {
|
||||||
|
if(($channel['channel_w_stream'] & PERMS_PENDING)
|
||||||
|
|| (! intval($new_connection[0]['abook_pending'])) )
|
||||||
|
proc_run('php','include/onepoll.php',$new_connection[0]['abook_id']);
|
||||||
|
}
|
||||||
|
|
||||||
if($new_connection && ($their_perms & PERMS_R_STREAM)) {
|
unset($new_connection[0]['abook_id']);
|
||||||
if(($channel['channel_w_stream'] & PERMS_PENDING)
|
unset($new_connection[0]['abook_account']);
|
||||||
|| (! intval($new_connection[0]['abook_pending'])) )
|
unset($new_connection[0]['abook_channel']);
|
||||||
proc_run('php','include/onepoll.php',$new_connection[0]['abook_id']);
|
build_sync_packet($channel['channel_id'], array('abook' => $new_connection));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1 +1 @@
|
|||||||
2015-09-18.1159
|
2015-09-20.1161
|
||||||
|
Reference in New Issue
Block a user