2008-04-23 22:51:37 +02:00
< ? php
2009-06-08 20:17:33 +02:00
// Pandora FMS - http://pandorafms.com
// ==================================================
// Copyright (c) 2005-2009 Artica Soluciones Tecnologicas
// Please see http://pandorafms.org for full contribution list
2008-04-23 22:51:37 +02:00
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
2009-06-08 20:17:33 +02:00
// as published by the Free Software Foundation for version 2.
2008-04-23 22:51:37 +02:00
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
2009-06-08 20:17:33 +02:00
2008-04-23 22:51:37 +02:00
2009-03-05 18:40:40 +01:00
ini_set ( 'display_errors' , 0 ); //Don't display other errors, messes up XML
header ( " Content-Type: application/xml; charset=UTF-8 " ); //Send header before starting to output
2009-03-12 19:44:37 +01:00
2009-03-05 18:40:40 +01:00
require_once " ../../include/config.php " ;
require_once " ../../include/functions.php " ;
2008-07-25 20:37:32 +02:00
require_once " ../../include/functions_db.php " ;
2008-04-23 22:51:37 +02:00
2009-03-05 18:40:40 +01:00
function rss_error_handler ( $errno , $errstr , $errfile , $errline ) {
global $config ;
$base = 'http' . ( isset ( $_SERVER [ 'HTTPS' ]) && $_SERVER [ 'HTTPS' ] == TRUE ? 's' : '' ) . '://' . $_SERVER [ 'HTTP_HOST' ];
$url = $base . $config [ " homeurl " ];
$selfurl = $base . $_SERVER [ 'PHP_SELF' ] . '?' . $_SERVER [ 'QUERY_STRING' ];
$rss_feed = '<?xml version="1.0" encoding="utf-8" ?>' ; //' Fixes certain highlighters freaking out on the PHP closing tag
$rss_feed .= '<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">' ;
$rss_feed .= '<channel><title>Pandora RSS Feed</title><description>Latest events on Pandora</description>' ;
$rss_feed .= '<lastBuildDate>' . date ( DATE_RFC822 , 0 ) . '</lastBuildDate>' ;
$rss_feed .= '<link>' . $url . '</link>' ; //Link back to the main Pandora page
2009-03-12 19:44:37 +01:00
$rss_feed .= '<atom:link href="' . safe_input ( $selfurl ) . '" rel="self" type="application/rss+xml" />' ; //Alternative for Atom feeds. It's the same.
2009-03-05 18:40:40 +01:00
$rss_feed .= '<item><guid>' . $url . '/index.php?sec=eventos&sec2=operation/events/events</guid><title>Error creating feed</title>' ;
$rss_feed .= '<description>There was an error creating the feed: ' . $errno . ' - ' . $errstr . ' in ' . $errfile . ' on line ' . $errline . '</description>' ;
$rss_feed .= '<link>' . $url . '/index.php?sec=eventos&sec2=operation/events/events</link></item>' ;
exit ( $rss_feed ); //Exit by displaying the feed
}
set_error_handler ( 'rss_error_handler' , E_ALL ); //Errors output as RSS
2009-03-12 19:44:37 +01:00
2008-09-03 17:47:09 +02:00
$ev_group = get_parameter ( " ev_group " , 0 ); // group
$search = get_parameter ( " search " , " " ); // free search
$event_type = get_parameter ( " event_type " , '' ); // 0 all
$severity = ( int ) get_parameter ( " severity " , - 1 ); // -1 all
$status = ( int ) get_parameter ( " status " , 0 ); // -1 all, 0 only red, 1 only green
$id_agent = ( int ) get_parameter ( " id_agent " , - 1 );
$id_event = ( int ) get_parameter ( " id_event " , - 1 ); //This will allow to select only 1 event (eg. RSS)
2008-04-23 22:51:37 +02:00
2008-09-03 17:47:09 +02:00
$sql_post = " " ;
if ( $ev_group > 1 )
$sql_post .= " AND `tevento`.`id_grupo` = $ev_group " ;
if ( $status == 1 )
$sql_post .= " AND `tevento`.`estado` = 1 " ;
if ( $status == 0 )
$sql_post .= " AND `tevento`.`estado` = 0 " ;
if ( $search != " " )
2009-03-05 18:40:40 +01:00
$sql_post .= " AND `tevento`.`evento` LIKE '% $search %' " ;
2008-09-03 17:47:09 +02:00
if ( $event_type != " " )
2009-03-05 18:40:40 +01:00
$sql_post .= " AND `tevento`.`event_type` = ' $event_type ' " ;
2008-09-03 17:47:09 +02:00
if ( $severity != - 1 )
2009-03-05 18:40:40 +01:00
$sql_post .= " AND `tevento`.`criticity` >= " . $severity ;
2008-09-03 17:47:09 +02:00
if ( $id_agent != - 1 )
$sql_post .= " AND `tevento`.`id_agente` = " . $id_agent ;
if ( $id_event != - 1 )
$sql_post .= " AND id_evento = " . $id_event ;
$sql = " SELECT `tevento`.`id_evento` AS event_id,
`tagente` . `nombre` AS agent_name ,
`tevento` . `id_usuario` AS validated_by ,
`tevento` . `estado` AS validated ,
`tevento` . `evento` AS event_descr ,
`tevento` . `utimestamp` AS unix_timestamp
FROM tevento , tagente
WHERE `tevento` . `id_agente` = `tagente` . `id_agente` " . $sql_post . "
ORDER BY utimestamp DESC LIMIT 0 , 30 " ;
2008-04-23 22:51:37 +02:00
2008-09-03 17:47:09 +02:00
$result = get_db_all_rows_sql ( $sql );
2008-04-23 22:51:37 +02:00
2009-03-05 18:40:40 +01:00
$base = 'http' . ( isset ( $_SERVER [ 'HTTPS' ]) && $_SERVER [ 'HTTPS' ] == TRUE ? 's' : '' ) . '://' . $_SERVER [ 'HTTP_HOST' ];
$url = $base . $config [ " homeurl " ];
$selfurl = $base . $_SERVER [ 'PHP_SELF' ] . '?' . $_SERVER [ 'QUERY_STRING' ];
if ( empty ( $result )) {
$lastbuild = 0 ; //Last build in 1970
} else {
$lastbuild = ( int ) $result [ 0 ][ 'unix_timestamp' ];
}
2008-04-23 22:51:37 +02:00
2009-03-12 19:44:37 +01:00
$rss_feed = '<?xml version="1.0" encoding="utf-8" ?>' ; // ' <?php ' -- Fixes highlighters thinking that the closing tag is PHP
2009-03-05 18:40:40 +01:00
$rss_feed .= '<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">' ;
2008-09-03 17:47:09 +02:00
$rss_feed .= '<channel><title>Pandora RSS Feed</title><description>Latest events on Pandora</description>' ;
2009-03-05 18:40:40 +01:00
$rss_feed .= '<lastBuildDate>' . date ( DATE_RFC822 , $lastbuild ) . '</lastBuildDate>' ; //Last build date is the last event - that way readers won't mark it as having new posts
$rss_feed .= '<link>' . $url . '</link>' ; //Link back to the main Pandora page
2009-03-12 19:44:37 +01:00
$rss_feed .= '<atom:link href="' . safe_input ( $selfurl ) . '" rel="self" type="application/rss+xml" />' ; //Alternative for Atom feeds. It's the same.
2008-04-23 22:51:37 +02:00
2009-03-05 18:40:40 +01:00
if ( empty ( $result )) {
2008-09-03 17:47:09 +02:00
$result = array ();
2009-03-12 19:44:37 +01:00
$rss_feed .= '<item><guid>' . safe_input ( $url . '/index.php?sec=eventos&sec2=operation/events/events' ) . '</guid><title>No results</title>' ;
2008-09-03 17:47:09 +02:00
$rss_feed .= '<description>There are no results. Click on the link to see all Pending events</description>' ;
2009-03-12 19:44:37 +01:00
$rss_feed .= '<link>' . safe_input ( $url . '/index.php?sec=eventos&sec2=operation/events/events' ) . '</link></item>' ;
2008-09-03 17:47:09 +02:00
}
2008-04-23 22:51:37 +02:00
2008-09-03 17:47:09 +02:00
foreach ( $result as $row ) {
2008-04-23 22:51:37 +02:00
//This is mandatory
$rss_feed .= '<item><guid>' ;
2009-03-12 19:44:37 +01:00
$rss_feed .= safe_input ( $url . " /index.php?sec=eventos&sec2=operation/events/events&id_event= " . $row [ 'event_id' ]);
2008-04-23 22:51:37 +02:00
$rss_feed .= '</guid><title>' ;
2009-11-25 15:56:51 +01:00
$rss_feed .= safe_input ( $row [ 'agent_name' ]);
2008-04-23 22:51:37 +02:00
$rss_feed .= '</title><description>' ;
2009-11-25 15:56:51 +01:00
$rss_feed .= safe_input ( $row [ 'event_descr' ]);
2008-09-03 17:47:09 +02:00
if ( $row [ 'validated' ] == 1 ) {
2009-11-25 15:56:51 +01:00
$rss_feed .= '<br /><br />Validated by ' . safe_input ( $row [ 'validated_by' ]);
2008-09-03 17:47:09 +02:00
}
2008-04-23 22:51:37 +02:00
$rss_feed .= '</description><link>' ;
2009-03-12 19:44:37 +01:00
$rss_feed .= safe_input ( $url . " /index.php?sec=eventos&sec2=operation/events/events&id_event= " . $row [ " event_id " ]);
2008-04-23 22:51:37 +02:00
$rss_feed .= '</link>' ;
2008-09-03 17:47:09 +02:00
2008-04-23 22:51:37 +02:00
//The rest is optional
$rss_feed .= '<pubDate>' . date ( DATE_RFC822 , $row [ 'unix_timestamp' ]) . '</pubDate>' ;
//This is mandatory again
$rss_feed .= '</item>' ;
}
$rss_feed .= " </channel></rss> " ;
echo $rss_feed ;
2009-06-08 20:17:33 +02:00
?>