org.forms.directory =================== .. py:module:: org.forms.directory Classes ------- .. autoapisummary:: org.forms.directory.DirectoryBaseForm org.forms.directory.DirectoryForm org.forms.directory.DirectoryImportForm org.forms.directory.DirectoryUrlForm org.forms.directory.DirectoryRecipientForm Module Contents --------------- .. py:class:: DirectoryBaseForm(formdata: webob.multidict.MultiDict[str, Any] | None = None, obj: object | None = None, prefix: str = '', data: dict[str, Any] | None = None, meta: dict[str, Any] | None = None, *, extra_filters: collections.abc.Mapping[str, collections.abc.Sequence[Any]] | None = None, **kwargs: Any) Bases: :py:obj:`onegov.form.Form` Form for directories. .. py:attribute:: request :type: onegov.org.request.OrgRequest .. py:attribute:: title .. py:attribute:: lead .. py:attribute:: title_further_information .. py:attribute:: text .. py:attribute:: position .. py:attribute:: structure .. py:attribute:: enable_map .. py:attribute:: title_format .. py:attribute:: lead_format .. py:attribute:: empty_notice .. py:attribute:: numbering .. py:attribute:: numbers .. py:attribute:: content_fields .. py:attribute:: content_hide_labels .. py:attribute:: contact_fields .. py:attribute:: keyword_fields .. py:attribute:: thumbnail .. py:attribute:: show_as_thumbnails .. py:attribute:: overview_two_columns .. py:attribute:: address_block_title_type .. py:attribute:: address_block_title .. py:attribute:: marker_icon .. py:attribute:: marker_color_type .. py:attribute:: marker_color_value .. py:attribute:: order .. py:attribute:: order_format .. py:attribute:: order_direction .. py:attribute:: link_pattern .. py:attribute:: link_title .. py:attribute:: link_visible .. py:attribute:: enable_submissions .. py:attribute:: submissions_guideline .. py:attribute:: price .. py:attribute:: price_per_submission .. py:attribute:: currency .. py:attribute:: enable_change_requests .. py:attribute:: change_requests_guideline .. py:attribute:: enable_publication .. py:attribute:: enable_update_notifications .. py:attribute:: required_publication .. py:attribute:: submitter_meta_fields .. py:attribute:: layout .. py:property:: known_field_ids :type: set[str] | None .. py:property:: known_fields :type: list[onegov.form.parser.core.ParsedField] | None .. py:property:: missing_fields :type: dict[str, list[str]] | None .. py:method:: extract_field_ids(field: wtforms.Field) -> collections.abc.Iterator[str] .. py:method:: validate_title_format(field: wtforms.Field) -> None .. py:method:: validate_lead_format(field: wtforms.Field) -> None .. py:method:: validate_thumbnail(field: wtforms.Field) -> None .. py:method:: validate_numbers(field: wtforms.Field) -> None .. py:method:: ensure_public_fields_for_submissions() -> bool | None Force directories to show all fields (no hidden fields) if the user may send in new entries or update exsting ones. Otherwise we would have to filter out private fields which presents all kinds of edge-cases that we should probably not solve - directories are not meant to be private repositories. .. py:method:: first_hidden_field(configuration: onegov.directory.DirectoryConfiguration) -> onegov.form.parser.core.ParsedField | None Returns the first hidden field, or None. .. py:method:: is_public(fid: str, configuration: onegov.directory.DirectoryConfiguration) -> bool Returns true if the given field id is public. A field is public, if none of these are true: * It is part of the title/lead * It is part of the display * It is part of the keywords * It is used as the thumbnail Though we might also glean other fields if they are simply searchable or if they are part of the link pattern, we do not count those as public, because we are interested in *obviously* public fields clearly visible to the user. .. py:property:: default_marker_color :type: str .. py:property:: marker_color :type: str | None .. py:property:: configuration :type: onegov.directory.DirectoryConfiguration .. py:method:: populate_obj(obj: onegov.org.models.ExtendedDirectory) -> None A reimplementation of wtforms populate_obj function with the addage of optional include/exclude filters. If neither exclude nor include is passed, the function works like it does in wtforms. Otherwise fields are considered which are included but not excluded. .. py:method:: process_obj(obj: onegov.org.models.ExtendedDirectory) -> None Called by :meth:`process` if an object was passed. Do *not* use this function directly. To process an object, you should call ``form.process(obj=obj)`` instead. .. py:class:: DirectoryForm(formdata: webob.multidict.MultiDict[str, Any] | None = None, obj: object | None = None, prefix: str = '', data: dict[str, Any] | None = None, meta: dict[str, Any] | None = None, *, extra_filters: collections.abc.Mapping[str, collections.abc.Sequence[Any]] | None = None, **kwargs: Any) Bases: :py:obj:`DirectoryBaseForm`, :py:obj:`onegov.org.forms.generic.PaymentForm` Form for directories. .. py:class:: DirectoryImportForm(formdata: webob.multidict.MultiDict[str, Any] | None = None, obj: object | None = None, prefix: str = '', data: dict[str, Any] | None = None, meta: dict[str, Any] | None = None, *, extra_filters: collections.abc.Mapping[str, collections.abc.Sequence[Any]] | None = None, **kwargs: Any) Bases: :py:obj:`onegov.form.Form` Extends wtforms.Form with useful methods and integrations needed in OneGov applications. **Fieldsets** This form supports fieldsets (which WTForms doesn't recognize). To put fields into a fieldset, add a fieldset attribute to the field during class definition:: class MyForm(Form): first_name = StringField('First Name', fieldset='Name') last_name = StringField('Last Name', fieldset='Name') comment = StringField('Comment') A form created like this will have two fieldsets, one visible fieldset with the legend set to 'Name' and one invisible fieldset containing 'comment'. Fieldsets with the same name are *not* automatically grouped together. Instead, fields are taken in the order they are defined and put into the same fieldset, if the previous fieldset has the same name. That is to say, in this example, we get three fieldsets:: class MyForm(Form): a = StringField('A', fieldset='1') b = StringField('B', fieldset='2') c = StringField('C', fieldset='1') The first fieldset has the label '1' and it contains 'a'. The second fieldset has the label '2' and it contains 'b'. The third fieldset has the label '3' and it contains 'c'. This ensures that all fields are in either a visible or an invisible fieldset (see :meth:`Fieldset.is_visible`). **Dependencies** This form also supports dependencies. So field b may depend on field a, if field a has a certain value, field b is shown on the form (with some javascript) and its validators are actually executed. If field a does not have the required value, field b is hidden with javascript and its validators are not executed. The validators which are skipped are only the validators passed with the field, the validators on the field itself are still invoked (we can't skip them). However, only if the optional field is not empty. That is we prevent invalid values no matter what, but we allow for empty values if the dependent field does not have the required value. This sounds a lot more complicated than it is:: class MyForm(Form): option = RadioField('Option', choices=[ ('yes', 'Yes'), ('no', 'No'), ]) only_if_no = StringField( label='Only Shown When No', validators=[InputRequired()], depends_on=('option', 'no') ) **Pricing** Pricing is a way to attach prices to certain form fields. A total price is calcualted depending on the selections the user makes:: class MyForm(Form): ticket_insurance = RadioField('Option', choices=[ ('yes', 'Yes'), ('no', 'No') ], pricing={ 'yes': (10.0, 'CHF') }) stamps = IntegerRangeField( 'No. Stamps', range=range(0, 30), pricing={range(0, 30): (1.00, 'CHF')} ) delivery = RadioField('Delivery', choices=[ ('pick_up', 'Pick up'), ('post', 'Post') ], pricing={ 'post': (5.0, 'CHF', True) }) discount_code = StringField('Discount Code', pricing={ 'CAMPAIGN2017': (-5.0, 'CHF') }) Note that the pricing has no implicit meaning. This is simply a way to attach prices and to get the total through the ``prices()`` and ``total()`` calls. What you do with these prices is up to you. Pricing can optionally take a third boolean value indicating that this option will make credit card payments mandatory. .. py:attribute:: import_config .. py:attribute:: mode .. py:attribute:: zip_file .. py:method:: clear_entries(session: sqlalchemy.orm.Session, target: onegov.org.models.ExtendedDirectory) -> None :staticmethod: .. py:method:: run_import(target: onegov.org.models.ExtendedDirectory) -> int .. py:class:: DirectoryUrlForm(formdata: webob.multidict.MultiDict[str, Any] | None = None, obj: object | None = None, prefix: str = '', data: dict[str, Any] | None = None, meta: dict[str, Any] | None = None, *, extra_filters: collections.abc.Mapping[str, collections.abc.Sequence[Any]] | None = None, **kwargs: Any) Bases: :py:obj:`onegov.org.forms.generic.ChangeAdjacencyListUrlForm` For changing the URL of a directory independent of the title. .. py:method:: validate_name(field: wtforms.fields.StringField) -> None .. py:class:: DirectoryRecipientForm(formdata: webob.multidict.MultiDict[str, Any] | None = None, obj: object | None = None, prefix: str = '', data: dict[str, Any] | None = None, meta: dict[str, Any] | None = None, *, extra_filters: collections.abc.Mapping[str, collections.abc.Sequence[Any]] | None = None, **kwargs: Any) Bases: :py:obj:`onegov.form.Form` Form for adding recipients of entry updates to the directory. .. py:attribute:: address