zeroclickinfo-goodies/lib/DDG/Goodie/Constants.pm

54 lines
1.2 KiB
Perl
Raw Normal View History

2015-04-06 07:07:54 -07:00
package DDG::Goodie::Constants;
# ABSTRACT: Various Math and Physics constants.
use strict;
use warnings;
2015-04-06 07:07:54 -07:00
use DDG::Goodie;
use YAML::XS qw( LoadFile );
2015-04-06 07:07:54 -07:00
zci answer_type => "constants";
zci is_cached => 1;
my $constants = LoadFile(share("constants.yml"));
2015-04-06 07:07:54 -07:00
#loop through constants
foreach my $name (keys %$constants) {
#obtain to constant with name $keyword
my $constant = $constants->{$name};
2015-12-13 03:55:53 -08:00
#add aliases as separate triggers
foreach my $alias (@{$constant->{'aliases'}}) {
$constants->{$alias} = $constant;
}
}
my @triggers = keys %{$constants};
triggers startend => @triggers;
2015-04-06 07:07:54 -07:00
# Handle statement
handle query_lc => sub {
my $constant = $constants->{$_};
return unless my $val = $constant->{'value'};
2015-12-13 03:55:53 -08:00
#fallback to plain answer if html is not present
my $result = $val->{'html'} ? $val->{'html'} : $val->{'plain'};
return $val->{'plain'}, structured_answer => {
data => {
constant => $result,
subtitle => $constant->{'name'}
},
templates => {
group => 'text',
options => {
title_content => 'DDH.constants.title_content'
}
},
2016-05-14 12:21:54 -07:00
meta => {
signal => 'high'
}
};
2015-04-06 07:07:54 -07:00
};
1;