8 require_once(
"header.inc.php");
12 define(
'CH_WSB_LINK_CLASS',
'ch-link');
14 define(
'CH_WSB_LOCALE_TIME', 2);
15 define(
'CH_WSB_LOCALE_DATE_SHORT', 4);
16 define(
'CH_WSB_LOCALE_DATE', 5);
18 define(
'CH_WSB_LOCALE_PHP', 1);
19 define(
'CH_WSB_LOCALE_DB', 2);
21 define(
'CH_TAGS_NO_ACTION', 0);
22 define(
'CH_TAGS_STRIP', 1);
23 define(
'CH_TAGS_SPECIAL_CHARS', 8);
24 define(
'CH_TAGS_VALIDATE', 16);
25 define(
'CH_TAGS_STRIP_AND_NL2BR', 32);
27 define(
'CH_SLASHES_AUTO', 0);
28 define(
'CH_SLASHES_ADD', 1);
29 define(
'CH_SLASHES_STRIP', 2);
30 define(
'CH_SLASHES_NO_ACTION', 3);
32 define(
'CH_ESCAPE_STR_AUTO', 0);
33 define(
'CH_ESCAPE_STR_APOS', 1);
34 define(
'CH_ESCAPE_STR_QUOTE', 2);
36 define(
'CH_URL_RE',
"@\b((https?://)|(www\.))(([0-9a-zA-Z_!~*'().&=+$%-]+:)?[0-9a-zA-Z_!~*'().&=+$%-]+\@)?(([0-9]{1,3}\.){3}[0-9]{1,3}|([0-9a-zA-Z_!~*'()-]+\.)*([0-9a-zA-Z][0-9a-zA-Z-]{0,61})?[0-9a-zA-Z]\.[a-zA-Z]{2,6})(:[0-9]{1,4})?((/[0-9a-zA-Z_!~*'().;?:\@&=+$,%#-]+)*/?)@");
45 array(
'&',
'/',
'\\',
'"',
'+'),
46 array(
'[and]',
'[slash]',
'[backslash]',
'[quote]',
'[plus]'),
54 array(
'[and]',
'[slash]',
'[backslash]',
'[quote]',
'[plus]'),
55 array(
'&',
'/',
'\\',
'"',
'+'),
74 return date($sFormat, $sTimestamp);
118 return gmdate(DATE_ISO8601, (
int)$iUnixTimestamp);
130 $iFirstProfile = (int)$iFirstProfile;
131 $iSecondProfile = (int)$iSecondProfile;
132 $sQuery =
"SELECT COUNT(*) FROM `sys_block_list` WHERE `ID` = {$iFirstProfile} AND `Profile` = {$iSecondProfile}";
144 if ($id1 == 0 || $id2 == 0) {
147 $cnt =
db_arr(
"SELECT SUM(`Check`) AS 'cnt' FROM `sys_friend_list` WHERE `ID`='{$id1}' AND `Profile`='{$id2}' OR `ID`='{$id2}' AND `Profile`='{$id1}'");
149 return ($cnt[
'cnt'] > 0 ?
true :
false);
155 function WordWrapStr($sString, $iWidth = 25, $sWrapCharacter =
'­')
157 if (
empty($sString) || mb_strlen($sString,
'UTF-8') <= $iWidth) {
161 $aSpecialSymbols = array(
"\r",
"\n");
162 $aSpecialSymbolsWithSpace = array(
" _SLASHR_ ",
" _SLASHN_ ");
163 $aSpecialSymbolsWithSpace2 = array(
"_SLASHR_",
"_SLASHN_");
165 $sString = str_replace($aSpecialSymbols, $aSpecialSymbolsWithSpace, $sString);
168 $aWords = mb_split(
"\s", $sString);
170 foreach ($aWords
as $sWord) {
172 if (($iWord = mb_strlen($sWord,
'UTF-8')) <= $iWidth || preg_match(
CH_URL_RE, $sWord)) {
181 while ($iPosition < $iWord) {
182 $sResult .= mb_substr($sWord, $iPosition, $iWidth,
'UTF-8') . $sWrapCharacter;
183 $iPosition += $iWidth;
189 $sResult = str_replace($aSpecialSymbolsWithSpace, $aSpecialSymbols,
$sResult);
190 $sResult = str_replace($aSpecialSymbolsWithSpace2, $aSpecialSymbols,
$sResult);
210 $s = trim(strip_tags($sInput));
211 if (mb_strlen(
$s) > $iMaxLen) {
212 $s = mb_substr(
$s, 0, $iMaxLen);
221 while ($content != strip_tags($content, $tags)) {
222 $content = strip_tags($content, $tags);
230 $searcharray = array(
231 "'([-_\w\d.]+@[-_\w\d.]+)'",
232 "'((?:(?!://).{3}|^.{0,2}))(www\.[-\d\w\.\/]+)'",
233 "'(http[s]?:\/\/[-_~\w\d\.\/]+)'"
236 $replacearray = array(
237 "<a href=\"mailto:\\1\">\\1</a>",
239 "<a href=\"\\1\" target=_blank>\\1</a>"
242 return preg_replace($searcharray, $replacearray, stripslashes($text));
258 if (is_array($sText)) {
259 foreach ($sText
as $k => $v) {
267 switch ($iStripTags) {
269 return $oDb->escape(nl2br(strip_tags($sText)),
false);
271 return $oDb->escape(strip_tags($sText),
false);
273 return $oDb->escape(htmlspecialchars($sText, ENT_QUOTES,
'UTF-8'),
false);
278 return $oDb->escape($sText,
false);
293 $text = strip_tags($text);
304 return htmlspecialchars($string, ENT_COMPAT,
'UTF-8',
false);
356 function ConstructHiddenSubValues($Name, $Value)
358 if (is_array($Value)) {
360 foreach ($Value
as $KeyName => $SubValue) {
361 $Result .= ConstructHiddenSubValues(
"{$Name}[{$KeyName}]", $SubValue);
365 $Result =
"<input type=\"hidden\" name=\"" . htmlspecialchars($Name) .
"\" value=\"" . htmlspecialchars($Value) .
"\" />\n";
374 if (is_array($Values)) {
375 foreach ($Values
as $KeyName => $Value) {
376 $Result .= ConstructHiddenSubValues($KeyName, $Value);
394 function RedirectCode($ActionURL, $Params =
null, $Method =
"get", $Title =
'Redirect')
396 if ((strcasecmp(trim($Method),
"get") && strcasecmp(trim($Method),
"post")) || (trim($ActionURL) ==
"")) {
405 <title><?= $Title ?></title>
408 <
form name=
"RedirectForm" action=
"<?= htmlspecialchars($ActionURL) ?>" method=
"<?= $Method ?>">
413 <script
type=
"text/javascript">
415 document.forms[
'RedirectForm'].submit();
422 $Result = ob_get_contents();
432 function Redirect($ActionURL, $Params =
null, $Method =
"get", $Title =
'Redirect')
434 $RedirectCodeValue =
RedirectCode($ActionURL, $Params, $Method, $Title);
435 if ($RedirectCodeValue !==
false) {
436 echo $RedirectCodeValue;
443 $perms = fileperms($sFileName);
445 return ($perms & 0x0004 && $perms & 0x0002) ?
true :
false;
467 $sEmailFlag =
'html',
468 $isDisableAlert =
false,
473 if (!$sRecipientEmail || preg_match(
'/\(2\)$/', $sRecipientEmail)) {
477 $aRecipientInfo = $iRecipientID ?
getProfileInfo($iRecipientID) : array();
481 $aRealRecipient =
$GLOBALS[
'MySQL']->getRow(
"SELECT * FROM `Profiles` WHERE `Email`= ? LIMIT 1",
483 if ($aRealRecipient && 1 != $aRealRecipient[
'EmailNotify']) {
488 $sEmailNotify = isset(
$GLOBALS[
'site'][
'email_notify']) ?
$GLOBALS[
'site'][
'email_notify'] :
getParam(
'site_email_notify');
490 $sMailHeader =
"From: =?UTF-8?B?" . base64_encode($sSiteTitle) .
"?= <{$sEmailNotify}>";
491 $sMailParameters =
"-f{$sEmailNotify}";
493 if ($aPlus || $iRecipientID) {
494 if (!is_array($aPlus)) {
499 $sMailSubject = $oEmailTemplates->parseContent($sMailSubject, $aPlus, $iRecipientID);
500 $sMailBody = $oEmailTemplates->parseContent($sMailBody, $aPlus, $iRecipientID);
503 $sMailSubjectEncoded =
'=?UTF-8?B?' . base64_encode($sMailSubject) .
'?=';
505 $sMailHeader =
"MIME-Version: 1.0\r\n" . $sMailHeader;
507 if(
'on' ==
getParam(
'email_log_emabled')) {
508 $sLogDate = date(
"F j, Y, g:i a");
509 $sHttpRefererLog = isset($_SERVER[
'HTTP_REFERER']) ? $_SERVER[
'HTTP_REFERER'] :
'Empty';
510 $sMailSubjectLog = ($sMailSubject ==
'' ?
'Empty' : $sMailSubject);
511 $sMailSubjectEncodedLog = ($sMailSubjectEncoded ==
'' ?
'Empty' : $sMailSubjectEncoded);
512 $sRecipientEmailLog = ($sRecipientEmail ==
'' ?
'Empty' : $sRecipientEmail);
513 $sMailBodyLog = ($sMailBody ==
'' ?
'Empty' : $sMailBody);
514 $iRecipientIDLog = $iRecipientID;
515 $aPlusLog = serialize($aPlus);
516 $sEmailFlagLog = $sEmailFlag;
517 $isDisableAlertLog = ($isDisableAlert ==
true ?
'True' :
'False');
518 $bForceSendLog = ($bForceSend ==
true ?
'True' :
'False');
519 $sBt = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 4);
520 $sDebugTraceLog = serialize($sBt);
521 $sMailHeaderLog = ($sMailHeader ==
'' ?
'Empty' : $sMailHeader);
522 $sEmailNotifyLog = ($sEmailNotify ==
'' ?
'Empty' : $sEmailNotify);
523 $aRecipientInfoLog = serialize($aRecipientInfo);
524 $sQuery =
"INSERT INTO `sys_email_log` (`email`, `subject`, `encodedsubject`, `body`, `header`, `emailnotify`, `params`, `recipientinfo`, `html`, `debug`, `timestamp`) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, NOW())";
525 $GLOBALS[
'MySQL']->query($sQuery, [$sRecipientEmailLog, $sMailSubjectLog, $sMailSubjectEncodedLog, $sMailBodyLog, $sMailHeaderLog, $sEmailNotifyLog, $aPlusLog, $aRecipientInfoLog, $sEmailFlagLog, $sDebugTraceLog]);
529 if (!$isDisableAlert &&
'on' ==
getParam(
'ch_smtp_on')) {
532 $sMailSubjectEncoded,
536 'html' == $sEmailFlag,
541 if (
'html' == $sEmailFlag) {
542 $sMailHeader =
"Content-type: text/html; charset=UTF-8\r\n" . $sMailHeader;
543 $iSendingResult = mail($sRecipientEmail, $sMailSubjectEncoded, $sMailBody, $sMailHeader, $sMailParameters);
545 $sMailHeader =
"Content-type: text/plain; charset=UTF-8\r\n" . $sMailHeader;
547 $iSendingResult = mail($sRecipientEmail, $sMailSubjectEncoded,
html2txt($sMailBody), $sMailHeader, $sMailParameters);
550 if (!$isDisableAlert) {
554 'email' => $sRecipientEmail,
555 'subject' => $sMailSubjectEncoded,
556 'body' => $sMailBody,
557 'header' => $sMailHeader,
558 'params' => $sMailParameters,
559 'html' =>
'html' == $sEmailFlag ?
true :
false,
562 $oZ =
new ChWsbAlerts(
'profile',
'send_mail', $iRecipientID,
'', $aAlertData);
566 return $iSendingResult;
576 $sPath = CH_DIRECTORY_PATH_ROOT .
'templates/';
577 $sUrl = CH_WSB_URL_ROOT .
'templates/';
579 if (!($handle = opendir($sPath))) {
583 while (
false !== ($sFileName = readdir($handle))) {
585 if (!is_dir($sPath . $sFileName) || 0 !== strncmp($sFileName,
'tmpl_', 5)) {
594 $sPreviewImg =
false;
596 if (file_exists($sPath . $sFileName .
'/scripts/ChTemplName.php')) {
597 @include($sPath . $sFileName .
'/scripts/ChTemplName.php');
603 $aTempls[substr($sFileName, 5)] = $isAllParams ? array(
608 'preview' => $sPreviewImg
624 $current_template = (strlen(
$_GET[
'skin'])) ?
$_GET[
'skin'] : $_COOKIE[
'skin'];
626 foreach ($templ_choices
as $tmpl_key => $tmpl_value) {
627 if ($current_template == $tmpl_key) {
628 $ReturnResult .= $tmpl_value .
' | ';
631 $ReturnResult .=
'<a href="' .
ch_html_attribute($_SERVER[
'PHP_SELF']) .
'?' . $sGetTransfer .
'skin=' . $tmpl_key .
'">' . $tmpl_value .
'</a> | ';
635 return $ReturnResult;
640 return (file_exists($sFileSrc) && is_file($sFileSrc)) ?
true :
false;
645 if (!$isProxyCheck) {
646 return $_SERVER[
'REMOTE_ADDR'];
649 $ip = $_SERVER[
'REMOTE_ADDR'];
650 if ((isset($_SERVER[
'HTTP_X_FORWARDED_FOR'])) && !
empty($_SERVER[
'HTTP_X_FORWARDED_FOR'])) {
651 $ip = $_SERVER[
'HTTP_X_FORWARDED_FOR'];
652 } elseif ((isset($_SERVER[
'HTTP_X_REAL_IP'])) && !
empty($_SERVER[
'HTTP_X_REAL_IP'])) {
653 $ip = $_SERVER[
'HTTP_X_REAL_IP'];
654 } elseif ((isset($_SERVER[
'HTTP_CLIENT_IP'])) && !
empty($_SERVER[
'HTTP_CLIENT_IP'])) {
655 $ip = $_SERVER[
'HTTP_CLIENT_IP'];
658 if (!preg_match(
"/^\d+\.\d+\.\d+\.\d+$/", $ip)) {
659 $ip = $_SERVER[
'REMOTE_ADDR'];
667 return '<img src="' .
genFlagUrl($country) .
'" />';
672 return $GLOBALS[
'site'][
'flags'] . strtolower($country) .
'.gif';
679 echo
"<b>$desc:</b> ";
691 '--- ' . date(
'r') .
' (' . CH_WSB_START_TIME .
") ---\n" .
693 print_r($mWhat,
true) .
"\n\n\n";
695 $rFile = fopen(
$dir[
'tmp'] . $sFileName,
'a');
704 if (!isset($oHtmlPurifier) && !
$GLOBALS[
'logged'][
'admin']) {
706 require_once(CH_DIRECTORY_PATH_PLUGINS .
'htmlpurifier/HTMLPurifier.standalone.php');
712 $oConfig->set(
'Cache.SerializerPath', rtrim(CH_DIRECTORY_PATH_CACHE,
'/'));
713 $oConfig->set(
'Cache.SerializerPermissions', 0777);
715 $oConfig->set(
'HTML.SafeObject',
'true');
716 $oConfig->set(
'Output.FlashCompat',
'true');
717 $oConfig->set(
'HTML.FlashAllowFullScreen',
'true');
719 if (
getParam(
'sys_antispam_add_nofollow')) {
720 $sHost = parse_url(CH_WSB_URL_ROOT, PHP_URL_HOST);
721 $oConfig->set(
'URI.Host', $sHost);
722 $oConfig->set(
'HTML.Nofollow',
'true');
725 if ($sSafeIframeRegexp =
getParam(
'sys_safe_iframe_regexp')) {
726 $oConfig->set(
'HTML.SafeIframe',
'true');
727 $oConfig->set(
'URI.SafeIframeRegexp', $sSafeIframeRegexp);
730 $oConfig->set(
'Filter.Custom', array(
737 $oConfig->set(
'HTML.DefinitionID',
'html5-definitions');
738 $oConfig->set(
'HTML.DefinitionRev', 1);
739 if (
$def = $oConfig->maybeGetRawHTMLDefinition()) {
740 $def->addElement(
'section',
'Block',
'Flow',
'Common');
741 $def->addElement(
'nav',
'Block',
'Flow',
'Common');
742 $def->addElement(
'article',
'Block',
'Flow',
'Common');
743 $def->addElement(
'aside',
'Block',
'Flow',
'Common');
744 $def->addElement(
'header',
'Block',
'Flow',
'Common');
745 $def->addElement(
'footer',
'Block',
'Flow',
'Common');
746 $def->addElement(
'video',
'Block',
'Optional: (source, Flow) | (Flow, source) | Flow',
'Common', array(
750 'height' =>
'Length',
752 'preload' =>
'Enum#auto,metadata,none',
753 'controls' =>
'Bool',
755 $def->addElement(
'source',
'Block',
'Flow',
'Common', array(
759 $def->addAttribute(
'a',
'target',
'Enum#_blank,_self,_target,_top');
766 $val = $oHtmlPurifier->purify($val);
770 array(
'oHtmlPurifier' => $oHtmlPurifier,
'return_data' => &$val));
781 $sSuffix = $bShort ?
'_short' :
'';
784 $i = round($iSec / 60);
785 $s .= (0 == $i || 1 == $i) ?
_t(
'_just_now') :
_t(
'_x_minutes_ago' . $sSuffix, $i);
788 $i = round($iSec / 60 / 60);
789 $s .= ((0 == $i || 1 == $i) && !$bShort) ?
_t(
'_x_hour_ago') :
_t(
'_x_hours_ago' . $sSuffix, $i);
791 $i = round($iSec / 60 / 60 / 24);
792 $s .= (0 == $i || 1 == $i) ?
_t(
'_yesterday') :
_t(
'_x_days_ago' . $sSuffix, $i);
797 $i = round($iSec / 60);
798 $s .= (0 == $i || 1 == $i) ?
_t(
'_just_now') :
_t(
'_in_x_minutes' . $sSuffix, -$i);
800 if ($iSec > -86400) {
801 $i = round($iSec / 60 / 60);
802 $s .= ((0 == $i || 1 == $i) && !$bShort) ?
_t(
'_in_x_hour') :
_t(
'_in_x_hours' . $sSuffix, -$i);
803 } elseif ($iSec < -86400) {
804 $i = round($iSec / 60 / 60 / 24);
805 $s .= (0 == $i || 1 == $i) ?
_t(
'_tomorrow') :
_t(
'_in_x_days' . $sSuffix, -$i);
815 $sDivider = isset($aParams[
'divider']) ? $aParams[
'divider'] :
':';
818 $sFormat = $iSec > 3600 ?
'H' . $sDivider .
'i' . $sDivider .
's' :
'i' . $sDivider .
's';
820 return gmdate($sFormat, $iSec);
833 $iTimeDiff =
time() - (int)$iTime;
835 if ($bAutoDateConvert && $iTimeDiff > 14 * 24 * 60 * 60)
845 if (!
$f = fopen($sFileName,
"r")) {
849 db_res(
"SET NAMES 'utf8'");
852 while (
$s = fgets(
$f, 10240)) {
858 if (mb_substr(
$s, 0, 1) ==
'#') {
861 if (mb_substr(
$s, 0, 2) ==
'--') {
867 if (mb_substr(
$s, -1) !=
';') {
882 $text = preg_replace_callback(
'/([\s\n\r]src\=")([^"]+)(")/',
'replace_full_uri', $text);
889 if (substr($matches[2], 0, 7) !=
'http://' and substr($matches[2], 0, 8) !=
'https://' and substr($matches[2], 0,
892 $matches[2] = CH_WSB_URL_ROOT . $matches[2];
895 return $matches[1] . $matches[2] . $matches[3];
914 $s .=
'-' . date(
'Y-m-d');
922 for ($i = 0; $i < 999; ++$i) {
924 return (
$s .
'-' . $i);
928 return rand(0, 999999999);
933 if (
$GLOBALS[
'oTemplConfig']->bAllowUnicodeInPreg) {
951 return !
db_arr(
"SELECT 1 FROM $sTable WHERE $sField = '$s' LIMIT 1");
956 return preg_replace($sPattern, $sReplace,
$s);
961 return (function_exists(
'mb_strlen')) ? mb_strlen(
$s) : strlen(
$s);
966 return (function_exists(
'mb_substr')) ? mb_substr(
$s, $iStart, $iLen) : substr(
$s, $iStart, $iLen);
977 function ch_block_ip($mixedIP, $iExpirationInSec = 86400, $sComment =
'')
979 if (preg_match(
'/^[0-9]+$/', $mixedIP)) {
982 $iIP = sprintf(
"%u", ip2long($sIP));
985 $iExpirationInSec =
time() + (int)$iExpirationInSec;
988 if (!
db_value(
"SELECT ID FROM `sys_ip_list` WHERE `From` = {$iIP} AND `To` = {$iIP} LIMIT 1")) {
989 return db_res(
"INSERT INTO `sys_ip_list` SET `From` = {$iIP}, `To` = {$iIP}, `Type` = 'deny', `LastDT` = {$iExpirationInSec}, `Desc` = '{$sComment}'");
997 if (defined(
'CH_WSB_CRON_EXECUTE')) {
1013 $o->onPositiveDetection($sCurIP,
$sType);
1023 if (defined(
'CH_WSB_CRON_EXECUTE')) {
1027 $iIPGlobalType = (int)
getParam(
'ipListGlobalType');
1028 if ($iIPGlobalType != 1 && $iIPGlobalType != 2)
1036 $iCurIP = sprintf(
"%u", ip2long($sCurIP));
1037 $iCurrTume =
time();
1039 return db_value(
"SELECT `ID` FROM `sys_ip_list` WHERE `Type` = 'allow' AND `LastDT` > $iCurrTume AND `From` <= '$iCurIP' AND `To` >= '$iCurIP' LIMIT 1") ?
true :
false;
1044 if (defined(
'CH_WSB_CRON_EXECUTE')) {
1048 $iIPGlobalType = (int)
getParam(
'ipListGlobalType');
1049 if ($iIPGlobalType != 1 && $iIPGlobalType != 2)
1057 $iCurIP = sprintf(
"%u", ip2long($sCurIP));
1058 $iCurrTume =
time();
1064 $isBlocked =
db_value(
"SELECT `ID` FROM `sys_ip_list` WHERE `Type` = 'deny' AND `LastDT` > $iCurrTume AND `From` <= '$iCurIP' AND `To` >= '$iCurIP' LIMIT 1");
1071 return $iIPGlobalType == 2 ?
true :
false;
1082 if (defined(
'CH_WSB_CRON_EXECUTE')) {
1095 if (
'on' ==
getParam(
'sys_uridnsbl_enable')) {
1096 $oChWsbDNSURIBlacklists =
ch_instance(
'ChWsbDNSURIBlacklists');
1097 if ($oChWsbDNSURIBlacklists->isSpam($val)) {
1098 $oChWsbDNSURIBlacklists->onPositiveDetection($val);
1103 if (
'on' ==
getParam(
'sys_akismet_enable')) {
1105 if ($oChWsbAkismet->isSpam($val)) {
1106 $oChWsbAkismet->onPositiveDetection($val);
1111 if ($bRet &&
'on' ==
getParam(
'sys_antispam_report')) {
1114 $aTemplate = $oEmailTemplates->getTemplate(
't_SpamReportAuto', 0);
1121 'Get' => print_r(
$_GET,
true),
1125 sendMail(
$GLOBALS[
'site'][
'email'], $aTemplate[
'Subject'], $aTemplate[
'Body'],
'', $aPlus);
1128 if ($bRet &&
'on' ==
getParam(
'sys_antispam_block')) {
1137 list($usec, $sec) = explode(
" ", microtime());
1139 return ((
float)$usec + (
float)$sec);
1148 $sqlQuery =
"SELECT `Name` as `name`,
1150 `UserQuery` as `query`,
1151 `UserLink` as `link`,
1152 `IconName` as `icon`,
1153 `AdminQuery` as `adm_query`,
1154 `AdminLink` as `adm_link`
1155 FROM `sys_stat_site`
1156 ORDER BY `StatOrder` ASC, `ID` ASC";
1158 $rData =
db_res($sqlQuery);
1160 $sLine =
"return array( \n";
1161 while ($aVal = $rData->fetch()) {
1164 $sLine = rtrim($sLine,
",\n") .
"\n);";
1177 $sLink =
$oMenu->getCurrLink($aVal[
'link']);
1178 $sAdmLink =
$oMenu->getCurrLink($aVal[
'adm_link']);
1179 $sLine =
"'{$aVal['name']}'=>array('capt'=>'{$aVal['capt']}', 'query'=>'" . addslashes($aVal[
'query']) .
"', 'link'=>'$sLink', 'icon'=>'{$aVal['icon']}', 'adm_query'=>'" . addslashes($aVal[
'adm_query']) .
"', 'adm_link'=>'$sAdmLink', ),\n";
1187 $aStats =
$oCache->getData(
$GLOBALS[
'MySQL']->genDbCacheKey(
'sys_stat_site'));
1188 if ($aStats ===
null) {
1190 $aStats =
$oCache->getData(
$GLOBALS[
'MySQL']->genDbCacheKey(
'sys_stat_site'));
1209 return preg_replace(
"/(&|&){$sExceptParam}=([a-z0-9\_\-]{1,})/i",
'', $sString);
1220 if (class_exists($sClassName)) {
1226 if (class_exists($a[
'class_prefix'] . $sClassName)) {
1229 require_once(CH_DIRECTORY_PATH_MODULES . $a[
'path'] .
'classes/' . $a[
'class_prefix'] . $sClassName .
'.php');
1232 if (0 === strncmp($sClassName,
'ChWsb', 5)) {
1233 require_once(CH_DIRECTORY_PATH_CLASSES . $sClassName .
'.php');
1237 if (0 === strncmp($sClassName,
'ChBase', 6)) {
1238 require_once(CH_DIRECTORY_PATH_BASE .
'scripts/' . $sClassName .
'.php');
1242 if (0 === strncmp($sClassName,
'ChTempl', 7) && !class_exists($sClassName)) {
1244 if (!defined(
'CH_WSB_TEMPLATE_DEFAULT_CODE')) {
1245 require_once(CH_DIRECTORY_PATH_CLASSES .
'ChWsbTemplate.php');
1249 require_once(CH_DIRECTORY_PATH_ROOT .
"templates/tmpl_{$GLOBALS['tmpl']}/scripts/" . $sClassName .
'.php');
1266 if (isset(
$GLOBALS[
'chWsbClasses'][$sClassName])) {
1267 return $GLOBALS[
'chWsbClasses'][$sClassName];
1271 if (
empty($aParams)) {
1272 $GLOBALS[
'chWsbClasses'][$sClassName] =
new $sClassName();
1275 foreach ($aParams
as $mixedKey => $mixedValue) {
1276 $sParams .=
"\$aParams[" . $mixedKey .
"], ";
1278 $sParams = substr($sParams, 0, -2);
1280 $GLOBALS[
'chWsbClasses'][$sClassName] = eval(
"return new " . $sClassName .
"(" . $sParams .
");");
1283 return $GLOBALS[
'chWsbClasses'][$sClassName];
1301 $aUnits[
"'"] =
"\\'";
1302 $aUnits[
'<script'] =
"<scr' + 'ipt";
1303 $aUnits[
'</script>'] =
"</scr' + 'ipt>";
1305 $aUnits[
'"'] =
'\\"';
1306 $aUnits[
'<script'] =
'<scr" + "ipt';
1307 $aUnits[
'</script>'] =
'</scr" + "ipt>';
1309 $aUnits[
'"'] =
'"e;';
1310 $aUnits[
"'"] =
''';
1311 $aUnits[
"<"] =
'<';
1312 $aUnits[
">"] =
'>';
1315 return str_replace(array_keys($aUnits), array_values($aUnits), $mixedInput);
1331 return str_replace(array_keys($aUnits), array_values($aUnits), $mixedInput);
1342 return str_replace(
"'",
"\\'", $mixedInput);
1347 return str_replace(
'"',
'\\"', $mixedInput);
1357 function ch_file_get_contents($sFileUrl, $aParams = array(), $sMethod =
'get', $aHeaders = array(), &$sHttpCode =
null)
1359 if (
'post' != $sMethod) {
1364 if (function_exists(
'curl_init')) {
1365 $rConnect = curl_init();
1367 curl_setopt($rConnect, CURLOPT_TIMEOUT, 10);
1368 curl_setopt($rConnect, CURLOPT_URL, $sFileUrl);
1369 curl_setopt($rConnect, CURLOPT_HEADER,
null === $sHttpCode ?
false :
true);
1370 curl_setopt($rConnect, CURLOPT_RETURNTRANSFER, 1);
1372 if (!ini_get(
'open_basedir')) {
1373 curl_setopt($rConnect, CURLOPT_FOLLOWLOCATION, 1);
1377 curl_setopt($rConnect, CURLOPT_HTTPHEADER, $aHeaders);
1380 if (
'post' == $sMethod) {
1381 curl_setopt($rConnect, CURLOPT_POST,
true);
1382 curl_setopt($rConnect, CURLOPT_POSTFIELDS, $aParams);
1386 foreach ($_COOKIE
as $sKey => $sValue) {
1387 $sAllCookies .= $sKey .
'=' . $sValue .
';';
1389 curl_setopt($rConnect, CURLOPT_COOKIE, $sAllCookies);
1393 if (curl_errno($rConnect) == 60) {
1394 curl_setopt($rConnect, CURLOPT_CAINFO, CH_DIRECTORY_PATH_PLUGINS .
'curl/cacert.pem');
1398 if (
null !== $sHttpCode) {
1399 $sHttpCode = curl_getinfo($rConnect, CURLINFO_HTTP_CODE);
1402 curl_close($rConnect);
1404 $sResult = @file_get_contents($sFileUrl);
1417 $sFileName = CH_DIRECTORY_PATH_ROOT .
'tmp/log.txt';
1419 if (is_writable($sFileName)) {
1420 if (!$vHandle = fopen($sFileName,
'a')) {
1421 echo
"Unable to open ({$sFileName})";
1423 if (fwrite($vHandle, $sNewLineText .
"\r\n") ===
false) {
1424 echo
"Unable write to ({$sFileName})";
1429 echo
"{$sFileName} is not writeable";
1435 return '<a href="' .
$sUrl .
'">' . $sString .
'</a> ';
1438 function getLinkSet($sLinkString, $sUrlPrefix, $sDivider =
';,', $bUriConvert =
false)
1440 $aSet = preg_split(
'/[' . $sDivider .
']/', $sLinkString, 0, PREG_SPLIT_NO_EMPTY);
1443 foreach ($aSet
as $sKey) {
1444 $sLink = $sUrlPrefix . urlencode($bUriConvert ?
title2uri($sKey) : $sKey);
1445 $sFinalSet .=
'<a href="' . $sUrlPrefix . urlencode(
title2uri(trim($sKey))) .
'">' . $sKey .
'</a> ';
1448 return trim($sFinalSet,
' ');
1453 $sString = implode(
' ',
$aInfo);
1454 $aRes = array_unique(explode(
' ', $sString));
1455 $sString = implode(
' ', $aRes);
1457 return addslashes($sString);
1467 preg_match(
"/<meta.+charset=([A-Za-z0-9-]+).+>/i",
$sContent, $aMatch);
1468 if (isset($aMatch[1])) {
1469 $sCharset = $aMatch[1];
1472 if (preg_match(
"/<title[^>]*>(.*)<\/title>/i",
$sContent, $aMatch)) {
1475 $aResult[
'title'] = parse_url($sSourceUrl, PHP_URL_HOST);
1481 if ($aProcessAdditionalTags) {
1483 foreach ($aProcessAdditionalTags
as $k => $a) {
1486 isset($a[
'tag']) ? $a[
'tag'] :
'meta',
1487 isset($a[
'name_attr']) ? $a[
'name_attr'] :
'itemprop',
1488 isset($a[
'name']) ? $a[
'name'] : $k,
1489 isset($a[
'content_attr']) ? $a[
'content_attr'] :
'content',
1501 if (!preg_match(
"/<{$sTag}\s+{$sAttrNameName}[='\" ]+{$sAttrNameValue}['\"]\s+{$sAttrContentName}[='\" ]+([^'>\"]*)['\"][^>]*>/i",
1502 $sContent, $aMatch) || !isset($aMatch[1])
1504 preg_match(
"/<{$sTag}\s+{$sAttrContentName}[='\" ]+([^'>\"]*)['\"]\s+{$sAttrNameName}[='\" ]+{$sAttrNameValue}['\"][^>]*>/i",
1508 $s = isset($aMatch[1]) ? $aMatch[1] :
'';
1510 if (
$s && $sCharset) {
1511 $s = mb_convert_encoding(
$s,
'UTF-8', $sCharset);
1528 $a = array(
'D' => 86400,
'H' => 3600,
'M' =>
'60',
'S' => 1);
1530 foreach ($a
as $sLetter => $iSec) {
1531 if (preg_match(
'/(\d+)[' . $sLetter .
']{1}/i',
$sContent, $aMatch) && $aMatch[1]) {
1532 $iTotal += (int)$aMatch[1] * $iSec;
1546 return ($a < $b) ? -1 : 1;
1568 'bytes' =>
' bytes',
1573 if ($bytes >= 1073741824) {
1574 $bytes = number_format($bytes / 1073741824, 2) . $units[$shorter][
'GB'];
1575 } elseif ($bytes >= 1048576) {
1576 $bytes = number_format($bytes / 1048576, 2) . $units[$shorter][
'MB'];
1577 } elseif ($bytes >= 1024) {
1578 $bytes = number_format($bytes / 1024, 2) . $units[$shorter][
'KB'];
1579 } elseif ($bytes > 1) {
1580 $bytes = $bytes . $units[$shorter][
'bytes'];
1581 } elseif ($bytes == 1) {
1582 $bytes = $bytes . $units[$shorter][
'byte'];
1584 $bytes =
'0' . $units[$shorter][
'bytes'];
1594 if (strlen($val) < 2) {
1598 $last = strtolower($val{strlen($val) - 1});
1607 $val *= 1024 * 1024;
1610 $val *= 1024 * 1024 * 1024;
1618 function genRndPwd($iLength = 8, $bSpecialCharacters =
true)
1621 $sChars =
"abcdefghijkmnpqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ23456789";
1623 if ($bSpecialCharacters ===
true) {
1624 $sChars .=
"!?=/&+,.";
1627 srand((
double)microtime() * 1000000);
1628 for ($i = 0; $i < $iLength; $i++) {
1629 $x = mt_rand(0, strlen($sChars) - 1);
1645 return sha1(md5(
$sPwd) . $sSalt);
1651 if (is_string(
$s)) {
1652 return stripslashes(
$s);
1653 } elseif (is_array(
$s)) {
1654 foreach (
$s as $k => $v) {
1655 $s[$k] = stripslashes($v);
1668 } elseif (isset($_POST[
$sName])) {
1678 foreach ($a
as $sKey => $sVal) {
1679 if (in_array($sKey, $aExcludeKeys)) {
1682 if (
false !== $aOnlyKeys && !in_array($sKey, $aOnlyKeys)) {
1685 if (is_array($sVal)) {
1686 foreach ($sVal
as $sSubVal) {
1687 $s .= rawurlencode($sKey) .
'[]=' . rawurlencode(is_array($sSubVal) ?
'array' : $sSubVal) .
'&';
1690 $s .= rawurlencode($sKey) .
'=' . rawurlencode($sVal) .
'&';
1699 $sParams =
false == strpos(
$sUrl,
'?') ?
'?' :
'&';
1701 if (is_array($mixedParams)) {
1702 foreach ($mixedParams
as $sKey => $sValue) {
1703 $sParams .= $sKey .
'=' . $sValue .
'&';
1705 $sParams = substr($sParams, 0, -1);
1707 $sParams .= $mixedParams;
1710 return $sUrl . $sParams;
1715 if (substr($directory, -1) ==
"/") {
1716 $directory = substr($directory, 0, -1);
1719 if (!file_exists($directory) || !is_dir($directory)) {
1721 } elseif (!is_readable($directory)) {
1725 if (!($directoryHandle = opendir($directory))) {
1729 while ($contents = readdir($directoryHandle)) {
1730 if ($contents !=
'.' && $contents !=
'..') {
1731 $path = $directory .
"/" . $contents;
1733 if (is_dir(
$path)) {
1741 closedir($directoryHandle);
1743 if (!rmdir($directory)) {
1752 if (substr($$sPath, -1) ==
"/") {
1753 $sPath = substr($sPath, 0, -1);
1756 if (!file_exists($sPath) || !is_dir($sPath)) {
1758 } elseif (!is_readable($sPath)) {
1762 if (!($h = opendir($sPath))) {
1766 while (
$sFile = readdir($h)) {
1771 $sFullPath = $sPath .
'/' .
$sFile;
1773 if (is_dir($sFullPath)) {
1777 if (!$aExts || ((
$sExt = pathinfo($sFullPath, PATHINFO_EXTENSION)) && in_array(
$sExt, $aExts))) {
1778 @unlink($sFullPath);
1789 if ($sReplace && substr($sString, 0, strlen($sReplace)) == $sReplace) {
1792 if (substr($sString, 0, strlen($sPrefix)) == $sPrefix) {
1793 return $sReplace . substr($sString, strlen($sPrefix));
1801 if (
getParam(
'enable_member_store_ip') !=
'on') {
1805 $sCurLongIP = sprintf(
"%u", ip2long($sIP ? $sIP :
getVisitorIP()));
1807 return db_res(
"INSERT INTO `sys_ip_members_visits` SET `MemberID` = " . (
int)
$iMemberId .
", `From` = '" . $sCurLongIP .
"', `DateTime` = NOW()");
1812 $sLongIP =
db_value(
"SELECT `From` FROM `sys_ip_members_visits` WHERE `MemberID` = " . (
int)
$iMemberId .
" ORDER BY `DateTime` DESC");
1814 return long2ip($sLongIP);
1822 header(
'HTTP/1.0 503 Service Unavailable',
true, 503);
1823 header(
'Retry-After: 600');
1824 echo
$sMsg ?
$sMsg :
'Service temporarily unavailable';
1830 $sDirName =
ch_ltrim_str($sDirName, CH_DIRECTORY_PATH_ROOT);
1831 $aDirs = explode(
'/', $sDirName);
1833 foreach ($aDirs
as $sPart) {
1834 $sDir .= $sPart .
'/';
1835 if (!is_dir(CH_DIRECTORY_PATH_ROOT . $sDir) && strlen(CH_DIRECTORY_PATH_ROOT . $sDir) > 0 && !file_exists(CH_DIRECTORY_PATH_ROOT . $sDir)) {
1836 if (!mkdir(CH_DIRECTORY_PATH_ROOT . $sDir, $rights)) {
1850 return 0 === strncmp(
'https',
$sUrl, 5) ?
'https' :
'http';
1860 function ch_linkify($text, $sAttrs =
'', $bHtmlSpecialChars =
false)
1862 if ($bHtmlSpecialChars) {
1863 $text = htmlspecialchars($text, ENT_NOQUOTES,
'UTF-8');
1866 preg_match_all(
CH_URL_RE, $text, $matches, PREG_OFFSET_CAPTURE);
1868 $matches = $matches[0];
1870 if ($i = count($matches)) {
1871 $bAddNofollow =
getParam(
'sys_antispam_add_nofollow') ==
'on';
1875 $url = $matches[$i][0];
1876 if (!preg_match(
'@^https?://@',
$url)) {
1880 if (strncmp(CH_WSB_URL_ROOT,
$url, strlen(CH_WSB_URL_ROOT)) !== 0) {
1881 if (
false === stripos($sAttrs,
'target="_blank"'))
1882 $sAttrs .=
' target="_blank" ';
1883 if ($bAddNofollow &&
false === stripos($sAttrs,
'rel="nofollow"'))
1884 $sAttrs .=
' rel="nofollow" ';
1887 $text = substr_replace($text,
'<a ' . $sAttrs .
' href="' .
$url .
'">' . $matches[$i][0] .
'</a>',
1888 $matches[$i][1], strlen($matches[$i][0]));
1903 if (!trim($sHtmlOrig)) {
1907 $sId =
'ch-linkify-' . md5(microtime());
1908 $dom =
new DOMDocument();
1909 @$dom->loadHTML(
'<?xml encoding="UTF-8"><div id="' .
$sId .
'">' . $sHtmlOrig .
'</div>');
1910 $xpath =
new DOMXpath($dom);
1912 foreach ($xpath->query(
'//text()')
as $text) {
1913 $frag = $dom->createDocumentFragment();
1914 $frag->appendXML(
ch_linkify($text->nodeValue, $sAttrs,
true));
1915 $text->parentNode->replaceChild($frag, $text);
1918 if (version_compare(PHP_VERSION,
'5.3.6') >= 0) {
1919 $s = $dom->saveHTML($dom->getElementById(
$sId));
1921 $s = $dom->saveXML($dom->getElementById(
$sId), LIBXML_NOEMPTYTAG);
1929 if (
false !== (
$iPos = mb_strpos(
$s,
'<html><body>')) &&
$iPos < mb_strpos(
$s,
$sId)) {
1933 return mb_substr(
$s, 54, -6);
1944 return str_replace(
' ',
'', ucwords(str_replace($sWordsDelimiter,
' ',
$s)));
1956 return (!isset($_POST[$sField])) ?
null : $_POST[$sField];
1972 $iFound = stripos($sData,
'<iframe');
1973 if($iFound ===
false)
return $sData;
1976 $pattern =
'/(<div class="video-responsive">(<iframe.*(youtube\.com|youtu\.be|youtube-nocookie\.com).*iframe>)<\/div>)/i';
1977 $replacement =
'$2';
1978 $sData = preg_replace($pattern, $replacement, $sData);
1981 $pattern =
'/(<iframe.*(youtube\.com|youtu\.be|youtube-nocookie\.com).*iframe>)/i';
1982 $replacement =
'<div class="video-responsive">$1</div>';
1983 $sData = preg_replace($pattern, $replacement, $sData);
1990 if (strtoupper(substr(PHP_OS, 0, 3)) ===
'WIN') {
2000 if (strtoupper(substr(PHP_OS, 0, 3)) ===
'WIN') {
2001 $sFfprobePath =
$GLOBALS[
'dir'][
'plugins'] .
'ffmpeg/ffprobe.exe';
2003 $sFfprobePath =
$GLOBALS[
'dir'][
'plugins'] .
'ffmpeg/ffprobe';
2005 return $sFfprobePath;
2009 $oHandle = popen(
getFfprobePath() .
' -v quiet -print_format json -show_format -show_streams ' .
$sFile .
' 2>&1',
'r');
2011 while (!feof($oHandle)) {
2012 $sVideoData .= fread($oHandle, 4096);
2015 $aVideoData = json_decode($sVideoData,
true);
2016 $sCodecName = $aVideoData[
'streams'][0][
'codec_name'];
2017 $sVideoWidth = $aVideoData[
'streams'][0][
'width'];
2018 $sVideoHeight = $aVideoData[
'streams'][0][
'height'];
2019 $sAvgFrameRate = $aVideoData[
'streams'][0][
'avg_frame_rate'];
2020 $sDurationTs = $aVideoData[
'streams'][0][
'duration_ts'];
2021 $sDuration = $aVideoData[
'streams'][0][
'duration'];
2022 $sBitRate = $aVideoData[
'streams'][0][
'bit_rate'];
2023 return array(
'CodecName' => $sCodecName,
'VideoWidth' => $sVideoWidth,
'VideoHeight' => $sVideoHeight,
'AvgFrameRate' => $sAvgFrameRate,
'DurationTs' => $sDurationTs,
'Duration' => $sDuration,
'BitRate' => $sBitRate);
2027 $oHandle = popen(
getFfprobePath() .
' -v quiet -print_format json -show_format -show_streams ' .
$sFile .
' 2>&1',
'r');
2029 while (!feof($oHandle)) {
2030 $sAudioData .= fread($oHandle, 4096);
2033 $aAudioData = json_decode($sAudioData,
true);
2034 file_put_contents(
$GLOBALS[
'dir'][
'tmp'] .
'test.dat', print_r($aAudioData,
true), FILE_APPEND) .
"\r\n\r\n";
2035 $sCodecName = $aAudioData[
'streams'][0][
'codec_name'];
2036 $sDurationTs = $aAudioData[
'streams'][0][
'duration_ts'];
2037 $sDuration = $aAudioData[
'streams'][0][
'duration'];
2038 $sBitRate = $aAudioData[
'streams'][0][
'bit_rate'];
2039 return array(
'CodecName' => $sCodecName,
'DurationTs' => $sDurationTs,
'Duration' => $sDuration,
'BitRate' => $sBitRate);