Fix the TFD filter and add Married to the sea

This commit is contained in:
Bill Bagdon 2017-04-08 12:59:03 -04:00
parent 78fee22415
commit 32024bdf21
1 changed files with 6 additions and 5 deletions

View File

@ -2,11 +2,12 @@
class Af_Comics_Tfd extends Af_ComicFilter {
function supported() {
return array("Toothpaste For Dinner");
return array("Toothpaste For Dinner", "Married to the Sea");
}
function process(&$article) {
if (strpos($article["link"], "toothpastefordinner.com") !== FALSE) {
if (strpos($article["link"], "toothpastefordinner.com") !== FALSE ||
strpos($article["link"], "marriedtothesea.com") !== FALSE) {
$res = fetch_file_contents($article["link"], false, false, false,
false, false, 0,
"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)");
@ -14,13 +15,13 @@ class Af_Comics_Tfd extends Af_ComicFilter {
if (!$res) return $article;
$doc = new DOMDocument();
$doc->loadHTML($res);
@$doc->loadHTML(fetch_file_contents($article["link"]));
$basenode = false;
if ($doc) {
$xpath = new DOMXPath($doc);
$basenode = $xpath->query('//img[@class="comic"]')->item(0);
$basenode = $xpath->query('//img[contains(@src, ".gif")]')->item(0);
if ($basenode) {
$article["content"] = $doc->saveXML($basenode);