2009-02-27 14:32:50 -05:00
|
|
|
<?php
|
|
|
|
|
2009-04-14 13:02:24 -04:00
|
|
|
if ( !class_exists('SimplePie') )
|
|
|
|
require_once (ABSPATH . WPINC . '/class-simplepie.php');
|
2009-02-27 14:32:50 -05:00
|
|
|
|
2009-03-03 12:41:01 -05:00
|
|
|
class WP_Feed_Cache extends SimplePie_Cache {
|
2009-02-27 14:32:50 -05:00
|
|
|
/**
|
|
|
|
* Create a new SimplePie_Cache object
|
|
|
|
*
|
|
|
|
* @static
|
|
|
|
* @access public
|
|
|
|
*/
|
2009-03-03 12:41:01 -05:00
|
|
|
function create($location, $filename, $extension) {
|
2009-02-27 14:32:50 -05:00
|
|
|
return new WP_Feed_Cache_Transient($location, $filename, $extension);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-03 12:41:01 -05:00
|
|
|
class WP_Feed_Cache_Transient {
|
2009-02-27 14:32:50 -05:00
|
|
|
var $name;
|
2009-05-24 14:07:39 -04:00
|
|
|
var $mod_name;
|
|
|
|
var $lifetime = 43200; //Default lifetime in cache of 12 hours
|
2009-02-27 14:32:50 -05:00
|
|
|
|
2011-04-29 16:05:12 -04:00
|
|
|
function __construct($location, $filename, $extension) {
|
2009-02-27 14:32:50 -05:00
|
|
|
$this->name = 'feed_' . $filename;
|
|
|
|
$this->mod_name = 'feed_mod_' . $filename;
|
2009-08-07 13:17:40 -04:00
|
|
|
$this->lifetime = apply_filters('wp_feed_cache_transient_lifetime', $this->lifetime, $filename);
|
2009-02-27 14:32:50 -05:00
|
|
|
}
|
|
|
|
|
2009-03-03 12:41:01 -05:00
|
|
|
function save($data) {
|
|
|
|
if ( is_a($data, 'SimplePie') )
|
2009-02-27 14:32:50 -05:00
|
|
|
$data = $data->data;
|
|
|
|
|
2009-05-24 14:07:39 -04:00
|
|
|
set_transient($this->name, $data, $this->lifetime);
|
|
|
|
set_transient($this->mod_name, time(), $this->lifetime);
|
2009-02-27 14:32:50 -05:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-03-03 12:41:01 -05:00
|
|
|
function load() {
|
2009-02-27 14:32:50 -05:00
|
|
|
return get_transient($this->name);
|
|
|
|
}
|
|
|
|
|
2009-03-03 12:41:01 -05:00
|
|
|
function mtime() {
|
2009-02-27 14:32:50 -05:00
|
|
|
return get_transient($this->mod_name);
|
|
|
|
}
|
|
|
|
|
2009-03-03 12:41:01 -05:00
|
|
|
function touch() {
|
2009-05-24 14:07:39 -04:00
|
|
|
return set_transient($this->mod_name, time(), $this->lifetime);
|
2009-02-27 14:32:50 -05:00
|
|
|
}
|
|
|
|
|
2009-03-03 12:41:01 -05:00
|
|
|
function unlink() {
|
2009-02-27 14:32:50 -05:00
|
|
|
delete_transient($this->name);
|
|
|
|
delete_transient($this->mod_name);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2009-03-03 12:41:01 -05:00
|
|
|
|
|
|
|
class WP_SimplePie_File extends SimplePie_File {
|
|
|
|
|
2011-04-29 16:05:12 -04:00
|
|
|
function __construct($url, $timeout = 10, $redirects = 5, $headers = null, $useragent = null, $force_fsockopen = false) {
|
2009-03-03 12:41:01 -05:00
|
|
|
$this->url = $url;
|
|
|
|
$this->timeout = $timeout;
|
|
|
|
$this->redirects = $redirects;
|
|
|
|
$this->headers = $headers;
|
|
|
|
$this->useragent = $useragent;
|
|
|
|
|
|
|
|
$this->method = SIMPLEPIE_FILE_SOURCE_REMOTE;
|
|
|
|
|
|
|
|
if ( preg_match('/^http(s)?:\/\//i', $url) ) {
|
|
|
|
$args = array( 'timeout' => $this->timeout, 'redirection' => $this->redirects);
|
|
|
|
|
|
|
|
if ( !empty($this->headers) )
|
|
|
|
$args['headers'] = $this->headers;
|
|
|
|
|
|
|
|
if ( SIMPLEPIE_USERAGENT != $this->useragent ) //Use default WP user agent unless custom has been specified
|
|
|
|
$args['user-agent'] = $this->useragent;
|
|
|
|
|
|
|
|
$res = wp_remote_request($url, $args);
|
|
|
|
|
|
|
|
if ( is_wp_error($res) ) {
|
|
|
|
$this->error = 'WP HTTP Error: ' . $res->get_error_message();
|
|
|
|
$this->success = false;
|
|
|
|
} else {
|
2011-05-14 15:45:07 -04:00
|
|
|
$this->headers = wp_remote_retrieve_headers( $res );
|
|
|
|
$this->body = wp_remote_retrieve_body( $res );
|
|
|
|
$this->status_code = wp_remote_retrieve_response_code( $res );
|
2009-03-03 12:41:01 -05:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if ( ! $this->body = file_get_contents($url) ) {
|
|
|
|
$this->error = 'file_get_contents could not read the file';
|
|
|
|
$this->success = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-05-14 15:45:07 -04:00
|
|
|
}
|