2014-01-09 11:08:39 +01:00
< ? php
class Af_Comics extends Plugin {
private $host ;
2014-02-17 10:00:25 +01:00
private $filters = array ();
2014-01-09 11:08:39 +01:00
function about () {
2017-01-22 08:14:02 +01:00
return array ( 2.0 ,
2014-01-09 11:08:39 +01:00
" Fixes RSS feeds of assorted comic strips " ,
" fox " );
}
function init ( $host ) {
$this -> host = $host ;
2017-01-22 08:14:02 +01:00
$host -> add_hook ( $host :: HOOK_FETCH_FEED , $this );
2014-01-09 11:08:39 +01:00
$host -> add_hook ( $host :: HOOK_ARTICLE_FILTER , $this );
$host -> add_hook ( $host :: HOOK_PREFS_TAB , $this );
2014-02-17 10:00:25 +01:00
require_once __DIR__ . " /filter_base.php " ;
2014-01-09 11:08:39 +01:00
2014-02-17 10:00:25 +01:00
$filters = glob ( __DIR__ . " /filters/*.php " );
2014-01-09 11:08:39 +01:00
2014-02-17 10:00:25 +01:00
foreach ( $filters as $file ) {
require_once $file ;
$filter_name = preg_replace ( " / \ ..* $ / " , " " , basename ( $file ));
2014-01-09 11:08:39 +01:00
2014-02-17 10:00:25 +01:00
$filter = new $filter_name ();
2014-01-09 11:08:39 +01:00
2014-02-17 10:00:25 +01:00
if ( is_subclass_of ( $filter , " Af_ComicFilter " )) {
array_push ( $this -> filters , $filter );
2014-02-17 09:26:46 +01:00
}
}
2014-02-17 10:00:25 +01:00
}
2014-01-09 11:08:39 +01:00
2014-02-17 10:00:25 +01:00
function hook_prefs_tab ( $args ) {
if ( $args != " prefPrefs " ) return ;
2014-01-09 11:08:39 +01:00
2014-02-17 10:00:25 +01:00
print " <div dojoType= \" dijit.layout.AccordionPane \" title= \" " . __ ( 'Feeds supported by af_comics' ) . " \" > " ;
2014-01-09 11:08:39 +01:00
2014-02-17 10:00:25 +01:00
print " <p> " . __ ( " The following comics are currently supported: " ) . " </p> " ;
2014-01-09 11:08:39 +01:00
2017-01-22 08:14:02 +01:00
$comics = array ( " GoComics " );
2014-01-09 11:08:39 +01:00
2014-02-17 10:00:25 +01:00
foreach ( $this -> filters as $f ) {
foreach ( $f -> supported () as $comic ) {
array_push ( $comics , $comic );
2014-01-09 11:08:39 +01:00
}
}
2014-02-17 10:00:25 +01:00
asort ( $comics );
2014-02-14 13:44:39 +01:00
2014-02-17 10:00:25 +01:00
print " <ul class= \" browseFeedList \" style= \" border-width : 1px \" > " ;
foreach ( $comics as $comic ) {
print " <li> $comic </li> " ;
2014-01-09 11:08:39 +01:00
}
2014-02-17 10:00:25 +01:00
print " </ul> " ;
2014-01-09 11:08:39 +01:00
2017-01-22 19:52:25 +01:00
print " <p> " . __ ( 'GoComics requires a specific URL to workaround their lack of feed support: <code>http://feeds.feedburner.com/uclick/<em>comic_name</em></code> (e.g. <code>http://www.gocomics.com/garfield</code> uses <code>http://feeds.feedburner.com/uclick/garfield</code>).' ) . " </p> " ;
2014-02-17 10:00:25 +01:00
print " </div> " ;
}
2014-01-09 11:08:39 +01:00
2014-02-17 10:00:25 +01:00
function hook_article_filter ( $article ) {
$owner_uid = $article [ " owner_uid " ];
2014-01-09 11:08:39 +01:00
2014-02-17 10:00:25 +01:00
foreach ( $this -> filters as $f ) {
if ( $f -> process ( $article ))
break ;
2014-01-09 11:08:39 +01:00
}
return $article ;
2014-02-17 10:00:25 +01:00
2014-01-09 11:08:39 +01:00
}
2017-01-22 08:14:02 +01:00
// GoComics dropped feed support so it needs to be handled when fetching the feed.
function hook_fetch_feed ( $feed_data , $fetch_url , $owner_uid , $feed , $last_article_timestamp , $auth_login , $auth_pass ) {
if ( $auth_login || $auth_pass )
return $feed_data ;
if ( preg_match ( '#^https?://feeds.feedburner.com/uclick/([a-z]+)#' , $fetch_url , $comic )) {
$site_url = 'http://www.gocomics.com/' . $comic [ 1 ];
$article_link = $site_url . date ( '/Y/m/d' );
$body = fetch_file_contents ( array ( 'url' => $article_link , 'type' => 'text/html' , 'followlocation' => false ));
require_once 'lib/MiniTemplator.class.php' ;
$feed_title = htmlspecialchars ( $comic [ 1 ]);
$site_url = htmlspecialchars ( $site_url );
$article_link = htmlspecialchars ( $article_link );
$tpl = new MiniTemplator ();
$tpl -> readTemplateFromFile ( 'templates/generated_feed.txt' );
$tpl -> setVariable ( 'FEED_TITLE' , $feed_title , true );
$tpl -> setVariable ( 'VERSION' , VERSION , true );
$tpl -> setVariable ( 'FEED_URL' , htmlspecialchars ( $fetch_url ), true );
$tpl -> setVariable ( 'SELF_URL' , $site_url , true );
$tpl -> setVariable ( 'ARTICLE_UPDATED_ATOM' , date ( 'c' ), true );
$tpl -> setVariable ( 'ARTICLE_UPDATED_RFC822' , date ( DATE_RFC822 ), true );
if ( $body ) {
$doc = new DOMDocument ();
if ( @ $doc -> loadHTML ( $body )) {
$xpath = new DOMXPath ( $doc );
$node = $xpath -> query ( '//picture[contains(@class, "item-comic-image")]/img' ) -> item ( 0 );
if ( $node ) {
$tpl -> setVariable ( 'ARTICLE_ID' , $article_link , true );
$tpl -> setVariable ( 'ARTICLE_LINK' , $article_link , true );
$tpl -> setVariable ( 'ARTICLE_TITLE' , date ( 'l, F d, Y' ), true );
$tpl -> setVariable ( 'ARTICLE_EXCERPT' , '' , true );
$tpl -> setVariable ( 'ARTICLE_CONTENT' , $doc -> saveXML ( $node ), true );
$tpl -> setVariable ( 'ARTICLE_AUTHOR' , '' , true );
$tpl -> setVariable ( 'ARTICLE_SOURCE_LINK' , $site_url , true );
$tpl -> setVariable ( 'ARTICLE_SOURCE_TITLE' , $feed_title , true );
$tpl -> addBlock ( 'entry' );
}
}
}
$tpl -> addBlock ( 'feed' );
$tmp_data = '' ;
if ( $tpl -> generateOutputToString ( $tmp_data ))
$feed_data = $tmp_data ;
}
return $feed_data ;
}
2014-01-09 11:08:39 +01:00
function api_version () {
return 2 ;
}
}
?>