From 0ca618bd035160a2e020ed12ad7b53c072826f16 Mon Sep 17 00:00:00 2001 From: Sebastian Sdorra Date: Thu, 10 May 2012 19:08:54 +0200 Subject: [PATCH] improve client side validation for repository names --- scm-webapp/src/main/webapp/index.html | 3 ++ .../resources/js/override/ext.form.vtypes.js | 6 ++- .../main/webapp/resources/js/sonia.core.js | 39 +++++++++++++++++++ 3 files changed, 47 insertions(+), 1 deletion(-) create mode 100644 scm-webapp/src/main/webapp/resources/js/sonia.core.js diff --git a/scm-webapp/src/main/webapp/index.html b/scm-webapp/src/main/webapp/index.html index e2055a8b7c..6b727a0b2a 100644 --- a/scm-webapp/src/main/webapp/index.html +++ b/scm-webapp/src/main/webapp/index.html @@ -55,6 +55,9 @@ + + + diff --git a/scm-webapp/src/main/webapp/resources/js/override/ext.form.vtypes.js b/scm-webapp/src/main/webapp/resources/js/override/ext.form.vtypes.js index 1f7158ff7e..cbbeb2a721 100644 --- a/scm-webapp/src/main/webapp/resources/js/override/ext.form.vtypes.js +++ b/scm-webapp/src/main/webapp/resources/js/override/ext.form.vtypes.js @@ -53,7 +53,11 @@ Ext.apply(Ext.form.VTypes, { // repository name validator repositoryName: function(val){ - return /^[A-z0-9\.\-_\/]+$/.test(val); + return /^[A-z0-9][A-z0-9\.\-_\/]*$/.test(val) + && ! val.contains('..') + && ! val.endsWith('/.') + && ! val.endsWith('/') + && ! val.endsWith('.'); }, repositoryNameText: 'The name of the repository is invalid.', diff --git a/scm-webapp/src/main/webapp/resources/js/sonia.core.js b/scm-webapp/src/main/webapp/resources/js/sonia.core.js new file mode 100644 index 0000000000..474eb4c992 --- /dev/null +++ b/scm-webapp/src/main/webapp/resources/js/sonia.core.js @@ -0,0 +1,39 @@ +/* * + * Copyright (c) 2010, Sebastian Sdorra + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of SCM-Manager; nor the names of its + * contributors may be used to endorse or promote products derived from this + * software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY + * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * http://bitbucket.org/sdorra/scm-manager + * + */ + + +String.prototype.endsWith = function(suffix) { + return this.indexOf(suffix, this.length - suffix.length) !== -1; +}; + +String.prototype.contains = function(val) { + return this.indexOf(val) >= 0; +};