From 82d12da81fe5d5e8962d1b281437ee239e13133a Mon Sep 17 00:00:00 2001 From: Guewen Baconnier Date: Mon, 31 Aug 2015 14:34:15 +0200 Subject: [PATCH] Validate validness of the SQL view's name --- sql_view/models/sql_view.py | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/sql_view/models/sql_view.py b/sql_view/models/sql_view.py index 72d41643d..398b29044 100644 --- a/sql_view/models/sql_view.py +++ b/sql_view/models/sql_view.py @@ -19,15 +19,33 @@ # # - +import re from openerp.osv import orm, fields +# views are created with a prefix to prevent conflicts +SQL_VIEW_PREFIX = u'sql_view_' +# 63 chars is the length of a postgres identifier +USER_NAME_SIZE = 63 - len(SQL_VIEW_PREFIX) + +PG_NAME_RE = re.compile(r'^[a-z_][a-z0-9_$]*$', re.I) + class sql_view(orm.Model): _name = 'sql.view' _columns = { 'name': fields.char(string='View Name', required=True), - 'sql_name': fields.char(string='SQL Name', required=True), + 'sql_name': fields.char(string='SQL Name', required=True, + size=USER_NAME_SIZE), 'definition': fields.text(string='Definition', required=True), } + + def _check_sql_name(self, cr, uid, ids, context=None): + records = self.browse(cr, uid, ids, context=context) + return all(PG_NAME_RE.match(record.sql_name) for record in records) + + _constraints = [ + (_check_sql_name, + 'The SQL name is not a valid PostgreSQL identifier', + ['sql_name']), + ]