[TYPO3-bugs] bug tracker feature request RSS extension title

Steve Ryan stever at syntithenai.com
Thu Aug 2 19:06:03 CEST 2007


The easy answer to my question is something like to use the GET
parameter project_id as a filter.

http://bugs.typo3.org/issues_rss.php?project_id=62

Project ids are in the source of the project picklist in most pages.

Addition of category per rss item title is as easy as concatenating
$category at (line 147 - mantis/issues_rss.php)
$title = string_rss_links( bug_format_id( $row['id'] ) .
':'.$category.': ' . $t_bug->summary );
			

If anyone is inclined, it would be handy to allow multiple projects in
one feed request using the patched version of issues_rss.php below. (see
// MODS)




eg http://bugs.typo3.org/issues_rss.php?project_id=62;67;12

cheers

Steve Ryan






<?php
	# Mantis - a php based bugtracking system
	# Copyright (C) 2000 - 2002  Kenzaburo Ito - kenito at 300baud.org
	# Copyright (C) 2002 - 2004  Mantis Team   -
mantisbt-dev at lists.sourceforge.net
	# This program is distributed under the terms and conditions of the GPL
	# See the README and LICENSE files for details

	# --------------------------------------------------------
	# $Id: issues_rss.php,v 1.6 2005/07/18 13:09:36 vboctor Exp $
	# --------------------------------------------------------
?>
<?php
	#
	# GET PARAMETERS FOR THIS PAGE
	#
	# project_id: 0 - all projects, otherwise project id.
	# filter_id: The filter id to use for generating the rss.
	# sort: This parameter is ignore if filter_id is supplied and is not
equal to 0.
	#		"update": issues ordered descending by last updated date.
	#       "submit": issues ordered descending by submit date (default).

	require_once( 'core.php' );

	$t_core_path = config_get( 'core_path' );

	require_once( $t_core_path . 'class.RSSBuilder.inc.php' );
	require_once( $t_core_path . 'user_api.php' );
	require_once( $t_core_path . 'filter_api.php' );

	# only allow RSS generation of anonymous login is enabled.
	# @@@ consider adding an explicit option to enable/disable RSS syndication.
	if ( OFF == config_get( 'allow_anonymous_login' ) ) {
		//access_denied();
	}
	// MODS  allow for non integer project ids
	$f_project_id = gpc_get_string( 'project_id', ALL_PROJECTS );
	// END MODS
	$f_filter_id = gpc_get_int( 'filter_id', 0 );
	$f_sort = gpc_get_string( 'sort', 'submit' );

	if ( $f_sort === 'update' ) {
		$c_sort_field = 'last_updated';
	} else {
		$c_sort_field = 'date_submitted';
	}

	$t_path = config_get( 'path' );

	# construct rss file

	$encoding = lang_get( 'charset' );
	$about = $t_path;
	$title = string_rss_links( config_get( 'window_title' ) . ' - ' .
lang_get( 'issues' ) );
	$image_link = $t_path . 'images/mantis_logo_button.gif';

	# only rss 2.0
	$category = string_rss_links( project_get_name( $f_project_id ) );
	if ( $f_project_id !== 0 ) {
		$title .= ' - ' . $category;
	}

	if ( $f_filter_id !== 0 ) {
		$title .= ' (' . filter_get_field( $f_filter_id, 'name' ) . ')';
	}

	$description = $title;

	# in minutes (only rss 2.0)
	$cache = '10';

	$rssfile = new RSSBuilder(	$encoding, $about, $title, $description,
					$image_link, $category, $cache);

	# person, an organization, or a service
	$publisher = '';

	# person, an organization, or a service
	$creator = '';

	$date = (string) date( 'r' );
	$language = lang_get( 'phpmailer_language' );
	$rights = '';

	# spatial location , temporal period or jurisdiction
	$coverage = (string) '';

	# person, an organization, or a service
	$contributor = (string) '';

	$rssfile->setPublisher( $publisher );
	$rssfile->setCreator( $creator );
	$rssfile->setRights( $rights );
	$rssfile->setCoverage( $coverage );
	$rssfile->setContributor( $contributor );

	# hourly / daily / weekly / ...
	$period = (string) 'hourly';

	# every X hours/days/...
	$frequency = (int) 1;

	$base = (string) date( 'Y-m-d\TH:i:sO' );

	# add missing : in the O part of the date.  PHP 5 supports a 'c' format
which will output the format
	# exactly as we want it.
	# // 2002-10-02T10:00:00-0500 -> // 2002-10-02T10:00:00-05:00
	$base = substr( $base, 0, 22 ) . ':' . substr( $base, -2 );

	$rssfile->addSYdata( $period, $frequency, $base );

	$t_page_number = 1;
	$t_issues_per_page = 25;
	$t_page_count = 0;
	$t_issues_count = 0;
	$t_project_id = $f_project_id;
	$t_user_id = user_get_id_by_name( config_get( 'anonymous_account' ) );
	$t_show_sticky = null;

	if ( $f_filter_id == 0 ) {
		$t_custom_filter = filter_get_default();
		$t_custom_filter['sort'] = $c_sort_field;
	} else {
		# null will be returned if the user doesn't have access right to
access the filter.
		$t_custom_filter = filter_db_get_filter( $f_filter_id, $t_user_id );
		if ( null === $t_custom_filter ) {
			access_denied();
		}

		$t_custom_filter = filter_deserialize( $t_custom_filter );
	}

	// MODS  iterate semicolon seperated project ids
	$projects=explode(';',$t_project_id);
	foreach ($projects as $project_id) {
	// END MODS
		$t_issues = filter_get_bug_rows( $t_page_number, $t_issues_per_page,
$t_page_count, $t_issues_count,
										 $t_custom_filter, $project_id, $t_user_id, $t_show_sticky );
	
		# Loop through results
		for ( $i = 0; $i < count( $t_issues ); $i++ ) {
			$row = $t_issues[$i];
	
			$t_bug = bug_get( $row['id'], true );
	
			$about = $link = $t_path . "view.php?id=" . $row['id'];
			// MODS - add category to per rss item title
			$title = string_rss_links( bug_format_id( $row['id'] ) .
':'.$category.': ' . $t_bug->summary );
			// END MODS
			$description = string_rss_links( $t_bug->description );
	
			# subject is category.
			$subject = string_rss_links( $t_bug->category );
	
			# optional DC value
			$date = date( 'Y-m-d\TH:i:sO', $t_bug->last_updated );
	
			# author of item
			$author = string_rss_links( user_get_name( $t_bug->reporter_id ) );
			if ( access_has_global_level( config_get( 'show_user_email_threshold'
) ) ) {
				$t_author_email = user_get_field( $t_bug->reporter_id, 'email' );
				if ( is_blank( $t_author_email ) ) {
					$t_author_email = $author . '@example.com';
				}
			} else {
				$t_author_email = $author . '@example.com';
			}
			$author .= ' &lt;' . $t_author_email . '&gt;';
	
			# $comments =
'http://www.example.com/sometext.php?somevariable=somevalue&comments=1';	#
url to comment page rss 2.0 value
			$comments = $t_path . 'view.php?id=' . $row['id'] . '#bugnotes';
	
			# optional mod_im value for dispaying a different pic for every item
			$image = '';
	
			$rssfile->addItem( $about, $title, $link, $description, $subject, $date,
								$author, $comments, $image );
		}
	// MODS
	}
	// ENDS MODS
	# @@@ consider making this a configuration option.
	# 0.91 / 1.0 / 2.0
	$version = '2.0';

	$rssfile->outputRSS( $version );
?>


More information about the TYPO3-team-bugs mailing list