file.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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 the lines surrounding a given line in a file.
  47. *
  48. * @param string $path
  49. * @param int $line
  50. * @param int $padding
  51. * @return array
  52. */
  53. public static function snapshot($path, $line, $padding = 5)
  54. {
  55. if ( ! file_exists($path)) return array();
  56. $file = file($path, FILE_IGNORE_NEW_LINES);
  57. array_unshift($file, '');
  58. if (($start = $line - $padding) < 0) $start = 0;
  59. if (($length = ($line - $start) + $padding + 1) < 0) $length = 0;
  60. return array_slice($file, $start, $length, true);
  61. }
  62. /**
  63. * Get a file MIME type by extension.
  64. *
  65. * @param string $extension
  66. * @param string $default
  67. * @return string
  68. */
  69. public static function mime($extension, $default = 'application/octet-stream')
  70. {
  71. $mimes = Config::get('mimes');
  72. if (array_key_exists($extension, $mimes))
  73. {
  74. return (is_array($mimes[$extension])) ? $mimes[$extension][0] : $mimes[$extension];
  75. }
  76. return $default;
  77. }
  78. /**
  79. * Determine if a file is a given type.
  80. *
  81. * The Fileinfo PHP extension will be used to determine the MIME type
  82. * of the file. Any extension in the mimes configuration array may
  83. * be passed as a type.
  84. */
  85. public static function is($extension, $path)
  86. {
  87. $mimes = Config::get('mimes');
  88. if ( ! array_key_exists($extension, $mimes))
  89. {
  90. throw new \Exception("File extension [$extension] is unknown. Cannot determine file type.");
  91. }
  92. $mime = finfo_file(finfo_open(FILEINFO_MIME_TYPE), $path);
  93. return (is_array($mimes[$extension])) ? in_array($mime, $mimes[$extension]) : $mime === $mimes[$extension];
  94. }
  95. /**
  96. * Create a response that will force a file to be downloaded.
  97. *
  98. * @param string $path
  99. * @param string $name
  100. * @return Response
  101. */
  102. public static function download($path, $name = null)
  103. {
  104. if (is_null($name))
  105. {
  106. $name = basename($path);
  107. }
  108. $response = Response::make(static::get($path));
  109. $response->header('Content-Description', 'File Transfer');
  110. $response->header('Content-Type', static::mime(static::extension($path)));
  111. $response->header('Content-Disposition', 'attachment; filename="'.$name.'"');
  112. $response->header('Content-Transfer-Encoding', 'binary');
  113. $response->header('Expires', 0);
  114. $response->header('Cache-Control', 'must-revalidate, post-check=0, pre-check=0');
  115. $response->header('Pragma', 'public');
  116. $response->header('Content-Length', filesize($path));
  117. return $response;
  118. }
  119. /**
  120. * Move an uploaded file to storage.
  121. *
  122. * @param string $key
  123. * @param string $path
  124. * @return bool
  125. */
  126. public static function upload($key, $path)
  127. {
  128. return array_key_exists($key, $_FILES) ? move_uploaded_file($_FILES[$key]['tmp_name'], $path) : false;
  129. }
  130. }