CometChat与laravel 5.1集成

时间:2016-08-19 00:23:30

标签: php laravel-5.1 integration cometchat

我的问题涉及将CometChat与laravel 5.1集成。

我试图在Cometchat的integration.php文件中提供对Laravel的访问权限。我想提供对Session类的访问权限,以便我可以从数据库访问会话信息(默认情况下,Cometchat使用文件会话)。 目前我已将Laravel切换为使用文件会话。

那么如何从Laravel访问会话,以便我可以在integration.php文件中访问它?

2 个答案:

答案 0 :(得分:1)

好的,我想我已经解决了。以下代码使我能够访问现有的Laravel应用程序,并且我能够访问Session甚至Sentinel。

我还添加了一个指向vendor / autoload.php的include,它现在让我可以访问QueryBuilder和其他系统。

在integration.php的顶部,我有:

// integration.php includes the laravel files to give access, it just
// didn't use it fully

$app->make('Illuminate\Contracts\Http\Kernel')->handle(Illuminate\Http\Request::capture());

$id = $app['encrypter']->decrypt($_COOKIE[$app['config']['session.cookie']]);
$app['session']->driver()->setId($id);
$app['session']->driver()->start();

这将返回当前运行的Laravel,然后我可以执行$app['session']->get('dataname')

之类的操作

虽然添加了vendor / autoload.php,我现在也可以访问DB::tableSentinel::getUser()

答案 1 :(得分:0)

请在include_once( dirname(dirname(dirname(__FILE__))).DIRECTORY_SEPARATOR.'bootstrap'.DIRECTORY_SEPARATOR.'app.php');行之后添加以下行。

include_once( dirname(dirname(dirname(__FILE__))).DIRECTORY_SEPARATOR.'app'.DIRECTORY_SEPARATOR.'Http'.DIRECTORY_SEPARATOR.'Controllers'.DIRECTORY_SEPARATOR.'Auth'.DIRECTORY_SEPARATOR.'app.php');

将integrationUserID()函数替换为integration.php文件中的以下内容,或者您​​可以从http://my.cometchat.com下载Laravel 5的CometChat包

function getUserID() {
    $userid = 0;
    if (!empty($_SESSION['basedata']) && $_SESSION['basedata'] != 'null') {
        $_REQUEST['basedata'] = $_SESSION['basedata'];
    }

    if (!empty($_REQUEST['basedata'])) {
        if (function_exists('mcrypt_encrypt') && defined('ENCRYPT_USERID') && ENCRYPT_USERID == '1') {
            $key = "";
            if( defined('KEY_A') && defined('KEY_B') && defined('KEY_C') ){
                $key = KEY_A.KEY_B.KEY_C;
            }
            $uid = rtrim(mcrypt_decrypt(MCRYPT_RIJNDAEL_256, md5($key), base64_decode(rawurldecode($_REQUEST['basedata'])), MCRYPT_MODE_CBC, md5(md5($key))), "\0");
            if (intval($uid) > 0) {
                $userid = $uid;
            }
        } else {
            $userid = $_REQUEST['basedata'];
        }
    }
    if (!empty($_COOKIE['laravel_session'])) {    
        $app = app();
        $kernel = $app->make('Illuminate\Contracts\Http\Kernel');
        $response = $kernel->handle(
            $request = Illuminate\Http\Request::capture()
            );
        $id = $app['encrypter']->decrypt($_COOKIE[$app['config']['session.cookie']]);
        $app['session']->driver()->setId($id);
        $app['session']->driver()->start();
        if($app['auth']->user()!= NULL){
            $userid = $app['auth']->user()->id;
        }
    }
    $userid = intval($userid);
    return $userid;
}