Browse Source

moved cache, db, logs, and sessions to the storage directory.

Taylor Otwell 13 years ago
parent
commit
739068b00d

+ 0 - 0
application/cache/.gitignore → application/storage/cache/.gitignore


+ 0 - 0
application/db/.gitignore → application/storage/db/.gitignore


+ 0 - 0
application/logs/.gitignore → application/storage/logs/.gitignore


+ 0 - 0
application/sessions/.gitignore → application/storage/sessions/.gitignore


+ 4 - 4
system/cache/driver/file.php

@@ -34,12 +34,12 @@ class File implements \System\Cache\Driver {
 			return $this->items[$key];
 		}
 
-		if ( ! file_exists(APP_PATH.'cache/'.$key))
+		if ( ! file_exists(APP_PATH.'storage/cache/'.$key))
 		{
 			return $default;
 		}
 
-		$cache = file_get_contents(APP_PATH.'cache/'.$key);
+		$cache = file_get_contents(APP_PATH.'storage/cache/'.$key);
 
 		// --------------------------------------------------
 		// Has the cache expired? The UNIX expiration time
@@ -65,7 +65,7 @@ class File implements \System\Cache\Driver {
 	 */
 	public function put($key, $value, $minutes)
 	{
-		file_put_contents(APP_PATH.'cache/'.$key, (time() + ($minutes * 60)).serialize($value), LOCK_EX);
+		file_put_contents(APP_PATH.'storage/cache/'.$key, (time() + ($minutes * 60)).serialize($value), LOCK_EX);
 	}
 
 	/**
@@ -76,7 +76,7 @@ class File implements \System\Cache\Driver {
 	 */
 	public function forget($key)
 	{
-		@unlink(APP_PATH.'cache/'.$key);
+		@unlink(APP_PATH.'storage/cache/'.$key);
 	}
 
 }

+ 1 - 1
system/db/connector.php

@@ -33,7 +33,7 @@ class Connector {
 			// If the database doesn't exist there, maybe the full
 			// path was specified as the database name?
 			// -----------------------------------------------------
-			if (file_exists($path = APP_PATH.'db/'.$config->database.'.sqlite'))
+			if (file_exists($path = APP_PATH.'storage/db/'.$config->database.'.sqlite'))
 			{
 				return new \PDO('sqlite:'.$path, null, null, static::$options);
 			}

+ 1 - 1
system/log.php

@@ -47,7 +47,7 @@ class Log {
 		// -----------------------------------------------------
 		// Create the yearly and monthly directories if needed.
 		// -----------------------------------------------------
-		static::make_directory($directory = APP_PATH.'logs/'.date('Y'));
+		static::make_directory($directory = APP_PATH.'storage/logs/'.date('Y'));
 		static::make_directory($directory .= '/'.date('m'));
 
 		// -----------------------------------------------------

+ 4 - 4
system/session/driver/file.php

@@ -10,7 +10,7 @@ class File implements \System\Session\Driver {
 	 */
 	public function load($id)
 	{
-		if (file_exists($path = APP_PATH.'sessions/'.$id))
+		if (file_exists($path = APP_PATH.'storage/sessions/'.$id))
 		{
 			return unserialize(file_get_contents($path));
 		}
@@ -24,7 +24,7 @@ class File implements \System\Session\Driver {
 	 */
 	public function save($session)
 	{
-		file_put_contents(APP_PATH.'sessions/'.$session['id'], serialize($session), LOCK_EX);
+		file_put_contents(APP_PATH.'storage/sessions/'.$session['id'], serialize($session), LOCK_EX);
 	}
 
 	/**
@@ -35,7 +35,7 @@ class File implements \System\Session\Driver {
 	 */
 	public function delete($id)
 	{
-		@unlink(APP_PATH.'sessions/'.$id);
+		@unlink(APP_PATH.'storage/sessions/'.$id);
 	}
 
 	/**
@@ -46,7 +46,7 @@ class File implements \System\Session\Driver {
 	 */
 	public function sweep($expiration)
 	{
-		foreach (glob(APP_PATH.'sessions/*') as $file)
+		foreach (glob(APP_PATH.'storage/sessions/*') as $file)
 		{
 			if (filetype($file) == 'file' and filemtime($file) < $expiration)
 			{