Merge branch 'fabrixxm-master'

Conflicts:
	boot.php
This commit is contained in:
Friendika 2011-01-28 18:50:20 -08:00
commit 26cc2e02fe
16 changed files with 213 additions and 99 deletions

View file

@ -1,17 +1,22 @@
<?php
require_once("boot.php");
require_once("boot.php");
$a = new App;
@include(".htconfig.php");
require_once("dba.php");
$db = new dba($db_host, $db_user, $db_pass, $db_data);
unset($db_host, $db_user, $db_pass, $db_data);
function directory_run($argv, $argc){
global $a, $db;
if(is_null($a)){
$a = new App;
}
if(is_null($db)){
@include(".htconfig.php");
require_once("dba.php");
$db = new dba($db_host, $db_user, $db_pass, $db_data);
unset($db_host, $db_user, $db_pass, $db_data);
};
if($argc != 2)
exit;
return;
load_config('system');
@ -20,9 +25,14 @@
$dir = get_config('system','directory_submit_url');
if(! strlen($dir))
exit;
return;
fetch_url($dir . '?url=' . bin2hex($argv[1]));
exit;
return;
}
if (array_search(__file__,get_included_files())===0){
directory_run($argv,$argc);
killme();
}

View file

@ -1,14 +1,19 @@
<?php
require_once("boot.php");
require_once("boot.php");
$a = new App;
@include(".htconfig.php");
require_once("dba.php");
$db = new dba($db_host, $db_user, $db_pass, $db_data);
unset($db_host, $db_user, $db_pass, $db_data);
function notifier_run($argv, $argc){
global $a, $db;
if(is_null($a)){
$a = new App;
}
if(is_null($db)){
@include(".htconfig.php");
require_once("dba.php");
$db = new dba($db_host, $db_user, $db_pass, $db_data);
unset($db_host, $db_user, $db_pass, $db_data);
};
require_once("session.php");
require_once("datetime.php");
@ -16,7 +21,7 @@
require_once('include/bbcode.php');
if($argc < 3)
exit;
return;
$a->set_baseurl(get_config('system','url'));
@ -29,8 +34,9 @@
case 'mail':
default:
$item_id = intval($argv[2]);
if(! $item_id)
killme();
if(! $item_id){
return;
}
break;
}
@ -42,22 +48,24 @@
$message = q("SELECT * FROM `mail` WHERE `id` = %d LIMIT 1",
intval($item_id)
);
if(! count($message))
killme();
if(! count($message)){
return;
}
$uid = $message[0]['uid'];
$recipients[] = $message[0]['contact-id'];
$item = $message[0];
}
else {
// find ancestors
// find ancestors
$r = q("SELECT `parent`, `uid`, `edited` FROM `item` WHERE `id` = %d LIMIT 1",
intval($item_id)
);
if(! count($r))
killme();
if(! count($r)){
return;
}
$parent_id = $r[0]['parent'];
$uid = $r[0]['uid'];
$updated = $r[0]['edited'];
@ -66,8 +74,9 @@
intval($parent_id)
);
if(! count($items))
killme();
if(! count($items)){
return;
}
}
$r = q("SELECT `contact`.*, `user`.`nickname`, `user`.`sprvkey`, `user`.`spubkey`, `user`.`page-flags`
@ -78,9 +87,9 @@
if(count($r))
$owner = $r[0];
else
killme();
else {
return;
}
$hub = get_config('system','huburl');
// If this is a public conversation, notify the feed hub
@ -150,8 +159,9 @@
$r = q("SELECT * FROM `contact` WHERE `id` IN ( $conversant_str ) AND `blocked` = 0 AND `pending` = 0");
if( ! count($r))
killme();
if( ! count($r)){
return;
}
$contacts = $r;
}
@ -248,9 +258,9 @@
$r = q("SELECT * FROM `contact` WHERE `id` IN ( %s ) AND `blocked` = 0 ",
dbesc($recip_str)
);
if(! count($r))
killme();
if(! count($r)){
return;
}
// delivery loop
require_once('include/salmon.php');
@ -360,5 +370,11 @@
}
}
killme();
return;
}
if (array_search(__file__,get_included_files())===0){
echo "run!";
notifier_run($argv,$argc);
killme();
}

View file

@ -1,14 +1,19 @@
<?php
require_once("boot.php");
function poller_run($argv, $argc){
global $a, $db;
require_once('boot.php');
$a = new App;
@include('.htconfig.php');
require_once('dba.php');
$db = new dba($db_host, $db_user, $db_pass, $db_data);
unset($db_host, $db_user, $db_pass, $db_data);
if(is_null($a)){
$a = new App;
}
if(is_null($db)){
@include(".htconfig.php");
require_once("dba.php");
$db = new dba($db_host, $db_user, $db_pass, $db_data);
unset($db_host, $db_user, $db_pass, $db_data);
};
require_once('session.php');
require_once('datetime.php');
@ -19,11 +24,12 @@
$a->set_baseurl(get_config('system','url'));
logger('poller: start');
// run queue delivery process in the background
$php_path = ((x($a->config,'php_path') && strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
proc_close(proc_open("\"$php_path\" \"include/queue.php\" &", array(), $foo));
//proc_close(proc_open("\"$php_path\" \"include/queue.php\" &", array(), $foo));
proc_run($php_path,"include/queue.php");
$hub_update = false;
@ -46,8 +52,9 @@
$sql_extra
AND `self` = 0 AND `blocked` = 0 AND `readonly` = 0 ORDER BY RAND()");
if(! count($contacts))
killme();
if(! count($contacts)){
return;
}
foreach($contacts as $contact) {
@ -265,7 +272,10 @@
// loop - next contact
}
killme();
return;
}
if (array_search(__file__,get_included_files())===0){
poller_run($argv,$argc);
killme();
}

View file

@ -1,5 +1,5 @@
<?php
require_once("boot.php");
function update_queue_time($id) {
logger('queue: requeue item ' . $id);
@ -16,14 +16,19 @@ function remove_queue_item($id) {
);
}
require_once("boot.php");
function queue_run($argv, $argc){
global $a, $db;
$a = new App;
@include(".htconfig.php");
require_once("dba.php");
$db = new dba($db_host, $db_user, $db_pass, $db_data);
unset($db_host, $db_user, $db_pass, $db_data);
if(is_null($a)){
$a = new App;
}
if(is_null($db)){
@include(".htconfig.php");
require_once("dba.php");
$db = new dba($db_host, $db_user, $db_pass, $db_data);
unset($db_host, $db_user, $db_pass, $db_data);
};
require_once("session.php");
@ -50,9 +55,9 @@ function remove_queue_item($id) {
$r = q("SELECT `id` FROM `queue` WHERE `last` < UTC_TIMESTAMP() - INTERVAL 15 MINUTE ");
if(! count($r))
killme();
if(! count($r)){
return;
}
// delivery loop
require_once('include/salmon.php');
@ -118,7 +123,11 @@ function remove_queue_item($id) {
}
}
killme();
return;
// NOTREACHED
}
if (array_search(__file__,get_included_files())===0){
queue_run($argv,$argc);
killme();
}