Thread: Integration with vBulletin - Flashchat Integration for vB 3.5
View Single Post
  #360  
Old 11-05-2005, 01:17 AM
ausnrl ausnrl is offline
 
Join Date: Oct 2005
Posts: 31
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok i did the install thing.Il copy my whole document

Code:
<?php

//	Paul M v2.51 - for vB 3.5.0 //
//  For Flashchat v4.4.1 and above only //

$vbpath = realpath(dirname(__FILE__));
require_once '/home/ausnrl/public_html/forums/includes/config.php';

class vBulletinCMS {

	var $userid;
	var $loginStmt;
	var $getUserStmt;
	var $getUsersStmt;
  
	function vBulletinCMS() 
	{
	    $this->getUserStmt =
        new Statement("SELECT userid AS id, password, salt FROM {$GLOBALS['vbulletin']['prefix']}user WHERE username=? LIMIT 1");
		$this->getUserStmt = 
		new Statement("SELECT userid AS id, username AS login, usergroupid, membergroupids FROM {$GLOBALS['vbulletin']['prefix']}user WHERE userid=? LIMIT 1");
		$this->getUsersStmt = 
		new Statement("SELECT userid AS id, username AS login, usergroupid FROM {$GLOBALS['vbulletin']['prefix']}user");
		$this->getUserForSession = 
		new Statement("SELECT userid FROM {$GLOBALS['vbulletin']['prefix']}session WHERE sessionhash=? ORDER BY lastactivity DESC LIMIT 1");
		$this->updateSessionForUser = 
		new Statement("UPDATE {$GLOBALS['vbulletin']['prefix']}session SET lastactivity=?, location='$_SERVER[REQUEST_URI]' WHERE userid=?");
		

		$this->userid = intval($_COOKIE[$GLOBALS['vbulletin']['cookie'] . 'flashuserid']);
		if($this->userid == 0)
		{ 
			$this->userid = intval($_COOKIE[$GLOBALS['vbulletin']['cookie'] . 'userid']);
			if($this->userid == 0)
			{ 
				$rs = $this->getUserForSession->process($_COOKIE[$GLOBALS['vbulletin']['cookie'] . 'sessionhash']); 
				if($rec = $rs->next()) 
				{
					$this->userid = intval($rec['userid']);
					setcookie($GLOBALS['vbulletin']['cookie'] . 'flashuserid', $this->userid);
				}
			}
			else
			{
				setcookie($GLOBALS['vbulletin']['cookie'] . 'flashuserid', $this->userid);
			}
		}
		if($_POST['t'] AND $GLOBALS['vbulletin']['sessupdate'] AND $this->userid > 0) $ru = $this->updateSessionForUser->process(time(),$this->userid);
		if($this->userid == 0) $this->userid == NULL; 
	}
  
//	Auto Login
	function isLoggedIn() 
	{
		if($this->userid > 0 AND $GLOBALS['vbulletin']['sessupdate']) $ru = $this->updateSessionForUser->process(time(),$this->userid);
		return $this->userid;
	}
  
//	Manual Login
	function login($login, $password) 
	{
		$rv = NULL;
		$login = utf8_to_entities($login);
		$rs = $this->loginStmt->process(utf8_decode($login));
		$rec = $rs->next();
		if($rs) 
		{
			$password = utf8_to_entities($password);
			if(($rec['password'] == md5(md5(utf8_decode($password)) . $rec['salt']))) $rv = $rec['id'];
		}
		if($rv > 0 AND $GLOBALS['vbulletin']['sessupdate']) $ru = $this->updateSessionForUser->process(time(),$rv);
		return $rv;
	}
  
  // performs logging out for actual user
	function logout() { }
  
	function getRoles($usergroupid) 
	{ 
		$groups = explode(',',$usergroupid); 
		$userrole = ROLE_NOBODY ; // Set default access 
		foreach ($GLOBALS['vbulletin']['users'] as $group) if (in_array($group,$groups)) $userrole = ROLE_USER; // Check Allowed groups 
		foreach ($GLOBALS['vbulletin']['mods'] as $group) if (in_array($group,$groups)) $userrole = ROLE_MODERATOR; // Check Moderator groups 
		foreach ($GLOBALS['vbulletin']['admin'] as $group) if (in_array($group,$groups)) $userrole = ROLE_ADMIN; // Check Admin groups 
		foreach ($GLOBALS['vbulletin']['banned'] as $group) if (in_array($group,$groups)) $userrole = ROLE_NOBODY; // Check Banned groups 
		return $userrole; 
	}   

	function getUser($userid) 
	{
		if(($rs = $this->getUserStmt->process($userid)) && ($rec = $rs->next())) 
		{
			$rec['usergroupid'] .= ",".$rec['membergroupids'] ; 
			$rec['roles'] = $this->getRoles($rec['usergroupid']); 
			$tagencoded = entities_to_utf8($rec['login']);
			if(strlen($rec['login']) > strlen($tagencoded)) $rec['login'] = $tagencoded;
			else $rec['login'] = utf8_encode($rec['login']);
			return $rec;
		}
		return null;
	}
  
  
  // returns an object of vBulletinUsersRS class - an iterator on all existing users/admins
	function getUsers() 
	{
		return $this->getUsersStmt->process();
	}
  
  
  // returns URL of user profile page for such user id or null if user not found
	function getUserProfile($userid) 
	{
		return ($this->userid == $userid) ? "../profile.php?do=editprofile" : "../member.php?u=$userid";
	}
  
	function userInRole($userid, $role) 
	{
		$user = $this->getUser($userid) ;
		if($role == $user['roles']) return true;
		return false;
	}
  
	function getGender($user) 
	{
		return NULL;        
	}
}

$GLOBALS['fc_config']['db'] = array(
	'base' => $config['Database']['dbname'],
	'user' => $config['MasterServer']['username'],
	'pass' => $config['MasterServer']['password'],
    'pref' => $GLOBALS['fc_config']['db']['pref'],
	'host' => $config['MasterServer']['servername'].":".$config['MasterServer']['port'],
);

$GLOBALS['vbulletin'] = array(
	'cookie' => $config['Misc']['cookieprefix'],
	'prefix' => $config['Database']['tableprefix'],

	'sessupdate' => true, // Update vB session table when user speaks.
	'users' => array( 2,9 ) , // vB usergroups allowed access to chat.
	'mods' => array( 5,7 ) , // vB usergroups allowed access as chat moderators.
	'admin' => array( 6 ) , // vB usergroups allowed access as chat administrators.
	'banned' => array( 1,8 ) , // vB usergroups banned from accessing the chat (requires updated sendLoginInfo.php to work).
);

$GLOBALS['fc_config']['cms'] = new vBulletinCMS();

//clear 'if moderator' message
foreach($GLOBALS['fc_config']['languages'] as $k => $v) 
{
	$GLOBALS['fc_config']['languages'][$k]['dialog']['login']['moderator'] = '';
}
?>
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01308 seconds
  • Memory Usage 1,799KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete