move dreport from zot to lib
This commit is contained in:
parent
2d69b419ff
commit
56d1c08317
@ -1,5 +1,5 @@
|
|||||||
<?php
|
<?php
|
||||||
namespace Zotlabs\Zot;
|
namespace Zotlabs\Lib;
|
||||||
|
|
||||||
class DReport {
|
class DReport {
|
||||||
|
|
@ -1728,7 +1728,7 @@ function process_delivery($sender, $arr, $deliveries, $relay, $public = false, $
|
|||||||
foreach($deliveries as $d) {
|
foreach($deliveries as $d) {
|
||||||
$local_public = $public;
|
$local_public = $public;
|
||||||
|
|
||||||
$DR = new Zotlabs\Zot\DReport(z_root(),$sender['hash'],$d['hash'],$arr['mid']);
|
$DR = new Zotlabs\Lib\DReport(z_root(),$sender['hash'],$d['hash'],$arr['mid']);
|
||||||
|
|
||||||
$r = q("select * from channel where channel_hash = '%s' limit 1",
|
$r = q("select * from channel where channel_hash = '%s' limit 1",
|
||||||
dbesc($d['hash'])
|
dbesc($d['hash'])
|
||||||
@ -2257,7 +2257,7 @@ function process_mail_delivery($sender, $arr, $deliveries) {
|
|||||||
|
|
||||||
foreach($deliveries as $d) {
|
foreach($deliveries as $d) {
|
||||||
|
|
||||||
$DR = new Zotlabs\Zot\DReport(z_root(),$sender['hash'],$d['hash'],$arr['mid']);
|
$DR = new Zotlabs\Lib\DReport(z_root(),$sender['hash'],$d['hash'],$arr['mid']);
|
||||||
|
|
||||||
$r = q("select * from channel where channel_hash = '%s' limit 1",
|
$r = q("select * from channel where channel_hash = '%s' limit 1",
|
||||||
dbesc($d['hash'])
|
dbesc($d['hash'])
|
||||||
@ -3898,11 +3898,11 @@ function process_channel_sync_delivery($sender, $arr, $deliveries) {
|
|||||||
// we should probably do this for all items, but usually we only send one.
|
// we should probably do this for all items, but usually we only send one.
|
||||||
|
|
||||||
if(array_key_exists('item',$arr) && is_array($arr['item'][0])) {
|
if(array_key_exists('item',$arr) && is_array($arr['item'][0])) {
|
||||||
$DR = new Zotlabs\Zot\DReport(z_root(),$d['hash'],$d['hash'],$arr['item'][0]['message_id'],'channel sync processed');
|
$DR = new Zotlabs\Lib\DReport(z_root(),$d['hash'],$d['hash'],$arr['item'][0]['message_id'],'channel sync processed');
|
||||||
$DR->addto_recipient($channel['channel_name'] . ' <' . channel_reddress($channel) . '>');
|
$DR->addto_recipient($channel['channel_name'] . ' <' . channel_reddress($channel) . '>');
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
$DR = new Zotlabs\Zot\DReport(z_root(),$d['hash'],$d['hash'],'sync packet','channel sync delivered');
|
$DR = new Zotlabs\Lib\DReport(z_root(),$d['hash'],$d['hash'],'sync packet','channel sync delivered');
|
||||||
|
|
||||||
$result[] = $DR->get();
|
$result[] = $DR->get();
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user