tripal.notice.api.inc 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. <?php
  2. /**
  3. * @file
  4. * Provides an application programming interface (API) for Tripal
  5. *
  6. * The Tripal API currently provides generic functionality for all Tripal
  7. * extension modules.
  8. */
  9. /**
  10. * @defgroup tripal_api Tripal API
  11. * @{
  12. * Provides an application programming interface (API) for Tripal
  13. *
  14. * The Tripal API currently provides generic functionality for all Tripal
  15. * extension modules..
  16. * @}
  17. */
  18. // Globals used by Tripals Error catching functions
  19. // Should match those defined by watchdog
  20. define('TRIPAL_CRITICAL',2);
  21. define('TRIPAL_ERROR',3);
  22. define('TRIPAL_WARNING',4);
  23. define('TRIPAL_NOTICE',5);
  24. define('TRIPAL_INFO',6);
  25. define('TRIPAL_DEBUG',7);
  26. /**
  27. * Provide better error notice for Tripal.
  28. *
  29. * If the environment variable 'TRIPAL_DEBUG' is set to 1 then this function
  30. * will add backtrace information to the message.
  31. *
  32. * @param $type
  33. * The catagory to which this message belongs. Can be any string, but the
  34. * general practice is to use the name of the module.
  35. * @param $severity
  36. * The severity of the message; one of the following values:
  37. * - TRIPAL_CRITICAL: Critical conditions.
  38. * - TRIPAL_ERROR: Error conditions.
  39. * - TRIPAL_WARNING: Warning conditions.
  40. * - TRIPAL_NOTICE: (default) Normal but significant conditions.
  41. * - TRIPAL_INFO: Informational messages.
  42. * - TRIPAL_DEBUG: Debug-level messages.
  43. * @param $message
  44. * The message to store in the log. Keep $message translatable by not
  45. * concatenating dynamic values into it! Variables in the message should be
  46. * added by using placeholder strings alongside the variables argument to
  47. * declare the value of the placeholders. See t() for documentation on how
  48. * $message and $variables interact.
  49. * @param $variables
  50. * Array of variables to replace in the message on display or NULL if message
  51. * is already translated or not possible to translate.
  52. * @param $options
  53. * An array of options. Some available options include:
  54. * - print: prints the error message to the terminal screen. Useful when
  55. * display is the command-line
  56. *
  57. * @ingroup tripal_api
  58. */
  59. function tripal_report_error($type, $severity, $message, $variables = array(), $options = array()) {
  60. // Get human-readable severity string
  61. $severity_string = '';
  62. switch ($severity) {
  63. case TRIPAL_CRITICAL:
  64. $severity_string = 'CRITICAL';
  65. break;
  66. case TRIPAL_ERROR:
  67. $severity_string = 'ERROR';
  68. break;
  69. case TRIPAL_WARNING:
  70. $severity_string = 'WARNING';
  71. break;
  72. case TRIPAL_NOTICE:
  73. $severity_string = 'NOTICE';
  74. break;
  75. case TRIPAL_INFO:
  76. $severity_string = 'INFO';
  77. break;
  78. case TRIPAL_DEBUG:
  79. $severity_string = 'DEBUG';
  80. break;
  81. }
  82. // Get the backtrace and include in the error message, but only if the
  83. // TRIPAL_DEBUG environment variable is set.
  84. if (getenv('TRIPAL_DEBUG') == 1) {
  85. $backtrace = debug_backtrace();
  86. $message .= "\nBacktrace:\n";
  87. $i = 1;
  88. for ($i = 1; $i < count($backtrace); $i++) {
  89. $function = $backtrace[$i];
  90. $message .= " $i) " . $function['function'] . "\n";
  91. }
  92. }
  93. // Send to watchdog
  94. try {
  95. watchdog($type, $message, $variables, $severity);
  96. }
  97. catch (Exception $e) {
  98. print "CRITICAL (TRIPAL): Unable to register error message with watchdog: " . $e->getMessage(). "\n.";
  99. $options['print'] = TRUE;
  100. }
  101. // Format the message for printing (either to the screen, log or both)
  102. if (sizeof($variables) > 0) {
  103. $print_message = str_replace(array_keys($variables), $variables, $message);
  104. }
  105. else {
  106. $print_message = $message;
  107. }
  108. // If print option supplied then print directly to the screen
  109. if (isset($options['print'])) {
  110. print $severity_string . ' (' . strtoupper($type) . '): ' . $print_message . "\n";
  111. }
  112. // Print to the Tripal error log
  113. tripal_log('[' . strtoupper($type) . '] ' . $print_message . "\n", $severity_string);
  114. }
  115. /**
  116. * Display messages to tripal administrators.
  117. *
  118. * This can be used instead of drupal_set_message when you want to target
  119. * tripal administrators.
  120. *
  121. * @param $message
  122. * The message to be displayed to the tripal administrators
  123. * @param $importance
  124. * The level of importance for this message. In the future this will be used to allow
  125. * administrators to filter some of these messages. It can be one of the following:
  126. * - TRIPAL_CRITICAL: Critical conditions.
  127. * - TRIPAL_ERROR: Error conditions.
  128. * - TRIPAL_WARNING: Warning conditions.
  129. * - TRIPAL_NOTICE: Normal but significant conditions.
  130. * - TRIPAL_INFO: (default) Informational messages.
  131. * - TRIPAL_DEBUG: Debug-level messages.
  132. * @param $options
  133. * Any options to apply to the current message. Supported options include:
  134. * - return_html: return HTML instead of setting a drupal message. This can be
  135. * used to place a tripal message in a particular place in the page.
  136. * The default is FALSE.
  137. */
  138. function tripal_set_message($message, $importance = TRIPAL_INFO, $options = array()) {
  139. global $user;
  140. // Only show the message to the users with 'view dev helps' permission.
  141. if (!user_access('view dev helps')) {
  142. return '';
  143. }
  144. // set defaults
  145. $options['return_html'] = (isset($options['return_html'])) ? $options['return_html'] : FALSE;
  146. // Get human-readable severity string
  147. $importance_string = '';
  148. switch ($importance) {
  149. case TRIPAL_CRITICAL:
  150. $importance_string = 'CRITICAL';
  151. break;
  152. case TRIPAL_ERROR:
  153. $importance_string = 'ERROR';
  154. break;
  155. case TRIPAL_WARNING:
  156. $importance_string = 'WARNING';
  157. break;
  158. case TRIPAL_NOTICE:
  159. $importance_string = 'NOTICE';
  160. break;
  161. case TRIPAL_INFO:
  162. $importance_string = 'INFO';
  163. break;
  164. case TRIPAL_DEBUG:
  165. $importance_string = 'DEBUG';
  166. break;
  167. }
  168. // Mark-up the Message
  169. $full_message =
  170. '<div class="tripal-site-admin-message">' .
  171. '<span class="tripal-severity-string ' . strtolower($importance_string) . '">' . $importance_string . ': </span>' .
  172. $message .
  173. '</div>';
  174. // Handle whether to return the HTML & let the caller deal with it
  175. // or to use drupal_set_message to put it near the top of the page & let the theme deal with it
  176. if ($options['return_html']) {
  177. return '<div class="messages tripal-site-admin-only">' . $full_message . '</div>';
  178. }
  179. else {
  180. drupal_set_message($full_message, 'tripal-site-admin-only');
  181. }
  182. }
  183. /**
  184. * File-based Logging for Tripal
  185. *
  186. * @param $message
  187. * The message to be logged. Need not contain date/time information
  188. * @param $log_type
  189. * The type of log. Should be one of 'error' or 'job' although other types
  190. * are supported.
  191. * @param $options
  192. * An array of options where the following keys are supported:
  193. * - first_progress_bar: this sohuld be used for the first log call for a progress bar
  194. * - is_progress_bar: this option should be used for all but the first print of a
  195. * progress bar to allow it all to be printed on the same line without intervening
  196. * date prefixes
  197. * @return
  198. * The number of bytes that were written to the file, or FALSE on failure
  199. */
  200. function tripal_log($message, $type = 'error', $options = array()) {
  201. global $base_url;
  202. $prefix = '[site ' . $base_url . '] [TRIPAL ' . strtoupper(check_plain($type)) . '] ';
  203. if (!isset($options['is_progress_bar'])) {
  204. $message = $prefix . str_replace("\n", "", trim($message));
  205. }
  206. if (isset($options['first_progress_bar'])) {
  207. $message = $prefix . trim($message);
  208. }
  209. return error_log($message);
  210. }