file.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?php namespace Laravel\Cache;
  2. class File extends Driver {
  3. /**
  4. * The file engine instance.
  5. *
  6. * @var Laravel\File
  7. */
  8. private $file;
  9. /**
  10. * The path to which the cache files should be written.
  11. *
  12. * @var string
  13. */
  14. private $path;
  15. /**
  16. * Create a new File cache driver instance.
  17. *
  18. * @param Laravel\File $file
  19. * @param string $path
  20. * @return void
  21. */
  22. public function __construct(\Laravel\File $file, $path)
  23. {
  24. $this->file = $file;
  25. $this->path = $path;
  26. }
  27. /**
  28. * Determine if an item exists in the cache.
  29. *
  30. * @param string $key
  31. * @return bool
  32. */
  33. public function has($key)
  34. {
  35. return ( ! is_null($this->get($key)));
  36. }
  37. /**
  38. * Retrieve an item from the cache driver.
  39. *
  40. * @param string $key
  41. * @return mixed
  42. */
  43. protected function retrieve($key)
  44. {
  45. if ( ! $this->file->exists($this->path.$key)) return null;
  46. if (time() >= substr($cache = $this->file->get($this->path.$key), 0, 10))
  47. {
  48. return $this->forget($key);
  49. }
  50. return unserialize(substr($cache, 10));
  51. }
  52. /**
  53. * Write an item to the cache for a given number of minutes.
  54. *
  55. * @param string $key
  56. * @param mixed $value
  57. * @param int $minutes
  58. * @return void
  59. */
  60. public function put($key, $value, $minutes)
  61. {
  62. $this->file->put($this->path.$key, (time() + ($minutes * 60)).serialize($value));
  63. }
  64. /**
  65. * Delete an item from the cache.
  66. *
  67. * @param string $key
  68. * @return void
  69. */
  70. public function forget($key)
  71. {
  72. $this->file->delete($this->path.$key);
  73. }
  74. }