Cheetah
ChWsbAlerts.php
Go to the documentation of this file.
1 <?php
2 
39 {
40  var $sUnit;
41  var $sAction;
42  var $iObject;
43  var $iSender;
44  var $aExtras;
45 
46  var $_aAlerts;
48 
56  function __construct($sUnit, $sAction, $iObjectId, $iSender = 0, $aExtras = array())
57  {
58  require_once(CH_DIRECTORY_PATH_INC . 'db.inc.php');
60  $oCache = $oDb->getDbCacheObject();
61  $aData = $oCache->getData($oDb->genDbCacheKey('sys_alerts'));
62  if (null === $aData)
63  $aData = ChWsbAlerts::cache();
64 
65  $this->_aAlerts = $aData['alerts'];
66  $this->_aHandlers = $aData['handlers'];
67 
68  $this->sUnit = $sUnit;
69  $this->sAction = $sAction;
70  $this->iObject = (int)$iObjectId;
71  $this->iSender = !empty($iSender) ? (int)$iSender :
72  (empty($_COOKIE['memberID']) ? 0 : (int)$_COOKIE['memberID']);
73  $this->aExtras = $aExtras;
74  }
75 
79  function alert()
80  {
81  ch_import('ChWsbSubscription');
83  $oSubscription->send($this->sUnit, $this->sAction, $this->iObject, $this->aExtras);
84 
85  if(isset($this->_aAlerts[$this->sUnit]) && isset($this->_aAlerts[$this->sUnit][$this->sAction]))
86  foreach($this->_aAlerts[$this->sUnit][$this->sAction] as $iHandlerId) {
87  $aHandler = $this->_aHandlers[$iHandlerId];
88 
89  if(!empty($aHandler['file']) && !empty($aHandler['class']) && file_exists(CH_DIRECTORY_PATH_ROOT . $aHandler['file'])) {
90  if(!class_exists($aHandler['class']))
91  require_once(CH_DIRECTORY_PATH_ROOT . $aHandler['file']);
92 
93  $oHandler = new $aHandler['class']();
94  $oHandler->response($this);
95  } else if(!empty($aHandler['eval'])) {
96  eval($aHandler['eval']);
97  }
98  }
99  }
100 
106  public static function cache()
107  {
108  $aResult = array('alerts' => array(), 'handlers' => array());
109 
110  $rAlerts = db_res("SELECT `unit`, `action`, `handler_id` FROM `sys_alerts` ORDER BY `id` ASC");
111  while($aAlert = $rAlerts->fetch())
112  $aResult['alerts'][$aAlert['unit']][$aAlert['action']][] = $aAlert['handler_id'];
113 
114  $rHandlers = db_res("SELECT `id`, `class`, `file`, `eval` FROM `sys_alerts_handlers` ORDER BY `id` ASC");
115  while($aHandler = $rHandlers->fetch())
116  $aResult['handlers'][$aHandler['id']] = array('class' => $aHandler['class'], 'file' => $aHandler['file'], 'eval' => $aHandler['eval']);
117 
118 
119  $oCache = $GLOBALS['MySQL']->getDbCacheObject();
120  $oCache->setData ($GLOBALS['MySQL']->genDbCacheKey('sys_alerts'), $aResult);
121 
122  return $aResult;
123  }
124 }
125 
127 {
128  function __construct(){}
129  function response($oAlert) {}
130 }
ChWsbAlertsResponse
Definition: ChWsbAlerts.php:127
ChWsbAlertsResponse\response
response($oAlert)
Definition: ChWsbAlerts.php:129
ch_import
ch_import($sClassName, $aModule=array())
Definition: utils.inc.php:1218
$aResult
$aResult
Definition: index.php:19
ChWsbAlertsResponse\__construct
__construct()
Definition: ChWsbAlerts.php:128
$oAlert
$oAlert
Definition: embed.php:15
php
ChWsbSubscription\getInstance
static getInstance()
Definition: ChWsbSubscription.php:67
$oCache
$oCache
Definition: prof.inc.php:10
ChWsbAlerts\$iSender
$iSender
Definition: ChWsbAlerts.php:43
ChWsbAlerts\alert
alert()
Definition: ChWsbAlerts.php:79
ChWsbAlerts
Definition: ChWsbAlerts.php:39
ChWsbAlerts\$iObject
$iObject
Definition: ChWsbAlerts.php:42
ChWsbAlerts\$aExtras
$aExtras
Definition: ChWsbAlerts.php:44
$oDb
global $oDb
Definition: db.inc.php:39
ChWsbAlerts\$sAction
$sAction
Definition: ChWsbAlerts.php:41
db_res
db_res($query, $bindings=[])
Definition: db.inc.php:39
ChWsbAlerts\cache
static cache()
Definition: ChWsbAlerts.php:106
ChWsbAlerts\$sUnit
$sUnit
Definition: ChWsbAlerts.php:40
ChWsbAlerts\$_aAlerts
$_aAlerts
Definition: ChWsbAlerts.php:46
empty
Attr AllowedRel this is empty
Definition: Attr.AllowedRel.txt:7
as
as
Definition: Filter.ExtractStyleBlocks.Escaping.txt:10
ChWsbAlerts\$_aHandlers
$_aHandlers
Definition: ChWsbAlerts.php:47
ChWsbDb\getInstance
static getInstance()
Definition: ChWsbDb.php:82
$GLOBALS
$GLOBALS['iAdminPage']
Definition: advanced_settings.php:10
ChWsbAlerts\__construct
__construct($sUnit, $sAction, $iObjectId, $iSender=0, $aExtras=array())
Definition: ChWsbAlerts.php:56
$oSubscription
$oSubscription
Definition: notifies.php:28