log.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <?php namespace System;
  2. class Log {
  3. /**
  4. * Write an info message to the log.
  5. *
  6. * @param string $message
  7. * @return void
  8. */
  9. public static function info($message)
  10. {
  11. static::write('Info', $message);
  12. }
  13. /**
  14. * Write a debug message to the log.
  15. *
  16. * @param string $message
  17. * @return void
  18. */
  19. public static function debug($message)
  20. {
  21. static::write('Debug', $message);
  22. }
  23. /**
  24. * Write an error message to the logs.
  25. *
  26. * @param string $message
  27. * @return void
  28. */
  29. public static function error($message)
  30. {
  31. static::write('Error', $message);
  32. }
  33. /**
  34. * Write a message to the logs.
  35. *
  36. * @param string $type
  37. * @param string $message
  38. * @return void
  39. */
  40. public static function write($type, $message)
  41. {
  42. // -----------------------------------------------------
  43. // Determine the yearly directory.
  44. // -----------------------------------------------------
  45. $directory = APP_PATH.'logs/'.date('Y');
  46. if ( ! is_dir($directory))
  47. {
  48. static::make_directory($directory);
  49. }
  50. // -----------------------------------------------------
  51. // Determine the monthly directory.
  52. // -----------------------------------------------------
  53. $directory .= '/'.date('m');
  54. if ( ! is_dir($directory))
  55. {
  56. static::make_directory($directory);
  57. }
  58. // -----------------------------------------------------
  59. // Determine the daily file.
  60. // -----------------------------------------------------
  61. $file = $directory.'/'.date('d').EXT;
  62. // -----------------------------------------------------
  63. // Write the message to the log.
  64. // -----------------------------------------------------
  65. file_put_contents($file, date('Y-m-d H:i:s').' '.$type.' - '.$message.PHP_EOL, LOCK_EX | FILE_APPEND);
  66. // -----------------------------------------------------
  67. // Set the log file permissions.
  68. // -----------------------------------------------------
  69. chmod($file, 0666);
  70. }
  71. /**
  72. * Create a log directory.
  73. *
  74. * @param string $directory
  75. * @return void
  76. */
  77. private static function make_directory($directory)
  78. {
  79. // -----------------------------------------------------
  80. // Create the directory.
  81. // -----------------------------------------------------
  82. mkdir($directory, 02777);
  83. // -----------------------------------------------------
  84. // Set the directory permissions.
  85. // -----------------------------------------------------
  86. chmod($directory, 02777);
  87. }
  88. }