#!/usr/bin/perl -w -I../perllib # rss.cgi: # RSS for FixMyStreet # # Copyright (c) 2007 UK Citizens Online Democracy. All rights reserved. # Email: matthew@mysociety.org. WWW: http://www.mysociety.org # # $Id: rss.cgi,v 1.25 2008-09-25 12:55:07 matthew Exp $ use strict; use Error qw(:try); use Standard; use URI::Escape; use mySociety::Alert; use mySociety::MaPit; use mySociety::GeoUtil; use mySociety::Gaze; sub main { my $q = shift; my $type = $q->param('type') || ''; my $out; if ($type eq 'local_problems') { $out = rss_local_problems($q); } elsif ($type eq 'new_updates') { my $id = $q->param('id'); my $qs = 'report/' . $id; $out = mySociety::Alert::generate_rss($type, $qs, [$id]); } elsif ($type eq 'new_problems' || $type eq 'new_fixed_problems') { $out = mySociety::Alert::generate_rss($type, ''); } elsif ($type eq 'council_problems') { my $id = $q->param('id'); my $qs = '/'.$id; $out = mySociety::Alert::generate_rss($type, $qs, [$id]); } elsif ($type eq 'area_problems') { my $id = $q->param('id'); my $va_info = mySociety::MaPit::get_voting_area_info($id); my $qs = '/'.$id; $out = mySociety::Alert::generate_rss($type, $qs, [$id], { NAME => $va_info->{name} }); } elsif ($type eq 'all_problems') { $out = mySociety::Alert::generate_rss($type, ''); } else { print $q->redirect('http://www.fixmystreet.com/alert'); exit; } print $q->header( -type => 'application/xml; charset=utf-8' ); $out =~ s/FixMyStreet/EnviroCrime/g if $q->{site} eq 'scambs'; $out =~ s/matthew.fixmystreet/scambs.matthew.fixmystreet/g if $q->{site} eq 'scambs'; # XXX Temp $out =~ s/matthew.fixmystreet/emptyhomes.matthew.fixmystreet/g if $q->{site} eq 'emptyhomes'; print $out; } Page::do_fastcgi(\&main); sub rss_local_problems { my $q = shift; my $pc = $q->param('pc'); my $x = $q->param('x'); my $y = $q->param('y'); my $lat = $q->param('lat'); my $lon = $q->param('lon'); my ($e, $n); if ($lat) { # In the UK, it'll never be 0 :) ($e, $n) = mySociety::GeoUtil::wgs84_to_national_grid($lat, $lon, 'G'); $x = Page::os_to_tile($e); $y = Page::os_to_tile($n); } elsif ($x && $y) { $e = Page::tile_to_os($x); $n = Page::tile_to_os($y); ($lat, $lon) = mySociety::GeoUtil::national_grid_to_wgs84($e, $n, 'G'); } elsif ($pc) { my $error; try { ($x, $y, $e, $n, $error) = Page::geocode($pc); } catch Error::Simple with { $error = shift; }; unless ($error) { print $q->redirect(-location => "http://www.fixmystreet.com/rss/$x/$y"); } return ''; } else { die "Missing x/y, lat/lon, or postcode parameter in RSS feed"; } my $qs = "?x=$x;y=$y"; my $d = $q->param('d'); if ($d) { $qs .= ";d=$d"; $d = 100 if $d > 100; } else { $d = mySociety::Gaze::get_radius_containing_population($lat, $lon, 200000); $d = int($d*10+0.5)/10; } return mySociety::Alert::generate_rss('local_problems', $qs, [$e, $n, $d]); }