2009-01-21 16:11:39 +01:00
|
|
|
# -*- python -*-
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
2014-02-08 13:13:26 +01:00
|
|
|
# Debian Member Portfolio Service form handling model
|
|
|
|
# Copyright © 2009-2014 Jan Dittberner <jan@dittberner.info>
|
2009-01-21 16:11:39 +01:00
|
|
|
#
|
2014-02-08 13:13:26 +01:00
|
|
|
# This file is part of Debian Member Portfolio Service.
|
2009-01-21 16:11:39 +01:00
|
|
|
#
|
2014-02-08 13:13:26 +01:00
|
|
|
# Debian Member Portfolio Service is free software: you can redistribute it
|
|
|
|
# and/or modify it under the terms of the GNU Affero General Public License as
|
|
|
|
# published by the Free Software Foundation, either version 3 of the License,
|
|
|
|
# or (at your option) any later version.
|
2009-01-21 16:11:39 +01:00
|
|
|
#
|
2014-02-08 13:13:26 +01:00
|
|
|
# Debian Member Portfolio Service 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 Affero
|
|
|
|
# General Public License for more details.
|
2009-01-21 16:11:39 +01:00
|
|
|
#
|
2014-02-08 13:13:26 +01:00
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2009-01-21 16:11:39 +01:00
|
|
|
#
|
2009-01-21 00:11:19 +01:00
|
|
|
import formencode
|
|
|
|
|
2012-01-07 01:46:57 +01:00
|
|
|
|
2009-01-21 00:11:19 +01:00
|
|
|
class DeveloperData(formencode.Schema):
|
2009-01-21 16:11:39 +01:00
|
|
|
"""Validation schema for DeveloperData."""
|
2009-01-21 00:11:19 +01:00
|
|
|
allow_extra_fields = True
|
|
|
|
filter_extra_fields = True
|
|
|
|
email = formencode.validators.Email(not_empty=True)
|
2009-01-22 21:06:23 +01:00
|
|
|
name = formencode.validators.String(not_empty=True)
|
|
|
|
gpgfp = formencode.All(formencode.validators.PlainText(),
|
2009-01-29 15:45:55 +01:00
|
|
|
formencode.validators.MinLength(32),
|
2009-01-23 18:03:39 +01:00
|
|
|
formencode.validators.MaxLength(40))
|
2009-01-22 21:06:23 +01:00
|
|
|
username = formencode.validators.PlainText()
|
2009-01-22 21:45:04 +01:00
|
|
|
nonddemail = formencode.validators.Email()
|
2009-01-22 21:06:23 +01:00
|
|
|
aliothusername = formencode.validators.PlainText()
|
2010-06-03 22:58:34 +02:00
|
|
|
mode = formencode.validators.OneOf([u'json', u'html'], if_missing=u'html')
|
2010-06-03 21:49:34 +02:00
|
|
|
forumsid = formencode.validators.Int(if_missing=None)
|
|
|
|
wikihomepage = formencode.validators.String(if_missing=None)
|
2009-01-23 18:03:39 +01:00
|
|
|
|
2010-06-03 22:58:34 +02:00
|
|
|
|
2009-01-23 18:03:39 +01:00
|
|
|
class DDDataRequest(formencode.Schema):
|
|
|
|
"""Validation schema for DDData request."""
|
2009-02-17 23:30:03 +01:00
|
|
|
allow_extra_fields = True
|
|
|
|
filter_extra_fields = False
|
2009-01-23 18:03:39 +01:00
|
|
|
email = formencode.validators.Email(not_empty=True)
|