Go to file
Chris Boden 55243550af [WebSocket] Refactoring
Updated deps; React Socket notify client of shutdown
Separated core interfaces into many
Removed initial version support out of handshake negotiator
Moved message parser responsibility to each version
Removed __toString method from MessageInterface as to not confuse message from payload
Support for RFC control frames
Support message concatenation
[BCB] (temporary) WsConnection hard coded to RFC version
Handshake checks for \r\n\r\n anywhere, not just at end of string
2012-06-09 19:38:44 -04:00
src/Ratchet [WebSocket] Refactoring 2012-06-09 19:38:44 -04:00
tests [WebSocket] Refactoring 2012-06-09 19:38:44 -04:00
.gitignore Updated .gitignore 2012-05-20 12:57:34 -04:00
.travis.yml Updated CI conf 2012-04-16 18:39:06 -04:00
composer.json [WebSockets] Handshake encoding + case insensitivity 2012-05-19 23:42:13 -04:00
composer.lock [WebSocket] Refactoring 2012-06-09 19:38:44 -04:00
LICENSE [Info] Updated docs and licence 2012-05-09 12:31:34 -04:00
phpunit.xml.dist Guzzle changes 2012-05-08 12:46:21 -04:00
README.md [WebSockets] Handshake encoding + case insensitivity 2012-05-19 23:42:13 -04:00

Build Status

#Ratchet

A PHP 5.3 (PSR-0) library for serving WebSockets and building socket based applications. Build up your application through simple interfaces and re-use your application without changing any of its code just by combining different components.

##WebSocket Compliance

  • Supports the RFC6455, HyBi-10+, and Hixie76 protocol versions (at the same time)
  • Tested on Chrome 13 - 19, Firefox 6 - 12, Safari 5.0.1+, iOS 4.2, iOS 5

##Requirements

Shell access is required and a dedicated machine with root access is recommended. To avoid proxy/firewall blockage it's recommended WebSockets are run on port 80, which requires root access. Note that you can not run two applications (Apache and Ratchet) on the same port, thus the requirement for a separate machine (for now). PHP 5.3.2 (or higher) is required with mbstring enabled (--enable-mbstring flag during compile time). PHP5.4 is recommended for its performance improvements.

Cookies from your domain will be passed to the socket server, allowing you to identify users. Accessing your website's session data in Ratchet requires you to use Symfony2 Sessions on your website.

Documentation

User and API documentation is available on Ratchet's website: http://socketo.me

See https://github.com/cboden/Ratchet-examples for some out-of-the-box working demos using Ratchet.


###A quick server example

<?php
use Ratchet\MessageComponentInterface;
use Ratchet\ConnectionInterface;
use Ratchet\Server\IoServer;
use Ratchet\WebSocket\WsServer;

/**
 * chat.php
 * Send any incoming messages to all connected clients (except sender)
 */
class Chat 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();
    }
}

    // Run the server application through the WebSocket protocol on port 8000
    $server = IoServer::factory(new WsServer(new Chat), 8000);
    $server->run();
$ php chat.php