]> git.wh0rd.org - tt-rss.git/blame - lib/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php
remove Archived articles from Uncategorized view
[tt-rss.git] / lib / htmlpurifier / library / HTMLPurifier / URIFilter / HostBlacklist.php
CommitLineData
f45a286b
AD
1<?php
2
dd205fba
MK
3// It's not clear to me whether or not Punycode means that hostnames
4// do not have canonical forms anymore. As far as I can tell, it's
5// not a problem (punycoding should be identity when no Unicode
6// points are involved), but I'm not 100% sure
f45a286b
AD
7class HTMLPurifier_URIFilter_HostBlacklist extends HTMLPurifier_URIFilter
8{
9 public $name = 'HostBlacklist';
10 protected $blacklist = array();
11 public function prepare($config) {
f4f0f80d 12 $this->blacklist = $config->get('URI.HostBlacklist');
f45a286b
AD
13 return true;
14 }
15 public function filter(&$uri, $config, $context) {
16 foreach($this->blacklist as $blacklisted_host_fragment) {
17 if (strpos($uri->host, $blacklisted_host_fragment) !== false) {
18 return false;
19 }
20 }
21 return true;
22 }
23}
24
25// vim: et sw=4 sts=4