Merge branch 'refs/heads/master' into socket-server
This commit is contained in:
commit
5078aa2e4c
191
src/Ratchet/Component/Server/FlashPolicyComponent.php
Normal file
191
src/Ratchet/Component/Server/FlashPolicyComponent.php
Normal file
@ -0,0 +1,191 @@
|
|||||||
|
<?php
|
||||||
|
namespace Ratchet\Component\Server;
|
||||||
|
use Ratchet\Component\MessageComponentInterface;
|
||||||
|
use Ratchet\Resource\ConnectionInterface;
|
||||||
|
use Ratchet\Resource\Connection;
|
||||||
|
use Ratchet\Resource\Command\CommandInterface;
|
||||||
|
use Ratchet\Resource\Command\Action\SendMessage;
|
||||||
|
use Ratchet\Resource\Command\Action\CloseConnection;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* An app to go on a server stack to pass a policy file to a Flash socket
|
||||||
|
* Useful if you're using Flash as a WebSocket polyfill on IE
|
||||||
|
* Be sure to run your server instance on port 843
|
||||||
|
* By default this lets accepts everything, make sure you tighten the rules up for production
|
||||||
|
* @final
|
||||||
|
* @link http://www.adobe.com/devnet/articles/crossdomain_policy_file_spec.html
|
||||||
|
* @link http://learn.adobe.com/wiki/download/attachments/64389123/CrossDomain_PolicyFile_Specification.pdf?version=1
|
||||||
|
* @link view-source:http://www.adobe.com/xml/schemas/PolicyFileSocket.xsd
|
||||||
|
*/
|
||||||
|
class FlashPolicyComponent implements MessageComponentInterface {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Contains the root policy node
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
protected $_policy = '<?xml version="1.0"?><!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd"><cross-domain-policy></cross-domain-policy>';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Stores an array of allowed domains and their ports
|
||||||
|
* @var array
|
||||||
|
*/
|
||||||
|
protected $_access = array();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
protected $_siteControl = '';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
protected $_cache = '';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
protected $_cacheValid = false;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Add a domain to an allowed access list.
|
||||||
|
*
|
||||||
|
* @param string Specifies a requesting domain to be granted access. Both named domains and IP
|
||||||
|
* addresses are acceptable values. Subdomains are considered different domains. A wildcard (*) can
|
||||||
|
* be used to match all domains when used alone, or multiple domains (subdomains) when used as a
|
||||||
|
* prefix for an explicit, second-level domain name separated with a dot (.)
|
||||||
|
* @param string A comma-separated list of ports or range of ports that a socket connection
|
||||||
|
* is allowed to connect to. A range of ports is specified through a dash (-) between two port numbers.
|
||||||
|
* Ranges can be used with individual ports when separated with a comma. A single wildcard (*) can
|
||||||
|
* be used to allow all ports.
|
||||||
|
* @param bool
|
||||||
|
* @return FlashPolicyComponent
|
||||||
|
*/
|
||||||
|
public function addAllowedAccess($domain, $ports = '*', $secure = false) {
|
||||||
|
if (!$this->validateDomain($domain)) {
|
||||||
|
throw new \UnexpectedValueException('Invalid domain');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!$this->validatePorts($ports)) {
|
||||||
|
throw new \UnexpectedValueException('Invalid Port');
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->_access[] = array($domain, $ports, (boolean)$secure);
|
||||||
|
$this->_cacheValid = false;
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* site-control defines the meta-policy for the current domain. A meta-policy specifies acceptable
|
||||||
|
* domain policy files other than the master policy file located in the target domain's root and named
|
||||||
|
* crossdomain.xml.
|
||||||
|
*
|
||||||
|
* @param string
|
||||||
|
* @return FlashPolicyComponent
|
||||||
|
*/
|
||||||
|
public function setSiteControl($permittedCrossDomainPolicies = 'all') {
|
||||||
|
if (!$this->validateSiteControl($permittedCrossDomainPolicies)) {
|
||||||
|
throw new \UnexpectedValueException('Invalid site control set');
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->_siteControl = $permittedCrossDomainPolicies;
|
||||||
|
$this->_cacheValid = false;
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritdoc}
|
||||||
|
*/
|
||||||
|
public function onOpen(ConnectionInterface $conn) {
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritdoc}
|
||||||
|
*/
|
||||||
|
public function onMessage(ConnectionInterface $from, $msg) {
|
||||||
|
if (!$this->_cacheValid) {
|
||||||
|
$this->_cache = $this->renderPolicy()->asXML();
|
||||||
|
$this->_cacheValid = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
$cmd = new SendMessage($from);
|
||||||
|
$cmd->setMessage($this->_cache . "\0");
|
||||||
|
|
||||||
|
return $cmd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritdoc}
|
||||||
|
*/
|
||||||
|
public function onClose(ConnectionInterface $conn) {
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritdoc}
|
||||||
|
*/
|
||||||
|
public function onError(ConnectionInterface $conn, \Exception $e) {
|
||||||
|
return new CloseConnection($conn);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Builds the crossdomain file based on the template policy
|
||||||
|
*
|
||||||
|
* @return SimpleXMLElement
|
||||||
|
*/
|
||||||
|
public function renderPolicy() {
|
||||||
|
$policy = new \SimpleXMLElement($this->_policy);
|
||||||
|
|
||||||
|
$siteControl = $policy->addChild('site-control');
|
||||||
|
|
||||||
|
if ($this->_siteControl == '') {
|
||||||
|
$this->setSiteControl();
|
||||||
|
}
|
||||||
|
|
||||||
|
$siteControl->addAttribute('permitted-cross-domain-policies', $this->_siteControl);
|
||||||
|
|
||||||
|
if (empty($this->_access)) {
|
||||||
|
throw new \UnexpectedValueException('You must add a domain through addAllowedAccess()');
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach ($this->_access as $access) {
|
||||||
|
$tmp = $policy->addChild('allow-access-from');
|
||||||
|
$tmp->addAttribute('domain', $access[0]);
|
||||||
|
$tmp->addAttribute('to-ports', $access[1]);
|
||||||
|
$tmp->addAttribute('secure', ($access[2] === true) ? 'true' : 'false');
|
||||||
|
}
|
||||||
|
|
||||||
|
return $policy;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Make sure the proper site control was passed
|
||||||
|
*
|
||||||
|
* @param string
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function validateSiteControl($permittedCrossDomainPolicies) {
|
||||||
|
//'by-content-type' and 'by-ftp-filename' are not available for sockets
|
||||||
|
return (bool)in_array($permittedCrossDomainPolicies, array('none', 'master-only', 'all'));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Validate for proper domains (wildcards allowed)
|
||||||
|
*
|
||||||
|
* @param string
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function validateDomain($domain) {
|
||||||
|
return (bool)preg_match("/^((http(s)?:\/\/)?([a-z0-9-_]+\.|\*\.)*([a-z0-9-_\.]+)|\*)$/i", $domain);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Make sure valid ports were passed
|
||||||
|
*
|
||||||
|
* @param string
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function validatePorts($port) {
|
||||||
|
return (bool)preg_match('/^(\*|(\d+[,-]?)*\d+)$/', $port);
|
||||||
|
}
|
||||||
|
}
|
@ -24,8 +24,8 @@ class Hixie76 implements VersionInterface {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string
|
* @param Guzzle\Http\Message\RequestInterface
|
||||||
* @return string
|
* @return Guzzle\Http\Message\Response
|
||||||
*/
|
*/
|
||||||
public function handshake(RequestInterface $request) {
|
public function handshake(RequestInterface $request) {
|
||||||
$body = $this->sign($request->getHeader('Sec-WebSocket-Key1', true), $request->getHeader('Sec-WebSocket-Key2', true), (string)$request->getBody());
|
$body = $this->sign($request->getHeader('Sec-WebSocket-Key1', true), $request->getHeader('Sec-WebSocket-Key2', true), (string)$request->getBody());
|
||||||
|
@ -0,0 +1,111 @@
|
|||||||
|
<?php
|
||||||
|
namespace Ratchet\Tests\Application\Server;
|
||||||
|
use Ratchet\Component\Server\FlashPolicyComponent;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers Ratchet\Component\WebSocket\Version\Hixie76
|
||||||
|
*/
|
||||||
|
class FlashPolicyComponentTest extends \PHPUnit_Framework_TestCase {
|
||||||
|
|
||||||
|
protected $_policy;
|
||||||
|
|
||||||
|
public function setUp() {
|
||||||
|
$this->_policy = new FlashPolicyComponent();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testPolicyRender() {
|
||||||
|
$this->_policy->setSiteControl('all');
|
||||||
|
$this->_policy->addAllowedAccess('example.com', '*');
|
||||||
|
$this->_policy->addAllowedAccess('dev.example.com', '*');
|
||||||
|
$this->assertInstanceOf('SimpleXMLElement', $this->_policy->renderPolicy());
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testInvalidPolicyReader() {
|
||||||
|
$this->setExpectedException('UnexpectedValueException');
|
||||||
|
$this->_policy->renderPolicy();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testInvalidDomainPolicyReader() {
|
||||||
|
$this->setExpectedException('UnexpectedValueException');
|
||||||
|
$this->_policy->setSiteControl('all');
|
||||||
|
$this->_policy->addAllowedAccess('dev.example.*', '*');
|
||||||
|
$this->_policy->renderPolicy();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @dataProvider siteControl
|
||||||
|
*/
|
||||||
|
public function testSiteControlValidation($accept, $permittedCrossDomainPolicies) {
|
||||||
|
$this->assertEquals($accept, $this->_policy->validateSiteControl($permittedCrossDomainPolicies));
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function siteControl() {
|
||||||
|
return array(
|
||||||
|
array(true, 'all')
|
||||||
|
, array(true, 'none')
|
||||||
|
, array(true, 'master-only')
|
||||||
|
, array(false, 'by-content-type')
|
||||||
|
, array(false, 'by-ftp-filename')
|
||||||
|
, array(false, '')
|
||||||
|
, array(false, 'all ')
|
||||||
|
, array(false, 'asdf')
|
||||||
|
, array(false, '@893830')
|
||||||
|
, array(false, '*')
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @dataProvider URI
|
||||||
|
*/
|
||||||
|
public function testDomainValidation($accept, $domain) {
|
||||||
|
$this->assertEquals($accept, $this->_policy->validateDomain($domain));
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function URI() {
|
||||||
|
return array(
|
||||||
|
array(true, '*')
|
||||||
|
, array(true, 'example.com')
|
||||||
|
, array(true, 'exam-ple.com')
|
||||||
|
, array(true, '*.exmple.com')
|
||||||
|
, array(true, 'www.example.com')
|
||||||
|
, array(true, 'dev.dev.example.com')
|
||||||
|
, array(true, 'http://example.com')
|
||||||
|
, array(true, 'https://example.com')
|
||||||
|
, array(true, 'http://*.example.com')
|
||||||
|
, array(false, 'exam*ple.com')
|
||||||
|
, array(true, '127.0.255.1')
|
||||||
|
, array(true, 'localhost')
|
||||||
|
, array(false, 'www.example.*')
|
||||||
|
, array(false, 'www.exa*le.com')
|
||||||
|
, array(false, 'www.example.*com')
|
||||||
|
, array(false, '*.example.*')
|
||||||
|
, array(false, 'gasldf*$#a0sdf0a8sdf')
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @dataProvider ports
|
||||||
|
*/
|
||||||
|
public function testPortValidation($accept, $ports) {
|
||||||
|
$this->assertEquals($accept, $this->_policy->validatePorts($ports));
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function ports() {
|
||||||
|
return array(
|
||||||
|
array(true, '*')
|
||||||
|
, array(true, '80')
|
||||||
|
, array(true, '80,443')
|
||||||
|
, array(true, '507,516-523')
|
||||||
|
, array(true, '507,516-523,333')
|
||||||
|
, array(true, '507,516-523,507,516-523')
|
||||||
|
, array(false, '516-')
|
||||||
|
, array(true, '516-523,11')
|
||||||
|
, array(false, '516,-523,11')
|
||||||
|
, array(false, 'example')
|
||||||
|
, array(false, 'asdf,123')
|
||||||
|
, array(false, '--')
|
||||||
|
, array(false, ',,,')
|
||||||
|
, array(false, '838*')
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user