38 lines
689 B
PHP
38 lines
689 B
PHP
|
<?php
|
||
|
|
||
|
namespace Friendica\Content\Text;
|
||
|
|
||
|
use \HTMLPurifier_URIScheme;
|
||
|
|
||
|
/**
|
||
|
* Validates content-id ("cid") as used in multi-part MIME messages, as defined by RFC 2392
|
||
|
*/
|
||
|
class HTMLPurifier_URIScheme_cid extends HTMLPurifier_URIScheme
|
||
|
{
|
||
|
/**
|
||
|
* @type bool
|
||
|
*/
|
||
|
public $browsable = true;
|
||
|
|
||
|
/**
|
||
|
* @type bool
|
||
|
*/
|
||
|
public $may_omit_host = true;
|
||
|
|
||
|
/**
|
||
|
* @param HTMLPurifier_URI $uri
|
||
|
* @param HTMLPurifier_Config $config
|
||
|
* @param HTMLPurifier_Context $context
|
||
|
* @return bool
|
||
|
*/
|
||
|
public function doValidate(&$uri, $config, $context)
|
||
|
{
|
||
|
$uri->userinfo = null;
|
||
|
$uri->host = null;
|
||
|
$uri->port = null;
|
||
|
$uri->query = null;
|
||
|
// typecode check needed on path
|
||
|
return true;
|
||
|
}
|
||
|
}
|