如何在 CakePHP 中使用 Ratchet websocket shell

How to use Ratchet websocket inside CakePHP shell

我想创建一个 Websocket 并且需要从这个访问 CakePHP ORM。 我正在使用带有以下代码的 Ratchet Websocket:

<?php
use Ratchet\MessageComponentInterface;
use Ratchet\ConnectionInterface;

    // Make sure composer dependencies have been installed
    require __DIR__ . '/vendor/autoload.php';

/**
 * chat.php
 * Send any incoming messages to all connected clients (except sender)
 */
class MyChat implements MessageComponentInterface {
    protected $clients;

    public function __construct() {
        $this->clients = new \SplObjectStorage;
    }

    public function onOpen(ConnectionInterface $conn) {
        $this->clients->attach($conn);
    }

    public function onMessage(ConnectionInterface $from, $msg) {
        foreach ($this->clients as $client) {
            if ($from != $client) {
                $client->send($msg);
            }
        }
    }

    public function onClose(ConnectionInterface $conn) {
        $this->clients->detach($conn);
    }

    public function onError(ConnectionInterface $conn, \Exception $e) {
        $conn->close();
    }
}

给运行代码:

$app = new Ratchet\App('localhost', 8080);
$app->route('/chat', new MyChat);
$app->route('/echo', new Ratchet\Server\EchoServer, array('*'));
$app->run();

我需要做两件事:

  1. 我需要访问 MyChat 中的 CakePHP ORM class。
  2. 我需要在 CakePHP 任务 shell 中启动 class。

第二个很简单,但是第一个我不知道如何初始化 ORM classes 以在 MyChat class.

中抛出查询

要访问 ORM,您可以像任何其他模型 class 一样实例化模型 class 并使用它们或您需要的任何内容进行查询。

编辑

如果您要使用蛋糕 shell,您只需要使用 App::uses 导入您的模型,或者更好的是,您可以使用 'uses' 数组变量。文档中的更多信息 book.cakephp.org/2.0/en/console-and-shells.html

我已经解决了将自身传递给 MyChat 构造函数的问题,例如:

$app->route('/chat', new MyChat($this));