Lowercase keys in strike_imdb response
authorMarius Gavrilescu <marius@ieval.ro>
Sat, 8 Aug 2015 10:29:08 +0000 (13:29 +0300)
committerMarius Gavrilescu <marius@ieval.ro>
Sat, 8 Aug 2015 10:29:08 +0000 (13:29 +0300)
lib/WebService/Strike.pm

index b985840e44ecb0639fa52ae825c9f1cf9f332168..e59707e66edabec11716a399eb77c60cf50c4da5 100644 (file)
@@ -56,7 +56,9 @@ sub strike_imdb {
        my $url = "$BASE_URL/media/imdb/?imdbid=$id";
        my $response = _ht->get($url);
        return unless $response->{success};
-       decode_json $response->{content}
+       my %imdb = %{decode_json $response->{content}};
+       $imdb{lc $_} = delete $imdb{$_} for keys %imdb; ## no critic (ProhibitUselessTopic)
+       \%imdb
 }
 
 BEGIN { *strike = \&strike_query }
@@ -88,8 +90,8 @@ WebService::Strike - Get torrent info from getstrike.net API
   say join ' ', @{$mp->file_names};
 
   my $info = strike_imdb 'tt1520211';
-  say 'IMDB ID ', $info->{imdbID}, ' is ', $info->{title}, ' (', $info->{year}, ')';
-  say 'Plot (short): ', $info->{shortPlot};
+  say 'IMDB ID ', $info->{imdbid}, ' is ', $info->{title}, ' (', $info->{year}, ')';
+  say 'Plot (short): ', $info->{shortplot};
 
 =head1 DESCRIPTION
 
@@ -129,7 +131,7 @@ For example:
 =item B<strike_imdb>(I<$imdb_id>)
 
 Get informaton about a movie from IMDB. Takes an IMDB ID and returns a
-hashef of unspecified format.
+hashref of unspecified format. All keys are lowercased.
 
 =back
 
This page took 0.01213 seconds and 4 git commands to generate.