mirror of
https://github.com/friendica/friendica
synced 2024-11-10 03:42:53 +00:00
Added proc_run() and modified all occurrence of proc_close(proc_open()) to use proc_run()
This commit is contained in:
parent
a282042ffc
commit
e9251499dd
11 changed files with 58 additions and 30 deletions
30
boot.php
30
boot.php
|
@ -2215,3 +2215,33 @@ function link_compare($a,$b) {
|
|||
return true;
|
||||
return false;
|
||||
}}
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
* Wrap calls to proc_close(proc_open()) and call hook
|
||||
* so plugins can take part in process :)
|
||||
*
|
||||
* args:
|
||||
* $cmd program to run
|
||||
* next args are passed as $cmd command line
|
||||
*
|
||||
* e.g.: proc_run("ls","-la","/tmp");
|
||||
*
|
||||
* $cmd and string args are surrounded with ""
|
||||
*/
|
||||
if(! function_exists('run_proc')) {
|
||||
function proc_run($cmd){
|
||||
$args = func_get_args();
|
||||
foreach ($args as &$arg){
|
||||
if(is_string($arg)) $arg='"'.$arg.'"';
|
||||
}
|
||||
$cmdline = implode($args," ");
|
||||
|
||||
call_hooks("proc_run", $args);
|
||||
|
||||
proc_close(proc_open($cmdline." &",array(),$foo));
|
||||
}}
|
||||
|
||||
?>
|
||||
|
||||
|
|
|
@ -438,8 +438,8 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
|
|||
|
||||
$php_path = ((strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
|
||||
|
||||
proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"activity\" \"$i\" &",
|
||||
array(),$foo));
|
||||
//proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"activity\" \"$i\" &", array(),$foo));
|
||||
proc_run($php_path,"include/notifier.php","activity","$i");
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -283,8 +283,8 @@ function dfrn_notify_post(&$a) {
|
|||
|
||||
$php_path = ((strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
|
||||
|
||||
proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"comment-import\" \"$posted_id\" &",
|
||||
array(),$foo));
|
||||
//proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"comment-import\" \"$posted_id\" &", array(),$foo));
|
||||
proc_run($php_path,"include/notifier.php","comment-import","$posted_id");
|
||||
|
||||
if((! $is_like) && ($importer['notify-flags'] & NOTIFY_COMMENT) && (! $importer['self'])) {
|
||||
require_once('bbcode.php');
|
||||
|
|
|
@ -206,8 +206,8 @@ function follow_post(&$a) {
|
|||
// pull feed and consume it, which should subscribe to the hub.
|
||||
|
||||
$php_path = ((x($a->config,'php_path') && strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
|
||||
proc_close(proc_open("\"$php_path\" \"include/poller.php\" \"$contact_id\" &", array(), $foo));
|
||||
|
||||
//proc_close(proc_open("\"$php_path\" \"include/poller.php\" \"$contact_id\" &", array(), $foo));
|
||||
proc_run($php_path,"include/poller.php","$contact_id");
|
||||
|
||||
// create a follow slap
|
||||
|
||||
|
|
|
@ -421,8 +421,7 @@ function item_post(&$a) {
|
|||
|
||||
logger('mod_item: notifier invoked: ' . "\"$php_path\" \"include/notifier.php\" \"$notify_type\" \"$post_id\" &");
|
||||
|
||||
proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"$notify_type\" \"$post_id\" &",
|
||||
array(),$foo));
|
||||
proc_run($php_path, "include/notifier.php", $notify_type, "$post_id");
|
||||
|
||||
$datarray['id'] = $post_id;
|
||||
|
||||
|
@ -520,8 +519,8 @@ function item_content(&$a) {
|
|||
|
||||
// send the notification upstream/downstream as the case may be
|
||||
|
||||
proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"drop\" \"$drop_id\" &",
|
||||
array(), $foo));
|
||||
//proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"drop\" \"$drop_id\" &", array(), $foo));
|
||||
proc_run($php_path,"include/notifier.php","drop","$drop_id");
|
||||
|
||||
goaway($a->get_baseurl() . '/' . $_SESSION['return_url']);
|
||||
return; //NOTREACHED
|
||||
|
|
|
@ -102,8 +102,8 @@ function like_content(&$a) {
|
|||
);
|
||||
|
||||
$php_path = ((strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
|
||||
proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"like\" \"$post_id\" &",
|
||||
array(),$foo));
|
||||
//proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"like\" \"$post_id\" &", array(),$foo));
|
||||
proc_run($php_path,"include/notifier.php","like","$post_id");
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -176,8 +176,8 @@ EOT;
|
|||
|
||||
$php_path = ((strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
|
||||
|
||||
proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"like\" \"$post_id\" &",
|
||||
array(),$foo));
|
||||
//proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"like\" \"$post_id\" &", array(),$foo));
|
||||
proc_run($php_path,"include/notifier.php","like","$post_id");
|
||||
|
||||
return; // NOTREACHED
|
||||
}
|
|
@ -72,8 +72,8 @@ function message_post(&$a) {
|
|||
$php_path = ((strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
|
||||
|
||||
if($post_id) {
|
||||
proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"mail\" \"$post_id\" &",
|
||||
array(),$foo));
|
||||
//proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"mail\" \"$post_id\" &", array(),$foo));
|
||||
proc_run($php_path,"include/notifier.php","mail","$post_id");
|
||||
notice( t('Message sent.') . EOL );
|
||||
}
|
||||
else {
|
||||
|
|
|
@ -179,9 +179,8 @@ function photos_post(&$a) {
|
|||
// send the notification upstream/downstream as the case may be
|
||||
|
||||
if($rr['visible'])
|
||||
proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"drop\" \"$drop_id\" & ",
|
||||
array(),$foo));
|
||||
|
||||
//proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"drop\" \"$drop_id\" & ",array(),$foo));
|
||||
proc_run($php_path,"include/notifier.php","drop","$drop_id");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -228,8 +227,8 @@ function photos_post(&$a) {
|
|||
$php_path = ((strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
|
||||
|
||||
if($i[0]['visible'])
|
||||
proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"drop\" \"$drop_id\" & ",
|
||||
array(),$foo));
|
||||
//proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"drop\" \"$drop_id\" & ", array(),$foo));
|
||||
proc_run($php_path,"include/notifier.php","drop","$drop_id");
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -454,8 +453,8 @@ function photos_post(&$a) {
|
|||
|
||||
$item_id = item_store($arr);
|
||||
$php_path = ((strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
|
||||
proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"tag\" \"$item_id\" & ",
|
||||
array(),$foo));
|
||||
//proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"tag\" \"$item_id\" & ",array(),$foo));
|
||||
proc_run($php_path,"include/notifier.php","tag","$item_id");
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -90,8 +90,8 @@ function profile_photo_post(&$a) {
|
|||
$php_path = ((strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
|
||||
$url = $_SESSION['my_url'];
|
||||
if($url && strlen(get_config('system','directory_submit_url')))
|
||||
proc_close(proc_open("\"$php_path\" \"include/directory.php\" \"$url\" &",
|
||||
array(),$foo));
|
||||
//proc_close(proc_open("\"$php_path\" \"include/directory.php\" \"$url\" &",array(),$foo));
|
||||
proc_run($php_path,"include/directory.php","$url");
|
||||
}
|
||||
else
|
||||
notice( t('Unable to process image') . EOL);
|
||||
|
|
|
@ -203,8 +203,8 @@ function profiles_post(&$a) {
|
|||
$php_path = ((strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
|
||||
$url = $_SESSION['my_url'];
|
||||
if($url && strlen(get_config('system','directory_submit_url')))
|
||||
proc_close(proc_open("\"$php_path\" \"include/directory.php\" \"$url\" &",
|
||||
array(),$foo));
|
||||
//proc_close(proc_open("\"$php_path\" \"include/directory.php\" \"$url\" &", array(),$foo));
|
||||
proc_run($php_path,"include/directory.php","$url");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -170,8 +170,8 @@ function settings_post(&$a) {
|
|||
$php_path = ((strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
|
||||
$url = $_SESSION['my_url'];
|
||||
if($url && strlen(get_config('system','directory_submit_url')))
|
||||
proc_close(proc_open("\"$php_path\" \"include/directory.php\" \"$url\" &",
|
||||
array(),$foo));
|
||||
//proc_close(proc_open("\"$php_path\" \"include/directory.php\" \"$url\" &",array(),$foo));
|
||||
proc_run($php_path,"include/directory.php","$url");
|
||||
}
|
||||
|
||||
$_SESSION['theme'] = $theme;
|
||||
|
|
Loading…
Reference in a new issue