FormBox.py 6.18 KB
Newer Older
1
# -*- coding: utf-8 -*-
Jean-Paul Smets's avatar
Jean-Paul Smets committed
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
##############################################################################
#
# Copyright (c) 2002-2006 Nexedi SARL and Contributors. All Rights Reserved.
#                    Jean-Paul Smets <jp@nexedi.com>
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability of assessing all potential
# consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial
# garantees and support are strongly adviced to contract a Free Software
# Service Company
#
# 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.
#
##############################################################################

from Products.Formulator import Widget, Validator
from Products.Formulator.Field import ZMIField
from Products.Formulator.DummyField import fields
from Products.ERP5Type.Utils import convertToUpperCase
from Products.CMFCore.utils import getToolByName

from Products.PageTemplates.PageTemplateFile import PageTemplateFile

38
from Products.ERP5Type.Globals import get_request
Jean-Paul Smets's avatar
Jean-Paul Smets committed
39 40 41
from Products.PythonScripts.Utility import allow_class

from Products.PythonScripts.standard import url_quote_plus
42
from Products.Formulator.Errors import FormValidationError, ValidationError
Jean-Paul Smets's avatar
Jean-Paul Smets committed
43 44 45

import string

46
from zLOG import LOG, WARNING, DEBUG, PROBLEM
Jean-Paul Smets's avatar
Jean-Paul Smets committed
47 48 49 50 51

class FormBoxWidget(Widget.Widget):
  """
      A widget that display a form within a form.

52
      A first purpose of this widget is to display addresses in
Jean-Paul Smets's avatar
Jean-Paul Smets committed
53 54 55 56 57 58 59 60 61 62 63 64 65 66
      a different order for every localisation.

      A second purpose of this widget is to represent a single value
      (ex. a number, a date) into multiple forms. We need for that
      purpose a script to assemble a value out of

      A third purpose is to display values on subobjects and,
      if necessary, create such objects ?

      WARNING: this is still pre-alpha code for experimentation. Do not
      use in production.
  """

  property_names = Widget.Widget.property_names + [
67
    'formbox_target_id', \
Jean-Paul Smets's avatar
Jean-Paul Smets committed
68 69
  ]

70 71 72
  # This name was changed to prevent naming collision with ProxyField
  formbox_target_id = fields.StringField(
                                'formbox_target_id',
Jean-Paul Smets's avatar
Jean-Paul Smets committed
73 74 75 76 77 78 79 80 81 82 83 84 85 86
                                title='Form ID',
                                description=(
    "ID of the form which must be rendered in this box."),
                                default="",
                                required=1)

  default = fields.StringField(
                                'default',
                                title='Default',
                                description=(
    "A default value (not used)."),
                                default="",
                                required=0)

87
  def render(self, field, key, value, REQUEST, render_prefix=None):
Jean-Paul Smets's avatar
Jean-Paul Smets committed
88 89 90
    """
        Render a form in a field
    """
91 92 93 94 95
    # If FormBox is inside ListBox, we want use REQUEST['cell'] as
    # 'here'.
    # XXX REQUEST['cell'] will remain after ListBox rendering. We need a
    # way to check if it is inside ListBox or not correctly.
    here = REQUEST.get('cell', REQUEST['here'])
96 97 98 99 100 101 102
    try:
      form = getattr(here, field.get_value('formbox_target_id'))
    except AttributeError:
      LOG('FormBox', WARNING, 
          'Could not get a form from formbox %s in %s' % \
              (field.id, field.aq_parent.id))
      return ''
103
    return form(REQUEST=REQUEST, key_prefix=key)
104 105 106 107 108 109 110 111 112 113 114 115 116 117

class FormBoxEditor:
  """
  A class holding all values required to update the object
  """
  def __init__(self, field_id, result):
    self.field_id = field_id
    self.result = result

  def view(self):
    return self.__dict__

  def __call__(self, REQUEST):
    pass
Jean-Paul Smets's avatar
Jean-Paul Smets committed
118

119 120 121 122 123 124 125 126 127 128
  def edit(self, context):
    context.edit(**self.result[0])
    for encapsulated_editor in self.result[1]:
      encapsulated_editor.edit(context)  

  def as_dict(self):
    """
    This method is used to return parameter dict.
    XXX This API is probably not stable and may change, as some editors are used to
    edit multiple objects.
Jean-Paul Smets's avatar
Jean-Paul Smets committed
129
    """
130 131 132 133 134 135 136 137
    result_dict = self.result[0]
    for encapsulated_editor in self.result[1]:
      if hasattr(encapsulated_editor, 'as_dict'):
        result_dict.update(
            encapsulated_editor.as_dict())
    return result_dict

allow_class(FormBoxEditor)
Jean-Paul Smets's avatar
Jean-Paul Smets committed
138 139 140 141 142 143 144

class FormBoxValidator(Validator.Validator):
  """
    Validate all fields of the form and return
    the result as a single variable.
  """
  property_names = Validator.Validator.property_names
145 146 147 148
  message_names = Validator.Validator.message_names + \
                  ['form_invalidated',]

  form_invalidated = "Form invalidated."
Jean-Paul Smets's avatar
Jean-Paul Smets committed
149 150

  def validate(self, field, key, REQUEST):
151 152 153 154 155 156 157 158
    # XXX hardcoded acquisition
    here = field.aq_parent.aq_parent
    formbox_target_id = field.get_value('formbox_target_id')

    # Get current error fields
    current_field_errors = REQUEST.get('field_errors', [])

    # XXX Hardcode script name
159
    result, result_type = here.Base_edit(formbox_target_id, silent_mode=1, key_prefix=key)
160 161 162 163 164 165
    if result_type == 'edit':
      return FormBoxEditor(field.id, result)
    elif result_type == 'form':
      formbox_field_errors = REQUEST.get('field_errors', [])
      current_field_errors.extend(formbox_field_errors)
      REQUEST.set('field_errors', current_field_errors)
166
      getattr(here, formbox_target_id).validate_all_to_request(REQUEST, key_prefix=key)
167 168
    else:
      raise NotImplementedError, result_type
Jean-Paul Smets's avatar
Jean-Paul Smets committed
169 170 171 172 173 174 175 176 177

FormBoxWidgetInstance = FormBoxWidget()
FormBoxValidatorInstance = FormBoxValidator()

class FormBox(ZMIField):
  meta_type = "FormBox"

  widget = FormBoxWidgetInstance
  validator = FormBoxValidatorInstance