X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=blobdiff_plain;f=Notify.php;h=fd582092af5a14fa15dae313ff2f70dba6e54320;hp=d87475e356db1d283fd351b3aac40e2c25733532;hb=1524f8b36295809a3eedd6da3c6494f8aa0d86f5;hpb=182480ad25785e2978a08d49babb0e60e2811317 diff --git a/Notify.php b/Notify.php index d87475e3..fd582092 100644 --- a/Notify.php +++ b/Notify.php @@ -56,13 +56,11 @@ class Pman_Core_Notify extends Pman 'min' => 0, 'max' => 0, ), - 'generate' => array( - 'desc' => 'Generate notifications for a table, eg. cash_invoice', - 'default' => '', - 'short' => 'g', - 'min' => 0, - 'max' => 1, + /* removed - use GenerateNotifcations.php hooked classes + 'generate' => 'Generate notifications for a table, eg. cash_invoice', + ), + */ 'limit' => array( 'desc' => 'Limit search for no. to send to ', 'default' => 1000, @@ -147,27 +145,16 @@ class Pman_Core_Notify extends Pman } - function get($r,$opts) + function get($r,$opts=array()) { $this->parseArgs($opts); //date_default_timezone_set('UTC'); - // phpinfo();exit; - if (!empty($opts['generate'])) { - $w = DB_DataObject::factory($opts['generate']); - if (is_a($w, 'DB_DataObject')) { - $w->generateNotifications(); - } - exit; - } - - - $w = DB_DataObject::factory('core_notify_recur'); - if (is_a($w, 'DB_DataObject')) { - $w->generateNotifications(); - } + $this->generateNotifications(); + + //DB_DataObject::debugLevel(1); $w = DB_DataObject::factory($this->table); $total = 0; @@ -230,7 +217,7 @@ class Pman_Core_Notify extends Pman $this->logecho("BATCH SIZE: ". (count($ar) + $total) ); if (empty($ar)) { - $this->logecho("COMPLETED MAIN QUEUE - running delated"); + $this->logecho("COMPLETED MAIN QUEUE - running deleted"); if (empty($pushed)) { break; @@ -247,7 +234,9 @@ class Pman_Core_Notify extends Pman sleep(3); continue; } - if ($this->poolHasDomain($p->person()->email) > $this->max_to_domain) { + $email = $p->person() ? $p->person()->email : $p->to_email; + + if ($this->poolHasDomain($email) > $this->max_to_domain) { if ($pushed === false) { // we only try once to requeue.. @@ -262,7 +251,7 @@ class Pman_Core_Notify extends Pman } - $this->run($p->id,$p->person()->email); + $this->run($p->id,$email); @@ -286,6 +275,42 @@ class Pman_Core_Notify extends Pman exit; } + function generateNotifications() + { + // this should check each module for 'GenerateNotifications.php' class.. + //and run it if found.. + $ff = HTML_FlexyFramework::get(); + + $disabled = explode(',', $ff->disable); + + $modules = array_reverse($this->modulesList()); + + // move 'project' one to the end... + + foreach ($modules as $module){ + if(in_array($module, $disabled)){ + continue; + } + $file = $this->rootDir. "/Pman/$module/GenerateNotifications.php"; + if(!file_exists($file)){ + continue; + } + + require_once $file; + $class = "Pman_{$module}_GenerateNotifications"; + $x = new $class; + if(!method_exists($x, 'generate')){ + continue; + }; + //echo "$module\n"; + $x->generate($this); + } + + + } + + + function run($id, $email, $cmdOpts="") {