X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=grml-tips;h=fc9fd39f7b27b01d733b8a0b67b3011a4d68f96d;hb=cb64196a333a23534591904a2be96469acd6dd2e;hp=49e71d20c8e33729fa19e435acfa7a27ad3f93e6;hpb=0f7d60b21a1cd14b32a84069fa942ad64ab40e8a;p=grml-tips.git diff --git a/grml-tips b/grml-tips index 49e71d2..fc9fd39 100755 --- a/grml-tips +++ b/grml-tips @@ -10,6 +10,10 @@ use strict; use Pod::Usage; +use Term::ReadKey; +use Time::HiRes; +use LWP::UserAgent; + =head1 NAME B - query a signature file for a specific keyword and display results @@ -100,8 +104,63 @@ while (my $line = <$fh>) { } close($fh); -print "Sorry, could not find a tip for '$pattern'. :-(\n" - . "If you want to submit a tip please mail it to tips\@grml.org - thank " - . "you!\n\n" unless $tip_flag; +if (!$tip_flag) { + print "Sorry, could not find a tip for '$pattern'. :-(\n\n", + "Do you want to submit the keyword '$pattern' to grml's keyword database?\n", + "The grml team will write tips for the most requested and useful keywords.\n", + "To use and contribute to this feature you'll need a working networking connection.\n", + "No personal data will be transmitted to the database.\n\n", + "Send \"$pattern\" to grml's keyword database? [y|N] "; + + ReadMode 4; # Turn off controls keys + my $x; + while (not defined ($x = ReadKey(-1))) { + Time::HiRes::sleep(0.5); + } + ReadMode 0; # Reset tty mode before exiting + print "\n\n"; + if ($x =~ /(y|j)/i) { + my $version; + if ( -f '/etc/grml_version' ) { + open (my $fh, '<', '/etc/grml_version') or die "Could not open /etc/grml_version: $!"; + $version = <$fh>; + chomp $version; + close ($fh); + } elsif ( -f '/etc/debian_version') { + open (my $fh, '<', '/etc/debian_version') or die "Could not open /etc/debian_version: $!"; + $version = <$fh>; + chomp $version; + close ($fh); + } else { + $version = 'unknown'; + } + my $ua = new LWP::UserAgent; + $ua->agent("grml-tips 0.0 "); # set the HTTP 'browser' type + my $res = + $ua->post('http://deb.grml.org/~formorer/submissions/keyword.cgi', + [ 'version' => $version, + 'keyword' => $pattern + ], + ); + if ($res->is_success) { + my $content = $res->decoded_content; + if ($content =~ /Submission received/) { + print "Keyword '$pattern' has been submitted to grml's keyword database.\nThanks.\n"; + } else { + print "Your pattern could not be submitted.\n", + "Please file a bug against grml-tips at ", + "http://bts.grml.org/\n", + "Thanks!\n"; + } + } else { + print "Could not submitt '$pattern': " . $res->status_line . "\n"; + } + + + } else { + print "'$pattern' has not been sent to grml's keyword database as requested.\n"; + print "If you want to submit a tip please mail it to tips\@grml.org - thank you!\n"; + } +} ## END OF FILE #################################################################