From a5bf4b4f9ae635e81d054e7f2d83b8f1d359794c Mon Sep 17 00:00:00 2001 From: Jarmo Kivekas Date: Sun, 19 Oct 2014 17:41:01 +0300 Subject: [PATCH] add hex/base64 formatting option to md5 goodie --- lib/DDG/Goodie/MD5.pm | 14 ++++++++++---- t/MD5.t | 7 +++++++ 2 files changed, 17 insertions(+), 4 deletions(-) diff --git a/lib/DDG/Goodie/MD5.pm b/lib/DDG/Goodie/MD5.pm index 6eac5629e..e89227510 100644 --- a/lib/DDG/Goodie/MD5.pm +++ b/lib/DDG/Goodie/MD5.pm @@ -10,7 +10,8 @@ zci is_cached => 1; primary_example_queries 'md5 digest this!'; secondary_example_queries 'duckduckgo md5', - 'md5sum the sum of a string'; + 'md5sum the sum of a string', + 'md5 base64 this string'; name 'MD5'; description 'Calculate the MD5 digest of a string.'; @@ -32,6 +33,9 @@ sub html_output { } handle remainder => sub { + #Remove format specifier from e.g 'md5 base64 this' + s/^(hex|base64)\s+(.*\S+)/$2/; + my $format = $1 || ''; s/^hash\s+(.*\S+)/$1/; # Remove 'hash' in queries like 'md5 hash this' s/^of\s+(.*\S+)/$1/; # Remove 'of' in queries like 'md5 hash of this' s/^"(.*)"$/$1/; # Remove quotes @@ -39,12 +43,14 @@ handle remainder => sub { # The string is encoded to get the utf8 representation instead of # perls internal representation of strings, before it's passed to # the md5 subroutine. - my $str = $1; - my $md5 = md5_hex(encode "utf8", $str); + my $str = encode("utf8",$1); + my $md5; + #use approprite output format, default to hex + $md5 = $format eq 'base64' ? md5_base64($str) : md5_hex($str); return $md5, html => html_output($str, $md5); } else { # Exit unless a string is found - return; + return; } }; diff --git a/t/MD5.t b/t/MD5.t index df8b5a6e7..d8665272e 100644 --- a/t/MD5.t +++ b/t/MD5.t @@ -22,6 +22,13 @@ ddg_goodie_test( 'md5 hash ' => test_zci('0800fc577294c34e0b28ad2839435945', html=>qr/.*/), 'md5 hash of' => test_zci('8bf8854bebe108183caeb845c7676ae4', html=>qr/.*/), 'md5 hash of password ' => test_zci('5f4dcc3b5aa765d61d8327deb882cf99', html=>qr/.*/), + 'md5 base64 duckduckgo' => test_zci('lomLuFRPpWsDwIzcCYhsbA', html=>qr/.*/), + 'md5 base64 "duckduckgo"' => test_zci('lomLuFRPpWsDwIzcCYhsbA', html=>qr/.*/), + 'md5 base64 hex' => test_zci('uNG0Pq5zWHula671dHCeyw', html=>qr/.*/), + 'md5 hex duckduckgo' => test_zci('96898bb8544fa56b03c08cdc09886c6c', html=>qr/.*/), + 'md5 hex "duckduckgo"' => test_zci('96898bb8544fa56b03c08cdc09886c6c', html=>qr/.*/), + 'md5 hex base64' => test_zci('95a1446a7120e4af5c0c8878abb7e6d2', html=>qr/.*/), + 'md5 base64 hash of duckduckgo' => test_zci('lomLuFRPpWsDwIzcCYhsbA', html=>qr/.*/), ); done_testing;