Acme-Insult-Evil
view release on metacpan or search on metacpan
```
You may request specific insults by passing parameters.
Expected parameters include:
- `language`
Insult's language. The default is `en`. Supported languages include: `en`, `fr`, `cn`, `ja`, `es`, etc.
On success, an insult is returned as a blessed hash reference containing the following data:
- `active`
Boolean value. If true, the insult is part of the public API.
- `comment`
This often provides contextual information about the insult's source of the insult itself.
- `created`
lib/Acme/Insult/Evil.pm view on Meta::CPAN
state $http
//= HTTP::Tiny->new( default_headers => { Accept => 'application/json' }, agent => sprintf '%s/%.2f ', __PACKAGE__, our $VERSION );
state $api //= URI->new('https://evilinsult.com/generate_insult.php');
# API accepts languages as a param named 'lang' but returns the language in a field called 'language'... why?
$api->query_form( type => 'json', ( defined $params{language} ? ( lang => delete $params{language} ) : () ), %params );
my $res = $http->get($api); # {success} is true even when advice is not found but we'll at least know when we have valid JSON
$res->{success} ? decode_json( $res->{content} ) : ();
}
#
sub insult (%args) { my $ref = _http(%args); $ref ? bless $ref, __PACKAGE__ : $ref }
}
1;
__END__
=encoding utf-8
=head1 NAME
Acme::Insult::Evil - Programmatically Generate Evil Insults
lib/Acme/Insult/Evil.pm view on Meta::CPAN
Expected parameters include:
=over
=item C<language>
Insult's language. The default is C<en>. Supported languages include: C<en>, C<fr>, C<cn>, C<ja>, C<es>, etc.
=back
On success, an insult is returned as a blessed hash reference containing the following data:
=over
=item C<active>
Boolean value. If true, the insult is part of the public API.
=item C<comment>
This often provides contextual information about the insult's source of the insult itself.
( run in 1.309 second using v1.01-cache-2.11-cpan-de7293f3b23 )