Validate hostname and port number of new records.
authorMike Taylor <mike@indexdata.com>
Thu, 23 Aug 2007 14:29:18 +0000 (14:29 +0000)
committerMike Taylor <mike@indexdata.com>
Thu, 23 Aug 2007 14:29:18 +0000 (14:29 +0000)
web/htdocs/details/edit.mc

index e435624..95686a1 100644 (file)
@@ -1,4 +1,4 @@
-%# $Id: edit.mc,v 1.36 2007-07-17 13:04:45 mike Exp $
+%# $Id: edit.mc,v 1.37 2007-08-23 14:29:18 mike Exp $
 <%args>
 $op
 $id => undef ### should be extracted using utf8param()
@@ -68,6 +68,14 @@ if (!defined $id) {
        print qq[<p class="error">
                Please specify protocol, host, port and database name.</p>\n];
        undef $update;
+    } elsif ($host !~ /^\w+\.[\w.]*\w$/i) {
+       print qq[<p class="error">
+               This host name is not valid.</p>\n];
+       undef $update;
+    } elsif ($port !~ /^\d*$/i) {
+       print qq[<p class="error">
+               This port number is not valid.</p>\n];
+       undef $update;
     } else {
        # Creating new record, all necessary data is present.  Check
        # that the new record is not a duplicate of an existing one.