2001-03-10 11:07:52 +00:00
<?php
2001-10-20 18:57:09 +00:00
// $Id$
2000-12-14 14:13:37 +00:00
2004-07-02 07:11:35 +00:00
/**
* @file
* System monitoring and logging for administrators.
*
* The watchdog module monitors your site and keeps a list of
* recorded events containing usage and performance data, errors,
* warnings, and similar operational information.
*
* @see watchdog().
*/
2004-05-24 18:37:50 +00:00
/**
* Implementation of hook_help().
*/
2005-11-01 10:17:34 +00:00
function watchdog_help($section) {
2003-08-19 19:59:33 +00:00
switch ($section) {
2005-11-01 10:17:34 +00:00
case 'admin/help#watchdog':
2006-05-07 00:08:36 +00:00
$output = '<p>'. t('The watchdog module monitors your system, capturing system events in a log to be reviewed by an authorized individual at a later time. This is useful for site administrators who want a quick overview of activities on their site. The logs also record the sequence of events, so it can be useful for debugging site errors.') .'</p>';
2005-11-01 10:17:34 +00:00
$output .= '<p>'. t('The watchdog log is simply a list of recorded events containing usage data, performance data, errors, warnings and operational information. Administrators should check the watchdog report on a regular basis to ensure their site is working properly.') .'</p>';
$output .= t('<p>You can</p>
<ul>
2006-08-18 12:17:00 +00:00
<li>view watchdog logs at <a href="@admin-watchdog">administer >> logs >> watchdog</a>.</li>
<li>view watchdog event logs at <a href="@admin-watchdog-events">administer >> logs >> watchdog >> events</a>.</li>
2005-11-01 10:17:34 +00:00
</ul>
2006-08-18 12:17:00 +00:00
', array('@admin-watchdog' => url('admin/logs/watchdog'), '@admin-watchdog-events' => url('admin/logs/watchdog/events')));
$output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="@watchdog">Watchdog page</a>.', array('@watchdog' => 'http://drupal.org/handbook/modules/watchdog/')) .'</p>';
2005-11-01 10:17:34 +00:00
return $output;
2006-07-31 11:25:55 +00:00
case 'admin/settings/modules#description':
2004-05-24 18:37:50 +00:00
return t('Logs and records system events.');
2005-11-01 10:17:34 +00:00
case 'admin/logs':
2006-05-07 00:08:36 +00:00
return t('<p>The watchdog module monitors your web site, capturing system events in a log to be reviewed by an authorized individual at a later time. The watchdog log is simply a list of recorded events containing usage data, performance data, errors, warnings and operational information. It is vital to check the watchdog report on a regular basis as it is often the only way to tell what is going on.</p>');
2003-08-19 19:59:33 +00:00
}
2002-06-01 21:57:29 +00:00
}
2004-04-21 13:56:38 +00:00
/**
2004-06-18 15:04:37 +00:00
* Implementation of hook_menu().
2004-04-21 13:56:38 +00:00
*/
2004-09-16 07:17:56 +00:00
function watchdog_menu($may_cache) {
2004-06-18 15:04:37 +00:00
$items = array();
2004-07-03 14:10:09 +00:00
2004-09-16 07:17:56 +00:00
if ($may_cache) {
$items[] = array('path' => 'admin/logs', 'title' => t('logs'),
2006-07-31 11:25:55 +00:00
'description' => t('View system logs and other status information.'),
'callback' => 'system_admin_menu_block_page',
'weight' => 5,
'position' => 'left');
2006-08-29 09:51:50 +00:00
$items[] = array('path' => 'admin/logs/watchdog', 'title' => t('recent log entries'),
'description' => t('View events that have recently been logged.'),
'callback' => 'watchdog_overview',
'weight' => -1);
$items[] = array('path' => 'admin/logs/page-not-found', 'title' => t("top 'page not found' errors"),
'description' => t("View 'page not found errors' (404s)."),
'callback' => 'watchdog_top',
'callback arguments' => array('page not found'));
$items[] = array('path' => 'admin/logs/access-denied', 'title' => t("top 'access denied' errors"),
'description' => t("View 'access denied' errors (403s)."),
'callback' => 'watchdog_top',
'callback arguments' => array('access denied'));
2004-11-28 12:28:35 +00:00
$items[] = array('path' => 'admin/logs/event', 'title' => t('details'),
2005-10-21 10:50:03 +00:00
'callback' => 'watchdog_event',
2004-09-16 07:17:56 +00:00
'type' => MENU_CALLBACK);
2001-06-29 22:08:57 +00:00
}
2006-08-14 07:14:50 +00:00
else {
// Add the CSS for this module
// We put this in !$may_cache so it's only added once per request
drupal_add_css(drupal_get_path('module', 'watchdog') .'/watchdog.css');
}
2004-06-18 15:04:37 +00:00
return $items;
2001-05-19 13:41:52 +00:00
}
2004-05-24 18:37:50 +00:00
/**
* Implementation of hook_cron().
*
2004-11-15 21:17:25 +00:00
* Remove expired log messages and flood control events.
2004-05-24 18:37:50 +00:00
*/
2000-12-16 08:39:01 +00:00
function watchdog_cron() {
2004-11-02 15:09:09 +00:00
db_query('DELETE FROM {watchdog} WHERE timestamp < %d', time() - variable_get('watchdog_clear', 604800));
2004-11-15 21:17:25 +00:00
db_query('DELETE FROM {flood} WHERE timestamp < %d', time() - 3600);
2000-12-16 08:39:01 +00:00
}
2000-12-14 14:13:37 +00:00
2006-03-26 19:31:00 +00:00
/**
* Implementation of hook_user().
*/
function watchdog_user($op, &$edit, &$user) {
if ($op == 'delete') {
2006-03-27 07:29:34 +00:00
db_query('UPDATE {watchdog} SET uid = 0 WHERE uid = %d', $user->uid);
2006-03-26 19:31:00 +00:00
}
}
2006-08-18 18:58:47 +00:00
function watchdog_form_overview() {
2005-01-09 09:22:40 +00:00
$icons = array(WATCHDOG_NOTICE => '',
WATCHDOG_WARNING => theme('image', 'misc/watchdog-warning.png', t('warning'), t('warning')),
WATCHDOG_ERROR => theme('image', 'misc/watchdog-error.png', t('error'), t('error')));
$classes = array(WATCHDOG_NOTICE => 'watchdog-notice', WATCHDOG_WARNING => 'watchdog-warning', WATCHDOG_ERROR => 'watchdog-error');
2004-11-28 12:28:35 +00:00
$names['all'] = t('all messages');
foreach (_watchdog_get_message_types() as $type) {
2006-08-18 12:17:00 +00:00
$names[$type] = t('!type messages', array('!type' => t($type)));
2004-11-28 12:28:35 +00:00
}
if (empty($_SESSION['watchdog_overview_filter'])) {
$_SESSION['watchdog_overview_filter'] = 'all';
}
2005-10-07 06:11:12 +00:00
$form['filter'] = array(
2005-10-11 19:44:35 +00:00
'#type' => 'select',
'#title' => t('Filter by message type'),
'#options' => $names,
'#default_value' => $_SESSION['watchdog_overview_filter']
2005-10-07 06:11:12 +00:00
);
2005-10-11 19:44:35 +00:00
$form['submit'] = array('#type' => 'submit', '#value' =>t('Filter'));
2006-08-18 18:58:47 +00:00
$form['#redirect'] = FALSE;
return $form;
}
/**
* Menu callback; displays a listing of log messages.
*/
function watchdog_overview() {
$output = drupal_get_form('watchdog_form_overview');
2004-11-28 12:28:35 +00:00
2003-08-21 15:47:50 +00:00
$header = array(
2005-01-09 09:22:40 +00:00
' ',
2004-11-28 12:28:35 +00:00
array('data' => t('Type'), 'field' => 'w.type'),
2005-08-06 00:35:38 +00:00
array('data' => t('Date'), 'field' => 'w.wid', 'sort' => 'desc'),
2004-08-19 15:41:57 +00:00
array('data' => t('Message'), 'field' => 'w.message'),
array('data' => t('User'), 'field' => 'u.name'),
2005-11-24 19:50:50 +00:00
array('data' => t('Operations'))
2003-08-21 15:47:50 +00:00
);
2006-01-05 23:35:34 +00:00
$sql = "SELECT w.*, u.name, u.uid FROM {watchdog} w INNER JOIN {users} u ON w.uid = u.uid";
$tablesort = tablesort_sql($header);
$type = $_SESSION['watchdog_overview_filter'];
if ($type != 'all') {
$result = pager_query($sql ." WHERE w.type = '%s'". $tablesort, 50, 0, NULL, $type);
}
else {
$result = pager_query($sql . $tablesort, 50);
}
2001-01-26 13:38:46 +00:00
2000-12-14 14:13:37 +00:00
while ($watchdog = db_fetch_object($result)) {
2004-09-14 20:01:00 +00:00
$rows[] = array('data' =>
array(
// Cells
2005-01-09 09:22:40 +00:00
$icons[$watchdog->severity],
2005-01-22 09:38:48 +00:00
t($watchdog->type),
2004-09-14 20:01:00 +00:00
format_date($watchdog->timestamp, 'small'),
2006-01-26 08:42:18 +00:00
l(truncate_utf8($watchdog->message, 56, TRUE, TRUE), 'admin/logs/event/'. $watchdog->wid, array(), NULL, NULL, FALSE, TRUE),
2005-08-01 05:14:05 +00:00
theme('username', $watchdog),
2004-09-14 20:01:00 +00:00
$watchdog->link,
),
// Attributes for tr
2005-01-09 09:22:40 +00:00
'class' => "watchdog-". preg_replace('/[^a-z]/i', '-', $watchdog->type) .' '. $classes[$watchdog->severity]
2003-12-03 15:00:02 +00:00
);
2000-12-14 14:13:37 +00:00
}
2002-12-29 18:31:46 +00:00
2003-08-21 15:47:50 +00:00
if (!$rows) {
2005-11-24 19:50:50 +00:00
$rows[] = array(array('data' => t('No log messages available.'), 'colspan' => 6));
2003-08-21 15:47:50 +00:00
}
2003-10-02 08:35:33 +00:00
2004-11-28 12:28:35 +00:00
$output .= theme('table', $header, $rows);
2006-04-13 08:25:27 +00:00
$output .= theme('pager', NULL, 50, 0);
2004-11-28 12:28:35 +00:00
2006-08-29 09:51:50 +00:00
return $output;
}
/**
* Menu callback; generic function to display a page of the most frequent
* watchdog events of a specified type.
*/
function watchdog_top($type) {
$header = array(
array('data' => t('Count'), 'field' => 'count', 'sort' => 'desc'),
array('data' => t('Message'), 'field' => 'message')
);
$result = pager_query("SELECT COUNT(wid) AS count, message FROM {watchdog} WHERE type = '%s' GROUP BY message ". tablesort_sql($header), 30, 0, "SELECT COUNT(DISTINCT(message)) FROM {watchdog} WHERE type = '%s'", $type);
while ($watchdog = db_fetch_object($result)) {
$rows[] = array($watchdog->count, truncate_utf8($watchdog->message, 56, TRUE, TRUE));
}
if (!$rows) {
$rows[] = array(array('data' => t('No log messages available.'), 'colspan' => 2));
}
$output = theme('table', $header, $rows);
$output .= theme('pager', NULL, 30, 0);
2005-04-24 16:34:36 +00:00
return $output;
2000-12-14 14:13:37 +00:00
}
2005-10-07 06:11:12 +00:00
function theme_watchdog_form_overview($form) {
2006-08-10 15:42:33 +00:00
return '<div class="container-inline">'. drupal_render($form) .'</div>';
2005-10-07 06:11:12 +00:00
}
2005-12-02 15:21:01 +00:00
function watchdog_form_overview_submit($form_id, $form) {
2005-10-07 06:11:12 +00:00
global $form_values;
$_SESSION['watchdog_overview_filter'] = $form_values['filter'];
}
2004-05-24 18:37:50 +00:00
/**
* Menu callback; displays details about a log message.
*/
2004-11-28 12:28:35 +00:00
function watchdog_event($id) {
2005-01-09 09:22:40 +00:00
$severity = array(WATCHDOG_NOTICE => t('notice'), WATCHDOG_WARNING => t('warning'), WATCHDOG_ERROR => t('error'));
2004-05-24 18:37:50 +00:00
$output = '';
$result = db_query('SELECT w.*, u.name, u.uid FROM {watchdog} w INNER JOIN {users} u ON w.uid = u.uid WHERE w.wid = %d', $id);
2000-12-14 14:13:37 +00:00
if ($watchdog = db_fetch_object($result)) {
2006-08-23 18:16:45 +00:00
$rows = array(
array(
array('data' => t('Type'), 'header' => TRUE),
t($watchdog->type),
),
array(
array('data' => t('Date'), 'header' => TRUE),
format_date($watchdog->timestamp, 'large'),
),
array(
array('data' => t('User'), 'header' => TRUE),
theme('username', $watchdog),
),
array(
array('data' => t('Location'), 'header' => TRUE),
l($watchdog->location, $watchdog->location),
),
array(
array('data' => t('Referrer'), 'header' => TRUE),
l($watchdog->referer, $watchdog->referer),
),
array(
array('data' => t('Message'), 'header' => TRUE),
$watchdog->message,
),
array(
array('data' => t('Severity'), 'header' => TRUE),
$severity[$watchdog->severity],
),
array(
array('data' => t('Hostname'), 'header' => TRUE),
$watchdog->hostname,
),
);
$attributes = array('class' => 'watchdog-event');
$output = theme('table', array(), $rows, $attributes);
2006-01-24 08:18:26 +00:00
}
return $output;
}
2004-01-02 16:28:45 +00:00
function _watchdog_get_message_types() {
$types = array();
2005-01-09 09:22:40 +00:00
$result = db_query('SELECT DISTINCT(type) FROM {watchdog} ORDER BY type');
2004-01-02 16:28:45 +00:00
while ($object = db_fetch_object($result)) {
$types[] = $object->type;
}
return $types;
}