Acme-Terror-AU

 view release on metacpan or  search on metacpan

lib/Acme/Terror/AU.pm  view on Meta::CPAN

The levels are either...

 CRITICAL    - an attack is expected imminently 
 SEVERE      - an attack is likely
 SUBSTANTIAL - an attack is a strong possibility
 MODERATE    - an attack is possible but not likely
 LOW         - an attack is unlikely
 UNKNOWN     - cannot determine threat level

HOWEVER, as the government has repeatedly stated that they think
triggering various security events off a single level system would be
damage flexibiliy by oversimplifying the situation, and in any case,
why on earth should they let the terrorists see what their alert status
is.

And so this module never returns any of the above status, and instead
always returns UNKNOWN. :)

This module aims to be compatible with the US version L<Acme::Terror>
and the UK version L<Acme::Terror::UK>.

=head1 METHODS

=head2 new()

  use Acme::Terror::AU
  my $t = Acme::Terror::AU->new(); 

Create a new instance of the Acme::Terror::AU class.

=head2 fetch()

  my $threat_level_string = $t->fetch();
  print $threat_level_string;

Return the current threat level as a string.

=head2 level()

  my $level = $t->level();
  if ($level == Acme::Terror::AU::CRITICAL) {
    print "Help, we're all going to die!\n";
  }

Return the level of the current terrorist threat as a comparable value.

The values to compare against are,

  Acme::Terror::AU::CRITICAL
  Acme::Terror::AU::SEVERE
  Acme::Terror::AU::SUBSTANTIAL
  Acme::Terror::AU::MODERATE
  Acme::Terror::AU::LOW

If it can't retrieve the current level, it will return

  Acme::Terror::AU::UNKNOWN

=head1 BUGS

This module may become buggy if Australia develops a simple public and
level-based terror alert system, like the ones the US and UK have.

=head1 SEE ALSO

L<Acme::Terror>, L<Acme::Terror::UK>

=head1 AUTHOR

Adam Kennedy E<lt>adamk@cpan.orgE<gt>


=head1 COPYRIGHT AND LICENSE

Copyright (C) 2006 Adam Kennedy.

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.8.7 or,
at your option, any later version of Perl 5 you may have available.

=cut



( run in 1.753 second using v1.01-cache-2.11-cpan-140bd7fdf52 )