require_once dirname(__FILE__) . '/banana.inc.php';
-define('BANANA_FEED_VERSION', '0.1');
+define('BANANA_FEED_VERSION', '0.1.1');
class BananaFeed
{
*/
public $lastupdate = 0;
+ /** Path where the feed is stored
+ */
+ public $path = null;
+
/** Create an empty feed
*/
private function __construct()
*/
static private function filename()
{
- $file = Banana::$spool_root . '/' . Banana::$protocole->name() . '/';
- if (!is_dir($file)) {
- mkdir($file);
- }
- return $file . Banana::$protocole->filename() . '_feed';
+ return BananaSpool::getPath('feed');
}
/** Read a feed from a cache file
require_once dirname(__FILE__) . '/banana.inc.php';
-define('BANANA_SPOOL_VERSION', '0.5.12');
+define('BANANA_SPOOL_VERSION', '0.5.13');
/** Class spoolhead
* class used in thread overviews
return $spool;
}
- private static function spoolFilename($group)
+ public static function getPath($file = null)
{
- $file = Banana::$spool_root . '/' . Banana::$protocole->name() . '/';
- if (!is_dir($file)) {
- mkdir($file);
+ $path = Banana::$spool_root . '/' . Banana::$protocole->name() . '/' . Banana::$protocole->filename();
+ if (!is_dir($path)) {
+ if (file_exists($path)) {
+ @unlink($path);
+ }
+ mkdir($path, 0777, true);
}
- return $file . Banana::$protocole->filename();
+ return $path . '/' . $file;
+ }
+
+ private static function spoolFilename()
+ {
+ return BananaSpool::getPath('spool');
}
private static function &readFromFile($group)
{
$spool = null;
- $file = BananaSpool::spoolFilename($group);
+ $file = BananaSpool::spoolFilename();
if (!file_exists($file)) {
return $spool;
}
private function saveToFile()
{
- $file = BananaSpool::spoolFilename($this->group);
+ $file = BananaSpool::spoolFilename();
$this->roots = Array();
foreach($this->overview as &$msg) {