]> 91.132.146.200 Git - insipid.git/commitdiff
tool to check the bookmarks
authorBanana <banana@starscream.de>
Fri, 17 Feb 2012 10:14:36 +0000 (11:14 +0100)
committerBanana <banana@starscream.de>
Fri, 17 Feb 2012 10:14:36 +0000 (11:14 +0100)
lib/Insipid/Database.pm
tools/linkcheck.pl [new file with mode: 0755]

index 28c239bb15f784fb72c2ca7657df010dd6969314..07ea2543ee52418ac24f0ee21577229f8d5cf0e4 100755 (executable)
@@ -81,8 +81,8 @@ sub dbupgrade {
        my $sth = $dbh->prepare($sql);
        $sth->execute;
 
-       my $sql = "UPDATE $tbl_options SET pos = ? where (name = ?)";
-       my $sth = $dbh->prepare($sql);
+       $sql = "UPDATE $tbl_options SET pos = ? where (name = ?)";
+       $sth = $dbh->prepare($sql);
        $sth->execute(3, 'feed_name');
        $sth->execute(1, 'site_name');
        $sth->execute(20, 'proxy_host');
@@ -94,12 +94,12 @@ sub dbupgrade {
 
        $sql = "INSERT INTO `$tbl_options` ( `name`, `value`, `description`, `pos`)
                        VALUES ( 'feed_num', '10', 'How many feed entries per default (0 = all)', '4')";
-       my $sth = $dbh->prepare($sql);
+       $sth = $dbh->prepare($sql);
        $sth->execute;
 
 
-       my $sql = "update $tbl_options set value = ? where (name = ?)";
-       my $sth = $dbh->prepare($sql);
+       $sql = "update $tbl_options set value = ? where (name = ?)";
+       $sth = $dbh->prepare($sql);
        $sth->execute($version, 'version');
 
        return;
diff --git a/tools/linkcheck.pl b/tools/linkcheck.pl
new file mode 100755 (executable)
index 0000000..32eaf4b
--- /dev/null
@@ -0,0 +1,79 @@
+#!/usr/bin/perl -w
+#
+# Copyright (C) 2012 jumpin.banana
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
+# USA
+#
+
+use warnings;
+use strict;
+use Getopt::Long;
+use DBI;
+
+BEGIN {
+    binmode STDOUT, ':encoding(UTF-8)';
+    binmode STDERR, ':encoding(UTF-8)';
+}
+
+#push(@INC, "../lib");
+use lib "../lib";
+use Insipid::Config;
+use Insipid::Database;
+use Insipid::Bookmarks;
+
+$|=1;
+
+my $opt_help = 0;
+
+# if no arguments passed
+&usage if @ARGV < 1;
+
+GetOptions(
+       "help|h"                        => \$opt_help,
+) or die(&usage);
+
+&usage if $opt_help;
+
+
+#
+# main
+#
+my $query = "SELECT `url` ";
+
+
+
+#
+# functions
+#
+
+sub usage {
+       print <<EOT
+Usage: linkcheck.pl [OPTION]
+Check the bookmark entries from insipid. Check if the URL returns a 200 Status
+code. If so set the checkDate and result. Non 200 checks will be marked. Those
+can be checked seperately
+
+       -h, --help              display this help message
+       -l, --link              all = check all links
+                               active = check only those which are not marked as inactive
+                               inactive = check inactive only
+
+EOT
+;
+       exit(1);
+}
+
+exit(0);