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:
<?php
defined("ICMS_ROOT_PATH") or die("ImpressCMS root path not defined");
class icms_ipf_Metagen {
public $_myts;
public $_title;
public $_original_title;
public $_keywords;
public $_meta_description;
public $_categoryPath;
public $_description;
public $_minChar = 4;
public function __construct($title, $keywords = false, $description = false, $categoryPath = false) {
$this->_myts = icms_core_Textsanitizer::GetInstance();
$this->setCategoryPath($categoryPath);
$this->setTitle($title);
$this->setDescription($description);
if (!$keywords) {
$keywords = $this->createMetaKeywords();
}
$this->setKeywords($keywords);
}
public function emptyString($var) {
return strlen($var) > 0;
}
public function generateSeoTitle($title='', $withExt = true) {
$title = rawurlencode(strtolower($title));
$pattern = array("/%09/", "/%20/", "/%21/", "/%22/", "/%23/", "/%25/", "/%26/", "/%27/", "/%28/", "/%29/", "/%2C/", "/%2F/", "/%3A/", "/%3B/", "/%3C/", "/%3D/", "/%3E/", "/%3F/", "/%40/", "/%5B/", "/%5C/", "/%5D/", "/%5E/", "/%7B/", "/%7C/", "/%7D/", "/%7E/", "/\./");
$rep_pat = array( "-" , "-" , "-" , "-" , "-" , "-100" , "-" , "-" , "-" , "-" , "-" , "-" , "-" , "-" , "-" , "-" , "-" , "-" , "-at-" , "-" , "-" , "-" , "-" , "-" , "-" , "-" , "-" , "-" );
$title = preg_replace($pattern, $rep_pat, $title);
$pattern = array("/%B0/", "/%E8/", "/%E9/", "/%EA/", "/%EB/", "/%E7/", "/%E0/", "/%E2/", "/%E4/", "/%EE/", "/%EF/", "/%F9/", "/%FC/", "/%FB/", "/%F4/", "/%F6/");
$rep_pat = array( "-" , "e" , "e" , "e" , "e" , "c" , "a" , "a" , "a" , "i" , "i" , "u" , "u" , "u" , "o" , "o" );
$title = preg_replace($pattern, $rep_pat, $title);
$tableau = explode("-", $title);
$tableau = array_filter($tableau, array($this, "emptyString"));
$title = implode("-", $tableau);
if (strlen($title) > 0) {
if ($withExt) {
$title .= '.html';
}
return $title;
}
else
return '';
}
public function html2text($document) {
return icms_html2text($document);
}
public function setTitle($title) {
global $icmsModuleConfig;
$this->_title = $this->html2text($title);
$this->_title = $this->purifyText($this->_title);
$this->_original_title = $this->_title;
$moduleName = is_object(icms::$module) ? icms::$module->getVar('name') : "";
$titleTag = array();
$show_mod_name_breadcrumb = isset($icmsModuleConfig['show_mod_name_breadcrumb'])
? $icmsModuleConfig['show_mod_name_breadcrumb']
: true;
if ($moduleName && $show_mod_name_breadcrumb) {
$titleTag['module'] = $moduleName;
}
if (isset($this->_title) && ($this->_title != '') && (strtoupper($this->_title) != strtoupper($moduleName))) {
$titleTag['title'] = $this->_title;
}
if (isset($this->_categoryPath) && ($this->_categoryPath != '')) {
$titleTag['category'] = $this->_categoryPath;
}
$ret = isset($titleTag['title']) ? $titleTag['title'] : '';
if (isset($titleTag['category']) && $titleTag['category'] != '') {
if ($ret != '') {
$ret .= ' - ';
}
$ret .= $titleTag['category'];
}
if (isset($titleTag['module']) && $titleTag['module'] != '') {
if ($ret != '') {
$ret .= ' - ';
}
$ret .= $titleTag['module'];
}
$this->_title = $ret;
}
public function setKeywords($keywords) {
$this->_keywords = $keywords;
}
public function setCategoryPath($categoryPath) {
$categoryPath = $this->html2text($categoryPath);
$this->_categoryPath = $categoryPath;
}
public function setDescription($description) {
if (!$description) {
global $icmsModuleConfig;
if (isset($icmsModuleConfig['module_meta_description'])) {
$description = $icmsModuleConfig['module_meta_description'];
}
}
$description = $this->html2text($description);
$description = $this->purifyText($description);
$description = preg_replace("/([^\r\n])\r\n([^\r\n])/", "\\1 \\2", $description);
$description = preg_replace("/[\r\n]*\r\n[\r\n]*/", "\r\n\r\n", $description);
$description = preg_replace("/[ ]* [ ]*/", ' ', $description);
$description = icms_core_DataFilter::stripSlashesGPC($description);
$this->_description = $description;
$this->_meta_description = $this->createMetaDescription();
}
public function createTitleTag() {
}
public function purifyText($text, $keyword = false) {
return icms_purifyText($text, $keyword);
}
public function createMetaDescription($maxWords = 100) {
$words = array();
$words = explode(" ", $this->_description);
$newWords = array();
$i = 0;
while ($i < $maxWords-1 && $i < count($words)) {
$newWords[] = $words[$i];
$i++;
}
$ret = implode(' ', $newWords);
return $ret;
}
public function findMetaKeywords($text, $minChar) {
$keywords = array();
$text = $this->purifyText($text);
$text = $this->html2text($text);
$text = preg_replace("/([^\r\n])\r\n([^\r\n])/", "\\1 \\2", $text);
$text = preg_replace("/[\r\n]*\r\n[\r\n]*/", "\r\n\r\n", $text);
$text = preg_replace("/[ ]* [ ]*/", ' ', $text);
$text = icms_core_DataFilter::stripSlashesGPC($text);
$originalKeywords = preg_split ('/[^a-zA-Z\'"-]+/', $text, -1, PREG_SPLIT_NO_EMPTY);
foreach ($originalKeywords as $originalKeyword) {
$secondRoundKeywords = explode("'", $originalKeyword);
foreach ( $secondRoundKeywords as $secondRoundKeyword) {
if (strlen($secondRoundKeyword) >= $minChar) {
if (!in_array($secondRoundKeyword, $keywords)) {
$keywords[] = trim($secondRoundKeyword);
}
}
}
}
return $keywords;
}
public function createMetaKeywords() {
global $icmsModuleConfig;
$keywords = $this->findMetaKeywords($this->_original_title . " " . $this->_description, $this->_minChar);
if (isset($icmsModuleConfig) && isset($icmsModuleConfig['moduleMetaKeywords']) && $icmsModuleConfig['moduleMetaKeywords'] != '') {
$moduleKeywords = explode(",", $icmsModuleConfig['moduleMetaKeywords']);
$keywords = array_merge($keywords, $moduleKeywords);
}
$newKeywords = array();
$i = 0;
while ($i < 90 - 1 && isset($keywords[$i])) {
$newKeywords[] = $keywords[$i];
$i++;
}
$ret = implode(', ', $newKeywords);
return $ret;
}
public function autoBuildMeta_keywords() {
}
public function buildAutoMetaTags() {
global $icmsModule, $icmsModuleConfig;
$this->_keywords = $this->createMetaKeywords();
$this->_meta_description = $this->createMetaDescription();
$this->_title = $this->createTitleTag();
}
public function createMetaTags() {
global $xoopsTpl, $xoTheme;
$this->_keywords = preg_replace("(<!--.*?-->)", '', $this->_keywords);
if (is_object($xoTheme)) {
$xoTheme->addMeta('meta', 'keywords', $this->_keywords);
$xoTheme->addMeta('meta', 'description', $this->_description);
$xoTheme->addMeta('meta', 'title', $this->_title);
} else {
$xoopsTpl->assign('xoops_meta_keywords', $this->_keywords);
$xoopsTpl->assign('xoops_meta_description', $this->_description);
}
$xoopsTpl->assign('icms_pagetitle', $this->_title);
}
}