. * * @package moodle * @subpackage lib * @author Dan Poltawski * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later * * Customised version of SimplePie for Moodle */ require_once($CFG->libdir.'/filelib.php'); // PLEASE NOTE: we use the simplepie class _unmodified_ // through the joys of OO. Distros are free to use their stock // version of this file. require_once($CFG->libdir.'/simplepie/simplepie.class.php'); /** * Moodle Customised version of the SimplePie class * * This class extends the stock SimplePie class * in order to make sensible configuration choices, * such as using the Moodle cache directory and * curl functions/proxy config for making http * requests in line with moodle configuration. * * @copyright 2009 Dan Poltawski * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later * @since Moodle 2.0 */ class moodle_simplepie extends SimplePie { /** * Constructor - creates an instance of the SimplePie class * with Moodle defaults. * * @param string $feedurl optional URL of the feed */ function __construct($feedurl = null) { // Use the Moodle class for http requests $this->file_class = 'moodle_simplepie_file'; $cachedir = moodle_simplepie::get_cache_directory(); check_dir_exists($cachedir); parent::__construct(); // Match moodle encoding $this->set_output_encoding('UTF-8'); // default to a short timeout as most operations will be interactive $this->set_timeout(2); // 1 hour default cache $this->set_cache_location($cachedir); $this->set_cache_duration(3600); // init the feed url if passed in constructor if ($feedurl !== null) { $this->set_feed_url($feedurl); $this->init(); } } /** * Get path for feed cache directory * * @return string absolute path to cache directory */ private static function get_cache_directory() { global $CFG; return $CFG->cachedir.'/simplepie/'; } /** * Reset RSS cache * * @return boolean success if cache clear or didn't exist */ public static function reset_cache() { $cachedir = moodle_simplepie::get_cache_directory(); return remove_dir($cachedir); } } /** * Moodle Customised version of the SimplePie_File class * * This class extends the stock SimplePie class * in order to utilise Moodles own curl class for making * http requests. By using the moodle curl class * we ensure that the correct proxy configuration is used. */ class moodle_simplepie_file extends SimplePie_File { /** * The contructor is a copy of the stock simplepie File class which has * been modifed to add in use the Moodle curl class rather than php curl * functions. */ function moodle_simplepie_file($url, $timeout = 10, $redirects = 5, $headers = null, $useragent = null, $force_fsockopen = false) { $this->url = $url; $this->method = SIMPLEPIE_FILE_SOURCE_REMOTE | SIMPLEPIE_FILE_SOURCE_CURL; $curl = new curl(); $curl->setopt( array( 'CURLOPT_HEADER' => true, 'CURLOPT_TIMEOUT' => $timeout, 'CURLOPT_CONNECTTIMEOUT' => $timeout )); if ($headers !== null) { // translate simplepie headers to those class curl expects foreach($headers as $headername => $headervalue){ $headerstr = "{$headername}: {$headervalue}"; $curl->setHeader($headerstr); } } $this->headers = $curl->get($url); if ($curl->error) { $this->error = 'cURL Error: '.$curl->error; $this->success = false; return false; } $parser = new SimplePie_HTTP_Parser($this->headers); if ($parser->parse()) { $this->headers = $parser->headers; $this->body = $parser->body; $this->status_code = $parser->status_code; if (($this->status_code == 300 || $this->status_code == 301 || $this->status_code == 302 || $this->status_code == 303 || $this->status_code == 307 || $this->status_code > 307 && $this->status_code < 400) && isset($this->headers['location']) && $this->redirects < $redirects) { $this->redirects++; $location = SimplePie_Misc::absolutize_url($this->headers['location'], $url); return $this->moodle_simplepie_file($location, $timeout, $redirects, $headers); } } } }