1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180: 181: 182: 183: 184: 185: 186: 187: 188: 189: 190: 191: 192: 193: 194: 195: 196: 197: 198: 199: 200: 201: 202: 203: 204: 205: 206: 207: 208: 209: 210: 211: 212: 213: 214: 215: 216: 217: 218: 219: 220: 221: 222: 223: 224: 225: 226: 227: 228: 229: 230: 231: 232: 233: 234: 235: 236: 237: 238: 239: 240: 241: 242: 243: 244: 245: 246: 247: 248: 249: 250: 251: 252: 253: 254: 255: 256: 257: 258: 259: 260: 261: 262: 263: 264: 265: 266: 267: 268: 269: 270: 271: 272: 273: 274: 275: 276: 277: 278: 279: 280: 281: 282: 283: 284: 285: 286: 287: 288: 289: 290: 291: 292: 293: 294: 295: 296: 297: 298: 299: 300: 301: 302: 303: 304: 305: 306: 307: 308: 309: 310: 311: 312: 313: 314: 315: 316: 317: 318: 319: 320: 321: 322: 323: 324: 325: 326: 327: 328: 329: 330: 331: 332: 333: 334: 335: 336: 337: 338: 339: 340: 341: 342: 343: 344: 345: 346: 347: 348: 349: 350: 351: 352: 353: 354: 355: 356: 357: 358: 359: 360: 361: 362: 363: 364: 365: 366: 367: 368: 369: 370: 371: 372: 373: 374: 375: 376: 377: 378: 379: 380: 381: 382: 383: 384: 385: 386: 387: 388: 389: 390: 391: 392: 393: 394: 395: 396: 397: 398: 399: 400: 401: 402: 403: 404: 405: 406: 407: 408: 409: 410: 411: 412: 413: 414: 415: 416: 417: 418: 419: 420: 421: 422: 423: 424: 425: 426: 427: 428: 429: 430: 431: 432: 433: 434: 435: 436: 437: 438: 439: 440: 441: 442: 443: 444: 445: 446: 447: 448: 449: 450: 451: 452: 453: 454: 455: 456: 457: 458: 459: 460:
<?php
defined("ICMS_ROOT_PATH") or die("ImpressCMS root path is not defined");
class icms_module_Handler extends icms_core_ObjectHandler {
private $_cachedModule = array();
private $_cachedModule_lookup = array();
public function &create($isNew = TRUE) {
$module = new icms_module_Object();
if ($isNew) $module->setNew();
return $module;
}
public function &get($id, $loadConfig = FALSE) {
$id = (int) $id;
$module = FALSE;
if ($id > 0) {
if (!empty($this->_cachedModule_lookup[$id]) &&
!empty($this->_cachedModule[$this->_cachedModule_lookup[$id]])
) {
if ($loadConfig) $this->loadConfig($this->_cachedModule[$this->_cachedModule_lookup[$id]]);
return $this->_cachedModule[$this->_cachedModule_lookup[$id]];
} else {
$sql = "SELECT * FROM " . $this->db->prefix('modules') . " WHERE mid = '" . $id . "'";
if (!$result = $this->db->query($sql)) return $module;
$numrows = $this->db->getRowsNum($result);
if ($numrows == 1) {
$module = new icms_module_Object();
$myrow = $this->db->fetchArray($result);
$module->assignVars($myrow);
if ($loadConfig) $this->loadConfig($module);
$this->_cachedModule_lookup[$id] = $module->getVar("dirname");
$this->_cachedModule[$module->getVar('dirname')] = $module;
return $module;
}
}
}
return $module;
}
public function getByDirname($dirname, $loadConfig = FALSE) {
if (!empty($this->_cachedModule[$dirname]) &&
$this->_cachedModule[$dirname]->getVar('dirname') == $dirname
) {
if ($loadConfig) $this->loadConfig($this->_cachedModule[$dirname]);
return $this->_cachedModule[$dirname];
} else {
$module = FALSE;
$sql = "SELECT * FROM " . $this->db->prefix('modules') . " WHERE dirname = '" . trim($dirname) . "'";
if (!$result = $this->db->query($sql)) return $module;
$numrows = $this->db->getRowsNum($result);
if ($numrows == 1) {
$module = new icms_module_Object();
$myrow = $this->db->fetchArray($result);
$module->assignVars($myrow);
if ($loadConfig) $this->loadConfig($module);
$this->_cachedModule[$dirname] = $module;
$this->_cachedModule_lookup[$module->getVar('mid')] = $module->getVar("dirname");
}
return $module;
}
}
private function loadConfig($module) {
if ($module->config !== NULL) return TRUE;
icms_loadLanguageFile($module->getVar("dirname"), "main");
if ($module->getVar("hasconfig") == 1
|| $module->getVar("hascomments") == 1
|| $module->getVar("hasnotification") == 1
) {
$module->config = icms::$config->getConfigsByCat(0, $module->getVar("mid"));
}
return TRUE;
}
public function insert(&$module) {
if (get_class($module) != 'icms_module_Object') return FALSE;
if (!$module->isDirty()) return TRUE;
if (!$module->cleanVars()) return FALSE;
$fieldsToStoreInDB = array();
foreach ($module->cleanVars as $k => $v) {
if ($k == 'last_update') { $v = time(); }
if ($module->vars[$k]['data_type'] == XOBJ_DTYPE_INT) {
$cleanvars[$k] = (int) $v;
} elseif (is_array($v)) {
$cleanvars[$k] = $this->db->quoteString(implode(',', $v));
} else {
$cleanvars[$k] = $this->db->quoteString($v);
}
$fieldsToStoreInDB[$k] = $cleanvars[$k];
}
if ($module->isNew()) {
$sql = "INSERT INTO " . $this->db->prefix('modules')
. " (" . implode(',', array_keys($fieldsToStoreInDB))
. ") VALUES (" . implode(',', array_values($fieldsToStoreInDB)) . ")";
} else {
$sql = "UPDATE " . $this->db->prefix('modules') . " SET";
foreach ($fieldsToStoreInDB as $key => $value) {
if (isset($notfirst)) { $sql .= ","; }
$sql .= " " . $key . " = " . $value;
$notfirst = TRUE;
}
$whereclause = 'mid' . " = " . $module->getVar('mid');
$sql .= " WHERE " . $whereclause;
}
if (!$result = $this->db->query($sql)) return FALSE;
if ($module->isNew()) { $module->assignVar('mid', $this->db->getInsertId()); }
if (!empty($this->_cachedModule[$module->getVar('dirname')])) {
unset($this->_cachedModule[$module->getVar('dirname')]);
}
if (!empty($this->_cachedModule_lookup[$module->getVar('mid')])) {
unset($this->_cachedModule_loopup[$module->getVar('mid')]);
}
return TRUE;
}
public function delete(&$module) {
if (get_class($module) != 'icms_module_Object') return FALSE;
$sql = sprintf(
"DELETE FROM %s WHERE mid = '%u'",
$this->db->prefix('modules'), (int) $module->getVar('mid')
);
if (!$result = $this->db->query($sql)) return FALSE;
$sql = sprintf(
"DELETE FROM %s WHERE gperm_name = 'module_admin' AND gperm_itemid = '%u'",
$this->db->prefix('group_permission'), (int) $module->getVar('mid')
);
$this->db->query($sql);
$sql = sprintf(
"DELETE FROM %s WHERE gperm_name = 'module_read' AND gperm_itemid = '%u'",
$this->db->prefix('group_permission'), (int) $module->getVar('mid')
);
$this->db->query($sql);
$sql = sprintf(
"SELECT block_id FROM %s WHERE module_id = '%u'",
$this->db->prefix('block_module_link'), (int) $module->getVar('mid')
);
if ($result = $this->db->query($sql)) {
$block_id_arr = array();
while ($myrow = $this->db->fetchArray($result)) {
array_push($block_id_arr, $myrow['block_id']);
}
}
if (isset($block_id_arr)) {
foreach ($block_id_arr as $i) {
$sql = sprintf(
"SELECT block_id FROM %s WHERE module_id != '%u' AND block_id = '%u'",
$this->db->prefix('block_module_link'), (int) $module->getVar('mid'), (int) $i
);
if ($result2 = $this->db->query($sql)) {
if (0 < $this->db->getRowsNum($result2)) {
$sql = sprintf(
"DELETE FROM %s WHERE (module_id = '%u') AND (block_id = '%u')",
$this->db->prefix('block_module_link'), (int) $module->getVar('mid'), (int) $i
);
$this->db->query($sql);
} else {
$sql = sprintf(
"UPDATE %s SET visible = '0' WHERE bid = '%u'",
$this->db->prefix('newblocks'), (int) $i
);
$this->db->query($sql);
$sql = sprintf(
"UPDATE %s SET module_id = '-1' WHERE module_id = '%u'",
$this->db->prefix('block_module_link'), (int) $module->getVar('mid')
);
$this->db->query($sql);
}
}
}
}
if (!empty($this->_cachedModule[$module->getVar('dirname')])) {
unset($this->_cachedModule[$module->getVar('dirname')]);
}
if (!empty($this->_cachedModule_lookup[$module->getVar('mid')])) {
unset($this->_cachedModule_lookup[$module->getVar('mid')]);
}
return TRUE;
}
public function getObjects($criteria = NULL, $id_as_key = FALSE) {
$ret = array();
$limit = $start = 0;
$sql = "SELECT * FROM " . $this->db->prefix('modules');
if (isset($criteria) && is_subclass_of($criteria, 'icms_db_criteria_Element')) {
$sql .= " " . $criteria->renderWhere();
$sql .= " ORDER BY weight " . $criteria->getOrder() . ", mid ASC";
$limit = $criteria->getLimit();
$start = $criteria->getStart();
}
$result = $this->db->query($sql, $limit, $start);
if (!$result) return $ret;
while ($myrow = $this->db->fetchArray($result)) {
$module = new icms_module_Object();
$module->assignVars($myrow);
if (!$id_as_key) {
$ret[] = $module;
} else {
$ret[$myrow['mid']] = $module;
}
$this->_cachedModule_lookup[$myrow['mid']] = $module->getVar("dirname");
$this->_cachedModule[$myrow['dirname']] = $module;
unset($module);
}
return $ret;
}
public function getCount($criteria = NULL) {
$sql = "SELECT COUNT(*) FROM " . $this->db->prefix('modules');
if (isset($criteria) && is_subclass_of($criteria, 'icms_db_criteria_Element')) {
$sql .= " " . $criteria->renderWhere();
}
if (!$result = $this->db->query($sql)) return 0;
list($count) = $this->db->fetchRow($result);
return $count;
}
public function getList($criteria = NULL, $dirname_as_key = FALSE) {
$ret = array();
$modules = $this->getObjects($criteria, TRUE);
foreach (array_keys($modules) as $i) {
if (!$dirname_as_key) {
$ret[$i] = $modules[$i]->getVar('name');
} else {
$ret[$modules[$i]->getVar('dirname')] = $modules[$i]->getVar('name');
}
}
return $ret;
}
static public function getAvailable() {
$dirtyList = $cleanList = array();
$dirtyList = icms_core_Filesystem::getDirList(ICMS_MODULES_PATH . '/');
foreach ($dirtyList as $item) {
if (file_exists(ICMS_MODULES_PATH . '/' . $item . '/icms_version.php')) {
$cleanList[$item] = $item;
} elseif (file_exists(ICMS_MODULES_PATH . '/' . $item . '/xoops_version.php')) {
$cleanList[$item] = $item;
}
}
return $cleanList;
}
static public function getActive() {
$module_handler = new self(icms::$xoopsDB);
$criteria = new icms_db_criteria_Compo(new icms_db_criteria_Item('isactive', 1));
return $module_handler->getList($criteria, TRUE);
}
static public function service($inAdmin = FALSE) {
$module = NULL;
if ($inAdmin || file_exists('./xoops_version.php') || file_exists('./icms_version.php')) {
$url_arr = explode('/', strstr($_SERVER['PHP_SELF'], '/modules/'));
if (isset($url_arr[2])) {
$module = icms::handler("icms_module")->getByDirname($url_arr[2], TRUE);
if (!$inAdmin && (!$module || !$module->getVar('isactive'))) {
include_once ICMS_ROOT_PATH . '/header.php';
echo "<h4>" . _MODULENOEXIST . "</h4>";
include_once ICMS_ROOT_PATH . '/footer.php';
exit();
}
}
}
if (!self::checkModuleAccess($module, $inAdmin)) {
redirect_header(ICMS_URL . "/user.php", 3, _NOPERM, FALSE);
}
if ($module) $module->launch();
return $module ? $module : NULL;
}
static public function checkModuleAccess($module, $inAdmin = FALSE) {
if ($inAdmin && !icms::$user) return FALSE;
$perm_handler = icms::handler('icms_member_groupperm');
if ($inAdmin) {
if (!$module) {
return icms::$user->isAdmin(-1);
} else {
return $perm_handler->checkRight('module_admin', $module->getVar('mid'), icms::$user->getGroups());
}
} elseif ($module) {
$groups = (icms::$user) ? icms::$user->getGroups() : ICMS_GROUP_ANONYMOUS;
return $perm_handler->checkRight('module_read', $module->getVar('mid'), $groups);
}
return TRUE;
}
}