. if (!defined('EG')) die('Direct access not allowed!'); function encodeUrl($url) { $url = str_replace(' ','-',$url); $url = str_replace('.','-',$url); $url = str_replace('[','-',$url); $url = str_replace(']','-',$url); $url = str_replace('(','-',$url); $url = str_replace(')','-',$url); $url = str_replace('/','-',$url); $url = str_replace('@','-at-',$url); $url = str_replace('?','-',$url); // $temp = null; // for ($i=0;$i $ovalue) { $nkeys = array_keys($new, $ovalue); // echo memory_get_peak_usage(true)."
"; foreach($nkeys as $nindex) { $matrix[$oindex][$nindex] = isset($matrix[$oindex - 1][$nindex - 1]) ? $matrix[$oindex - 1][$nindex - 1] + 1 : 1; if($matrix[$oindex][$nindex] > $maxlen) { $maxlen = $matrix[$oindex][$nindex]; $omax = $oindex + 1 - $maxlen; $nmax = $nindex + 1 - $maxlen; } } } if($maxlen == 0) return array(array('d'=>$old, 'i'=>$new)); return array_merge( diff(array_slice($old, 0, $omax), array_slice($new, 0, $nmax)), array_slice($new, $nmax, $maxlen), diff(array_slice($old, $omax + $maxlen), array_slice($new, $nmax + $maxlen))); } function htmlDiff($old, $new) { $old = str_replace("\r\n"," \r\n ",$old); $new = str_replace("\r\n"," \r\n ",$new); $ret = null; $diff = diff(removeEmptyStrings(explode(' ', $old)),removeEmptyStrings(explode(' ', $new))); foreach($diff as $k) { if(is_array($k)) $ret .= (!empty($k['d'])?"".implode(' ',$k['d'])." ":''). (!empty($k['i'])?"".implode(' ',$k['i'])." ":''); else $ret .= $k . ' '; } return $ret; } function applyBreaks($values,$fields) { $fieldsArray = explode(',',$fields); foreach ($fieldsArray as $field) { if (array_key_exists($field,$values)) { $values[$field] = nl2br($values[$field]); } } return $values; } function getLinkToUser($user) { if (strstr($user,'__')) { return str_replace('__',null,$user); } else { return "$user"; } } $decodeCounter = 0; $decodeAnotherTime = false; //decode the text of the wiki function decodeWikiText($string) { global $decodeAnotherTime; global $decodeCounter; $decodeCounter++; $decodeAnotherTime = false; $string = preg_replace('/(\[hr\])/', '
',$string); $string = preg_replace_callback('/(\[\[)(.*?)\|(.*?)(\]\])/', 'linkToInternalPageWithText' ,$string); $string = preg_replace_callback('/(\[\[)(.*?)(\]\])/', 'linkToInternalPage' ,$string); $string = preg_replace_callback('/(\[a\])(.*?)(\[\/a\])/', 'linkTo',$string); $string = preg_replace_callback('/(\[a\])(.*?)\|(.*?)(\[\/a\])/', 'linkToWithText',$string); $string = preg_replace_callback('/(\[notebook\])([0-9]*?)(\[\/notebook\])/s', 'linkToNotebook',$string); $string = preg_replace_callback('/(\[wifi\])([0-9]*?)(\[\/wifi\])/s', 'linkToWifi',$string); $string = preg_replace_callback('/(\[videocard\])([0-9]*?)(\[\/videocard\])/s', 'linkToVideocard',$string); $string = preg_replace('/(\[b\])(.*?)(\[\/b\])/s', '${2}',$string); $string = preg_replace('/(\[u\])(.*?)(\[\/u\])/s', '${2}',$string); $string = preg_replace('/(\[i\])(.*?)(\[\/i\])/s', '${2}',$string); $string = preg_replace('/(\[del\])(.*?)(\[\/del\])/s', '${2}',$string); $string = preg_replace_callback('/(\[\*\])(.*?)(\[\/\*\])/s', 'createItem',$string); $string = preg_replace_callback('/(\[list\])(.*?)(\[\/list\])/s', 'createList',$string); $string = preg_replace_callback('/(\[enum\])(.*?)(\[\/enum\])/s', 'createEnum',$string); $string = preg_replace('/(\[code\])(.*?)(\[\/code\])/s', '
${2}
',$string); $string = preg_replace('/(\[p\])(.*?)(\[\/p\])/s', '

${2}

',$string); $string = preg_replace_callback('/(\[)(h)(1|2|3)(\])(.*?)(\[\/)(h)(1|2|3)(\])/s', 'createHeadGeneric',$string); $string = preg_replace_callback('/(\[tab )(lang=)([^\s]+)(\s*\])(.*?)(\[\/tab\])/s', 'createTabs',$string); $string = preg_replace_callback('/(__TOC__)/s', 'createToc',$string); $string = preg_replace('/(\[lang\])(.*?)(\[\/lang\])/s', '
${2}
',$string); $string = preg_replace('/(\{\{)/s', '[',$string); $string = preg_replace('/(\}\})/s', ']',$string); if ($decodeAnotherTime and $decodeCounter<=30) { return decodeWikiText(Toc::render().Tabs::render().$string); } else { return Toc::render().Tabs::render().$string; } } //create the list of the tabs in the description entry function createTabs($match) { $label = Lang::getLabel($match[3]); Tabs::$tabList[] = "
  • ".$label."
  • \n"; Tabs::$htmlList[] = "
    $label
    \n
    ".$match[5]."
    \n"; return null; } //create the HTM Lof the tabs in the description entry class Tabs { public static $tabList = array(); public static $htmlList = array(); public static function render() { $html = null; if (count(self::$tabList) > 0) { $html .= "
    \n"; $html .= "\n"; $html .= "\n
    \n"; foreach (self::$htmlList as $content) { $html .= $content; } $html .= "
    \n
    \n"; } self::$tabList = array(); self::$htmlList = array(); return $html; } } function checkUrl($url) { $match = '/^http(s)?\:\/\/(www\.)?[a-zA-Z0-9\-\_]+(\.[a-zA-Z0-9\-\_]+)*\.(com|net|it|info|org|eu|uk|ca|us|cl)((\/[a-zA-Z0-9\_\.\-\:\+]+)*(\/([a-zA-Z0-9\_\:\-\.\+]+\.(php|html|htm|asp|aspx|jsp|cgi))?)?)?(\?([a-zA-Z0-9\_\-\+\s]+\=[a-zA-Z0-9\_\-\s\+\&]+)+)?(#[a-zA-Z0-9\_\-\+\s]+)?([\s]*)?$/'; if (preg_match($match,$url)) { return true; } else { return false; } } function vitalizeUrl($string) { if (checkUrl($string)) { return "".$string.""; } return $string; } function linkTo($match) { if (checkUrl($match[2])) { return "".$match[2].""; } else { return $match[0]; } } function createNode($match,$hnodeTag,$htmlTagBegin,$htmlTagEng) { $numb = strlen($hnodeTag); global $decodeAnotherTime; if (strstr($match[2],$hnodeTag)) { $string = substr($match[0],$numb); $string = decodeWikiText($string); $decodeAnotherTime = true; return $hnodeTag.$string; } else { return $htmlTagBegin.$match[2].$htmlTagEng; } } function createToc($match) { Toc::create(); return null; } //table of contents class Toc { public static $links = array(); public static $level = 1; private static $html = null; public function create() { $c=0; foreach (self::$links as $link) { if ((int)substr($link,0,1) === 1) { break; } $c++; } self::$links = array_slice(self::$links,$c); $res = array(); if (count(self::$links) > 0) { self::$links[] = '1fine'; $res[] = "
    ".gtext("Table of contents")."
    "; } self::$links = array(); self::$html = implode('',$res); } public function render() { echo self::$html; } } //create h1, h2, h3 ($level=1,2,3) function createHead($match,$level) { Toc::$links[] = $level.$match[5]; return "
    ".$match[5]."
    "; } //create

    ,

    ,

    function createHeadGeneric($match) { if (strcmp($match[3],'1') === 0) { return createHead($match,'1'); } else if (strcmp($match[3],'2') === 0) { return createHead($match,'2'); } else { return createHead($match,'3'); } } //create
  • function createItem($match) { return createNode($match,'[*]',"
  • ","
  • "); } //create function createList($match) { return createNode($match,'[list]',""); } //create
      function createEnum($match) { return createNode($match,'[enum]',"
        ","
      "); } function linkToInternalPage($match) { return "".$match[2].""; } function linkToInternalPageWithText($match) { return "".$match[3].""; } function linkToWithText($match) { if (checkUrl($match[2])) { return "".$match[3].""; } else { return $match[0]; } } //create the link to the wiki page of the notebook function linkToNotebook($match) { $hardware = new HardwareModel(); $clean['id_hard'] = (int)$match[2]; $name = encodeUrl($hardware->getTheModelName($clean['id_hard'])); $href = "HTTP://".DOMAIN_NAME."/notebooks/view/".Lang::$current."/".$clean['id_hard']."/$name"; return (strcmp($name,'') !== 0) ? "".$name."" : $match[0]; } //create the link to the wiki page of the wifi function linkToWifi($match) { $hardware = new HardwareModel(); $clean['id_hard'] = (int)$match[2]; $name = encodeUrl($hardware->getTheModelName($clean['id_hard'])); $href = "HTTP://".DOMAIN_NAME."/wifi/view/".Lang::$current."/".$clean['id_hard']."/$name"; return (strcmp($name,'') !== 0) ? "".$name."" : $match[0]; } //create the link to the wiki page of the videocard function linkToVideocard($match) { $hardware = new HardwareModel(); $clean['id_hard'] = (int)$match[2]; $name = encodeUrl($hardware->getTheModelName($clean['id_hard'])); $href = "HTTP://".DOMAIN_NAME."/videocards/view/".Lang::$current."/".$clean['id_hard']."/$name"; return (strcmp($name,'') !== 0) ? "".$name."" : $match[0]; } function getUserName($id_user = 0) { $clean['id_user'] = (int)$id_user; $u = new UsersModel(); return $u->getUser($clean['id_user']); } function getMotivation($row,$controller) { if (strcmp($row['deletion']['object'],'duplication') === 0) { $clean['id_hard'] = (int)$row['deletion']['id_duplicate']; $hardware = new HardwareModel(); $name = encodeUrl($hardware->getTheModelName($clean['id_hard'])); return "duplication of the model having id ".$clean['id_hard'].""; } else { return "".$row['deletion']['object'].""; } } //get the text in the right language function gtext($string) { if (isset(Lang::$i18n[Lang::$current][$string])) { return Lang::$i18n[Lang::$current][$string]; } return $string; } function singular($string) { if (isset(Lang::$singular[Lang::$current][$string])) { return Lang::$singular[Lang::$current][$string]; } return $string; } function plural($string) { if (isset(Lang::$plural[Lang::$current][$string])) { return Lang::$plural[Lang::$current][$string]; } return $string; } //get the hardware info from the talk id function getHardwareInfoFromTalkId($id = 0) { $clean['id'] = (int)$id; $talk = new TalkModel(); $res = $talk->select('hardware.type,hardware.id_hard')->from('hardware inner join talk')->using('id_hard')->where(array('id_talk'=>$clean['id']))->send(); return count($res) > 0 ? $res[0]['hardware'] : null; } //get hardware info from id function getHardwareInfoFromId($id = 0) { $clean['id'] = (int)$id; $hw = new HardwareModel(); $res = $hw->select()->where(array('id_hard'=>$clean['id']))->send(); $controller = 'home/index/en'; $model = ''; if (count($res) > 0) { $controller = Hardware::getControllerFromType($res[0]['hardware']['type']); $controller = strcmp($controller,'') !== 0 ? $controller : 'home/index/en'; $model = $res[0]['hardware']['model']; } return array('controller'=>$controller,'model'=>$model); } //get the wiki page info from the talk id function getWikiPageInfoFromTalkId($id = 0) { $clean['id'] = (int)$id; $talk = new WikitalkModel(); $res = $talk->select('wiki.id_wiki')->from('wiki inner join wiki_talk')->using('id_wiki')->where(array('id_talk'=>$clean['id']))->send(); return count($res) > 0 ? $res[0]['wiki']['id_wiki'] : ''; } //get the issue info from the message id function getIssueNumberFromMessageId($id = 0) { $clean['id'] = (int)$id; $mess = new MessagesModel(); $res = $mess->select('issues.id_issue')->from('issues inner join messages')->using('id_issue')->where(array('id_mes'=>$clean['id']))->toList('issues.id_issue')->send(); return count($res) > 0 ? $res[0] : ''; } //get thw wiki name from the id function getWikiNameFromId($id = 0) { $clean['id'] = (int)$id; $wiki = new WikiModel(); $name = $wiki->getTheModelName($clean['id']); return $name; } //return the URL to the moderated object page function goToModeratedItem( $row = array() ) { $url = null; switch ($row['type']) { case 'message': $url = 'issues/view/'.Lang::$current.'/'.getIssueNumberFromMessageId($row['id']).'#message-'.$row['id']; break; case 'talk': $hardInfo = getHardwareInfoFromTalkId($row['id']); if (isset($hardInfo)) { $controller = Hardware::$typeToController[$hardInfo['type']]; $url = $controller.'/talk/'.Lang::$current.'/'.$hardInfo['id_hard'].'#talk-'.$row['id']; } else { $url = 'last/modactions/'.Lang::$current; } break; case 'user': $url = 'meet/user/'.Lang::$current.'/'.getUserName($row['id']); break; case 'issue': $url = 'issues/view/'.Lang::$current.'/'.$row['id']; break; case 'issue_del': $url = 'issues/view/'.Lang::$current.'/'.$row['id']; break; case 'wiki_talk': $url = 'wiki/talk/'.Lang::$current.'/'.getWikiPageInfoFromTalkId($row['id']).'#wiki-talk-'.$row['id']; break; case 'page': $url = 'wiki/page/'.Lang::$current.'/'.encodeUrl(getWikiNameFromId($row['id'])); break; case 'page_del': $url = 'wiki/page/'.Lang::$current.'/'.encodeUrl(getWikiNameFromId($row['id'])); break; case 'device': $hardInfo = getHardwareInfoFromId($row['id']); $url = $hardInfo['controller'].'/view/'.Lang::$current.'/'.$row['id'].'/'.encodeUrl($hardInfo['model']); break; case 'device_app': $hardInfo = getHardwareInfoFromId($row['id']); $url = $hardInfo['controller'].'/view/'.Lang::$current.'/'.$row['id'].'/'.encodeUrl($hardInfo['model']); break; case 'device_cl': $hardInfo = getHardwareInfoFromId($row['id']); $url = $hardInfo['controller'].'/view/'.Lang::$current.'/'.$row['id'].'/'.encodeUrl($hardInfo['model']); break; case 'message_ins': $url = 'issues/view/'.Lang::$current.'/'.getIssueNumberFromMessageId($row['id']).'#message-'.$row['id']; break; case 'wiki_talk_ins': $url = 'wiki/talk/'.Lang::$current.'/'.getWikiPageInfoFromTalkId($row['id']).'#wiki-talk-'.$row['id']; break; case 'issue_ins': $url = 'issues/view/'.Lang::$current.'/'.$row['id']; break; case 'talk_ins': $hardInfo = getHardwareInfoFromTalkId($row['id']); if (isset($hardInfo)) { $controller = Hardware::$typeToController[$hardInfo['type']]; $url = $controller.'/talk/'.Lang::$current.'/'.$hardInfo['id_hard'].'#talk-'.$row['id']; } else { $url = 'last/modactions/'.Lang::$current; } break; case 'hardware': $hardInfo = getHardwareInfoFromId($row['id']); $url = $hardInfo['controller'].'/view/'.Lang::$current.'/'.$row['id'].'/'.encodeUrl($hardInfo['model']); break; case 'wiki': $url = 'wiki/page/'.Lang::$current.'/'.encodeUrl(getWikiNameFromId($row['id'])); break; } return 'http://'.DOMAIN_NAME.'/'.$url; } function getUrlsFromIdHard($id_hard) { $clean['id_hard'] = (int)$id_hard; $urlView = "http://".DOMAIN_NAME; $urlTalk = "http://".DOMAIN_NAME; $deviceName = null; $hard = new HardwareModel(); $res = $hard->select('type,model')->where(array('id_hard'=>$clean['id_hard']))->send(); if (count($res) > 0) { $urlView = "http://".DOMAIN_NAME."/".Hardware::$typeToController[$res[0]['hardware']['type']]."/view/".Lang::$current."/".$clean['id_hard']."/".encodeUrl($res[0]['hardware']['model']); $urlTalk = "http://".DOMAIN_NAME."/".Hardware::$typeToController[$res[0]['hardware']['type']]."/talk/".Lang::$current."/".$clean['id_hard']; $deviceName = $res[0]['hardware']['model']; } return array('urlView'=>$urlView,'urlTalk'=>$urlTalk,'modelName'=>$deviceName); } function getDiffArray($associativeArray, $oldArray, $newArray) { $diffArray = array(); foreach ($associativeArray as $field => $label) { if (array_key_exists($field,$oldArray) and array_key_exists($field,$newArray)) { $diffArray[$label] = htmlDiff($oldArray[$field], $newArray[$field]); } } return $diffArray; }