8 require_once(
'header.inc.php' );
9 require_once( CH_DIRECTORY_PATH_INC .
'design.inc.php' );
10 require_once( CH_DIRECTORY_PATH_INC .
'images.inc.php' );
11 require_once( CH_DIRECTORY_PATH_INC .
'params.inc.php' );
12 require_once( CH_DIRECTORY_PATH_INC .
'tags.inc.php' );
15 define(
'CH_WSB_ROLE_GUEST', 0);
16 define(
'CH_WSB_ROLE_MEMBER', 1);
17 define(
'CH_WSB_ROLE_ADMIN', 2);
18 define(
'CH_WSB_ROLE_AFFILIATE', 4);
19 define(
'CH_WSB_ROLE_MODERATOR', 8);
34 return isset($_COOKIE[
'memberID']) && (!
empty(
$GLOBALS[
'logged'][
'member']) || !
empty(
$GLOBALS[
'logged'][
'admin'])) ? (
int)$_COOKIE[
'memberID'] : 0;
38 return isset($_COOKIE[
'memberPassword']) && (
$GLOBALS[
'logged'][
'member'] ||
$GLOBALS[
'logged'][
'admin']) ? $_COOKIE[
'memberPassword'] :
'';
48 if(!function_exists(
"isAdmin")) {
80 if ( $date ==
"0000-00-00" )
83 if ( strlen($date) ) {
84 $m = substr( $date, -5, 2 );
85 $d = substr( $date, -2, 2 );
88 case '01':
if ( $d <= 20 ) $sign =
"capricorn";
else $sign =
"aquarius";
90 case '02':
if ( $d <= 20 ) $sign =
"aquarius";
else $sign =
"pisces";
92 case '03':
if ( $d <= 20 ) $sign =
"pisces";
else $sign =
"aries";
94 case '04':
if ( $d <= 20 ) $sign =
"aries";
else $sign =
"taurus";
96 case '05':
if ( $d <= 20 ) $sign =
"taurus";
else $sign =
"gemini";
98 case '06':
if ( $d <= 21 ) $sign =
"gemini";
else $sign =
"cancer";
100 case '07':
if ( $d <= 22 ) $sign =
"cancer";
else $sign =
"leo";
102 case '08':
if ( $d <= 23 ) $sign =
"leo";
else $sign =
"virgo";
104 case '09':
if ( $d <= 23 ) $sign =
"virgo";
else $sign =
"libra";
106 case '10':
if ( $d <= 23 ) $sign =
"libra";
else $sign =
"scorpio";
108 case '11':
if ( $d <= 22 ) $sign =
"scorpio";
else $sign =
"sagittarius";
110 case '12':
if ( $d <= 21 ) $sign =
"sagittarius";
else $sign =
"capricorn";
112 $sIcon = $sign .
'.png';
113 return '<img src="' .
$site[
'zodiac'] . $sIcon .
'" alt="' . $sign .
'" title="' . $sign .
'" />';
119 function age( $birth_date )
121 if ( $birth_date ==
"0000-00-00" )
122 return _t(
"_uknown");
124 $bd = explode(
"-", $birth_date );
125 $age = date(
"Y") - $bd[0] - 1;
130 for ( $i = 1; $arr[$i]; $i++ ) {
131 $n = date( $arr[$i] );
134 if ( $n > $bd[$i] ) {
153 $sViewActions = $bViewActions ?
"<a onclick=\"javascript:loadHtmlInPopup('explanation_popup', '" . CH_WSB_URL_ROOT .
"explanation.php?explain=membership&type=" . $aMembership[
'ID'] .
"');\" href=\"javascript:void(0);\">" .
_t(
"_VIEW_MEMBERSHIP_ACTIONS") .
"</a>" :
"";
157 $ret .= $aMembership[
'Name'];
160 $sViewActions =
_t(
'_MEMBERSHIP_UPGRADE_FROM_STANDARD',
ChWsbService::call(
'membership',
'get_upgrade_url')) .
'<span class="sys-bullet"></span>' . $sViewActions;
162 $ret .=
'<br />' . $sViewActions;
164 $ret .=
'<font color="red">' . $aMembership[
'Name'] .
'</font>';
167 if(!is_null($aMembership[
'DateExpires']))
170 $sExpiration =
_t(
"_MEMBERSHIP_EXPIRES_NEVER");
172 $ret .=
'<br />' . $sViewActions .
'<span class="sys-bullet"></span>' . $sExpiration;
182 $bUseCacheSystem = (
getParam(
'enable_cache_system') ==
'on' ) ?
true :
false;
183 if (!$bUseCacheSystem)
return false;
185 $userID = (int)$userID;
186 $fileName = CH_DIRECTORY_PATH_CACHE .
'user' . $userID .
'.php';
187 if( file_exists($fileName) ) {
196 $bUseCacheSystem = (
getParam(
'enable_cache_system') ==
'on' ) ?
true :
false;
197 if (!$bUseCacheSystem)
return false;
199 $userID = (int)$userID;
200 $fileName = CH_DIRECTORY_PATH_CACHE .
'user' . $userID .
'.php';
205 if( isset( $aPreUser )
and is_array( $aPreUser )
and $aPreUser) {
208 $sUser .=
'$aUser[' . $userID .
'] = array();';
210 $sUser .=
'$aUser[' . $userID .
'][\'datafile\'] = true;';
213 $replaceWhat = array(
'\\',
'\'' );
214 $replaceTo = array(
'\\\\',
'\\\'' );
216 foreach( $aPreUser
as $key => $value )
217 $sUser .=
'$aUser[' . $userID .
'][\'' . $key .
'\']
' . ' =
' . '\
'' . str_replace( $replaceWhat, $replaceTo, $value ) .
'\'' .
";\n";
219 if( $file = fopen( $fileName,
"w" ) ) {
222 @chmod ($fileName, 0666);
224 @include( $fileName );
246 return $GLOBALS[
'MySQL']->getRow(
"SELECT * FROM `Profiles` WHERE `ID`= ? LIMIT 1", [$iProfileID]);
249 function getProfileInfo($iProfileID = 0, $checkActiveStatus =
false, $forceCache =
false)
257 if(!isset(
$aUser[$iProfileID]) || !is_array(
$aUser[$iProfileID]) || $forceCache) {
258 $sCacheFile = CH_DIRECTORY_PATH_CACHE .
'user' . $iProfileID .
'.php';
259 if( !file_exists( $sCacheFile ) || $forceCache ) {
265 @include( $sCacheFile );
268 if( $checkActiveStatus
and $aUser[$iProfileID][
'Status'] !=
'Active' )
271 return $aUser[$iProfileID];
284 `Profiles` ON (`Profiles`.`ID` = `sys_messages`.`Sender`)
290 NOT FIND_IN_SET('Recipient', `Trash`)
303 $sqlAdd =
"AND p.`Status`='Active'";
306 $sqlAdd =
" AND (p.`DateLastNav` > SUBDATE(NOW(), INTERVAL " . $iOnline .
" MINUTE))";
308 if (strlen($sqlWhere) > 0)
309 $sqlAdd .= $sqlWhere;
311 $sqlQuery =
"SELECT COUNT(`f`.`ID`)
313 (SELECT `ID` AS `ID` FROM `sys_friend_list` WHERE `Profile` = '{$iID}' AND `Check` = {$iFrStatus}
315 SELECT `Profile` AS `ID` FROM `sys_friend_list` WHERE `ID` = '{$iID}' AND `Check` = {$iFrStatus})
317 INNER JOIN `Profiles` AS `p` ON `p`.`ID` = `f`.`ID`
332 $sqlQuery =
"SELECT count(*) FROM `sys_friend_list` WHERE `Profile` = {$iID} AND `Check` = '0'";
335 $sqlQuery =
"SELECT count(*) FROM `sys_friend_list` as f LEFT JOIN `Profiles` as p ON p.`ID` = f.`ID` WHERE f.`Profile` = {$iID} AND f.`Check` = '0' AND p.`Status`='Active'";
355 INNER JOIN (SELECT `ID` AS `ID`, `When` FROM `sys_friend_list` WHERE `Profile` = '{$iId}' AND `Check` =1
356 UNION SELECT `Profile` AS `ID`, `When` FROM `sys_friend_list` WHERE `ID` = '{$iId}' AND `Check` =1) AS `f1`
357 ON (`f1`.`ID` = `p`.`ID`)
358 INNER JOIN (SELECT `ID` AS `ID`, `When` FROM `sys_friend_list` WHERE `Profile` = '{$iProfileId}' AND `Check` =1
359 UNION SELECT `Profile` AS `ID`, `When` FROM `sys_friend_list` WHERE `ID` = '{$iProfileId}' AND `Check` =1) AS `f2`
360 ON (`f2`.`ID` = `p`.`ID`)
369 return (
int)
db_value(
"SELECT count(*) FROM `sys_fave_list` WHERE `ID`='{$iId}' AND `Profile`='{$iProfileId}'") > 0;
381 return (
int)
db_value(
"SELECT count(*) FROM `sys_friend_list` WHERE `ID`='{$iId}' AND `Profile`='{$iProfileId}' AND `Check` = '0'") > 0;
384 function getMyFriendsEx($iID, $sWhereParam =
'', $sSortParam =
'', $sqlLimit =
'')
387 $sWhereParam =
"AND p.`Status`='Active' " . $sWhereParam;
389 switch($sSortParam) {
393 $sOrderBy =
'ORDER BY p.`DateLastNav`';
395 case 'activity_desc' :
396 case 'last_nav_desc' :
397 $sOrderBy =
'ORDER BY p.`DateLastNav` DESC';
400 $sOrderBy =
'ORDER BY p.`DateReg`';
402 case 'date_reg_desc' :
403 $sOrderBy =
'ORDER BY p.`DateReg` DESC';
406 $sOrderBy =
'ORDER BY p.`Avatar` DESC';
409 $sOrderBy =
'ORDER BY p.`Rate` DESC, p.`RateCount` DESC';
412 $sOrderBy =
'ORDER BY p.`DateLastNav` DESC';
416 $sLimit = ($sqlLimit ==
'') ?
'' : $sqlLimit;
417 $iOnlineTime = (int)
getParam(
"member_online_time" );
418 $sqlQuery =
"SELECT `p`.*, `f`.`ID`,
419 if(`DateLastNav` > SUBDATE(NOW( ), INTERVAL $iOnlineTime MINUTE ), 1, 0) AS `is_online`,
420 UNIX_TIMESTAMP(p.`DateLastLogin`) AS 'TS_DateLastLogin', UNIX_TIMESTAMP(p.`DateReg`) AS 'TS_DateReg' FROM (
421 SELECT `ID` AS `ID` FROM `sys_friend_list` WHERE `Profile` = '{$iID}' AND `Check` =1
423 SELECT `Profile` AS `ID` FROM `sys_friend_list` WHERE `ID` = '{$iID}' AND `Check` =1
425 INNER JOIN `Profiles` AS `p` ON `p`.`ID` = `f`.`ID`
426 WHERE 1 {$sWhereParam}
432 $vProfiles =
db_res($sqlQuery);
433 while ($aProfiles = $vProfiles->fetch()) {
434 $aFriends[$aProfiles[
'ID']] = array($aProfiles[
'ID'], $aProfiles[
'TS_DateLastLogin'], $aProfiles[
'TS_DateReg'], $aProfiles[
'Rate'], $aProfiles[
'DateLastNav'], $aProfiles[
'is_online']);
445 if ( !
$ID && !
empty($_COOKIE[
'memberID']) )
446 $ID = (int)$_COOKIE[
'memberID'];
463 if ( !
$ID && !
empty($_COOKIE[
'memberID']) )
464 $ID = (int)$_COOKIE[
'memberID'];
481 return $arr[
'Password'];
487 $iID = $aProfInfo[
'Couple'] > 0 && $aProfInfo[
'ID'] > $aProfInfo[
'Couple'] ? $aProfInfo[
'Couple'] : $iID;
490 if(
getParam(
'enable_modrewrite') ==
'on')
491 $sLink = rawurlencode(
getUsername($iID)) . ($sLinkAdd ?
'?' . $sLinkAdd :
'');
493 $sLink =
'profile.php?ID=' . $iID . ($sLinkAdd ?
'&' . $sLinkAdd :
'');
495 return CH_WSB_URL_ROOT . $sLink;
500 $iCCurUserID = ($iCurUserID>0) ? $iCurUserID : (
int)$_COOKIE[
'memberID'];
504 FROM `sys_admin_ban_list`
505 WHERE `ProfID`='{$iCCurUserID}'
518 $aUrl = parse_url(
$GLOBALS[
'site'][
'url']);
519 $sPath = isset($aUrl[
'path']) && !
empty($aUrl[
'path']) ? $aUrl[
'path'] :
'/';
521 $iCookieTime = $bRememberMe ?
time() + 24*60*60*30 : 0;
522 setcookie(
"memberID",
$iId, $iCookieTime, $sPath, $sHost);
523 $_COOKIE[
'memberID'] =
$iId;
524 setcookie(
"memberPassword",
$sPassword, $iCookieTime, $sPath, $sHost,
false,
true );
527 db_res(
"UPDATE `Profiles` SET `DateLastLogin`=NOW(), `DateLastNav`=NOW() WHERE `ID`='" .
$iId .
"'");
531 require_once(CH_DIRECTORY_PATH_CLASSES .
'ChWsbAlerts.php');
541 require_once(CH_DIRECTORY_PATH_CLASSES .
'ChWsbAlerts.php');
542 $oZ =
new ChWsbAlerts(
'profile',
'logout', (
int)$_COOKIE[
'memberID']);
546 $aUrl = parse_url(
$GLOBALS[
'site'][
'url']);
547 $sPath = isset($aUrl[
'path']) && !
empty($aUrl[
'path']) ? $aUrl[
'path'] :
'/';
549 setcookie(
'memberID',
'',
time() - 96 * 3600, $sPath);
550 setcookie(
'memberPassword',
'',
time() - 96 * 3600, $sPath);
552 unset($_COOKIE[
'memberID']);
553 unset($_COOKIE[
'memberPassword']);
558 if (ini_get(
'session.use_cookies')) {
559 $aParams = session_get_cookie_params();
560 setcookie(session_name(),
'',
time() - 96 * 3600,
561 $aParams[
'path'], $aParams[
'domain'],
562 $aParams[
'secure'], $aParams[
'httponly']
566 if (version_compare(PHP_VERSION,
'5.4.0') >= 0 && PHP_SESSION_ACTIVE == session_status())
575 $GLOBALS[
'MySQL']->query(
"update `sys_profile_fields` set `Min` = $iMin where `Name` = 'DateOfBirth'");
577 require_once(CH_DIRECTORY_PATH_CLASSES .
'ChWsbPFM.php');
579 $oCacher -> createCache();
589 $GLOBALS[
'MySQL']->query(
"update `sys_profile_fields` set `Max` = $iMax where `Name` = 'DateOfBirth'");
591 require_once(CH_DIRECTORY_PATH_CLASSES .
'ChWsbPFM.php');
593 $oCacher -> createCache();
613 $GLOBALS[
'oSysTemplate']->displayPageNotFound ();
618 $bPerform = $iViewedId == $iViewerId ? FALSE :
TRUE;
621 && !
$logged[
'admin'] && !
$logged[
'moderator'] && $iViewerId != $iViewedId)
625 $_page[
'header'] =
"{$site['title']} "._t(
"_Member Profile");
626 $_page[
'header_text'] =
"{$site['title']} "._t(
"_Member Profile");
630 header(
"HTTP/1.0 403 Forbidden");
643 header(
"HTTP/1.1 404 Not Found");
644 $GLOBALS[
'oSysTemplate']->displayMsg(
_t(
"_Profile NA"));
649 if (!
$logged[
'admin'] && !
$logged[
'moderator'] && $iViewerId != $iViewedId) {
651 if (!$oPrivacy->check(
'view', $iViewedId, $iViewerId)) {
654 ch_import(
'ChWsbProfilePrivatePageView');
657 $_page_cont[7][
'page_main_code'] = $oProfilePrivateView->getCode();
659 header(
"HTTP/1.0 403 Forbidden");