file.php 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <?php namespace System;
  2. class File {
  3. /**
  4. * Get the contents of a file.
  5. *
  6. * @param string $path
  7. * @return string
  8. */
  9. public static function get($path)
  10. {
  11. return file_get_contents($path);
  12. }
  13. /**
  14. * Write to a file.
  15. *
  16. * @param string $path
  17. * @param string $data
  18. * @return int
  19. */
  20. public static function put($path, $data)
  21. {
  22. return file_put_contents($path, $data, LOCK_EX);
  23. }
  24. /**
  25. * Append to a file.
  26. *
  27. * @param string $path
  28. * @param string $data
  29. * @return int
  30. */
  31. public static function append($path, $data)
  32. {
  33. return file_put_contents($path, $data, LOCK_EX | FILE_APPEND);
  34. }
  35. /**
  36. * Extract the extension from a file path.
  37. *
  38. * @param string $path
  39. * @return string
  40. */
  41. public static function extension($path)
  42. {
  43. return pathinfo($path, PATHINFO_EXTENSION);
  44. }
  45. /**
  46. * Get a file MIME type by extension.
  47. *
  48. * @param string $extension
  49. * @param string $default
  50. * @return string
  51. */
  52. public static function mime($extension, $default = 'application/octet-stream')
  53. {
  54. $mimes = Config::get('mimes');
  55. if (array_key_exists($extension, $mimes))
  56. {
  57. return (is_array($mimes[$extension])) ? $mimes[$extension][0] : $mimes[$extension];
  58. }
  59. return $default;
  60. }
  61. /**
  62. * Determine if a file is a given type.
  63. *
  64. * The Fileinfo PHP extension will be used to determine the MIME type
  65. * of the file. Any extension in the mimes configuration array may
  66. * be passed as a type.
  67. */
  68. public static function is($extension, $path)
  69. {
  70. $mimes = Config::get('mimes');
  71. if ( ! array_key_exists($extension, $mimes))
  72. {
  73. throw new \Exception("File extension [$extension] is unknown. Cannot determine file type.");
  74. }
  75. $mime = finfo_file(finfo_open(FILEINFO_MIME_TYPE), $path);
  76. return (is_array($mimes[$extension])) ? in_array($mime, $mimes[$extension]) : $mime === $mimes[$extension];
  77. }
  78. /**
  79. * Create a response that will force a file to be downloaded.
  80. *
  81. * @param string $path
  82. * @param string $name
  83. * @return Response
  84. */
  85. public static function download($path, $name = null)
  86. {
  87. if (is_null($name))
  88. {
  89. $name = basename($path);
  90. }
  91. $response = Response::make(static::get($path));
  92. $response->header('Content-Description', 'File Transfer');
  93. $response->header('Content-Type', static::mime(static::extension($path)));
  94. $response->header('Content-Disposition', 'attachment; filename="'.$name.'"');
  95. $response->header('Content-Transfer-Encoding', 'binary');
  96. $response->header('Expires', 0);
  97. $response->header('Cache-Control', 'must-revalidate, post-check=0, pre-check=0');
  98. $response->header('Pragma', 'public');
  99. $response->header('Content-Length', filesize($path));
  100. return $response;
  101. }
  102. /**
  103. * Move an uploaded file to storage.
  104. *
  105. * @param string $key
  106. * @param string $path
  107. * @return bool
  108. */
  109. public static function upload($key, $path)
  110. {
  111. return array_key_exists($key, $_FILES) ? move_uploaded_file($_FILES[$key]['tmp_name'], $path) : false;
  112. }
  113. }