2017-01-15 23:01:18 +00:00
|
|
|
# Re2o est un logiciel d'administration développé initiallement au rezometz. Il
|
|
|
|
# se veut agnostique au réseau considéré, de manière à être installable en
|
|
|
|
# quelques clics.
|
|
|
|
#
|
|
|
|
# Copyright © 2017 Gabriel Détraz
|
2019-09-29 14:02:28 +00:00
|
|
|
# Copyright © 2017 Lara Kermarec
|
2017-01-15 23:01:18 +00:00
|
|
|
# Copyright © 2017 Augustin Lemesle
|
|
|
|
#
|
|
|
|
# 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.,
|
|
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
|
2017-11-02 19:58:20 +00:00
|
|
|
"""The forms used by the search app"""
|
|
|
|
|
2017-09-10 23:29:24 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2017-11-01 23:19:41 +00:00
|
|
|
from django import forms
|
|
|
|
from django.forms import Form
|
2018-08-05 16:48:45 +00:00
|
|
|
from django.utils.translation import ugettext_lazy as _
|
2018-11-15 17:58:45 +00:00
|
|
|
from re2o.base import get_input_formats_help_text
|
2017-11-01 23:19:41 +00:00
|
|
|
|
|
|
|
CHOICES_USER = (
|
2019-11-04 16:55:03 +00:00
|
|
|
("0", _("Active")),
|
|
|
|
("1", _("Disabled")),
|
|
|
|
("2", _("Archived")),
|
|
|
|
("3", _("Not yet active")),
|
2019-11-16 14:12:54 +00:00
|
|
|
("4", _("Fully archived")),
|
2017-11-01 23:19:41 +00:00
|
|
|
)
|
|
|
|
|
2020-04-19 15:07:29 +00:00
|
|
|
CHOICES_EMAILS = (
|
|
|
|
("0", _("Confirmed")),
|
|
|
|
("1", _("Not confirmed")),
|
|
|
|
("2", _("Waiting for email confirmation")),
|
|
|
|
)
|
|
|
|
|
2017-11-01 23:19:41 +00:00
|
|
|
CHOICES_AFF = (
|
2019-11-04 16:55:03 +00:00
|
|
|
("0", _("Users")),
|
|
|
|
("1", _("Machines")),
|
|
|
|
("2", _("Invoices")),
|
|
|
|
("3", _("Bans")),
|
|
|
|
("4", _("Whitelists")),
|
|
|
|
("5", _("Rooms")),
|
|
|
|
("6", _("Ports")),
|
|
|
|
("7", _("Switches")),
|
2017-11-01 23:19:41 +00:00
|
|
|
)
|
|
|
|
|
2017-11-02 00:25:24 +00:00
|
|
|
|
2017-11-07 22:16:59 +00:00
|
|
|
def initial_choices(choice_set):
|
2017-11-02 19:58:20 +00:00
|
|
|
"""Return the choices that should be activated by default for a
|
|
|
|
given set of choices"""
|
2017-11-07 22:16:59 +00:00
|
|
|
return [i[0] for i in choice_set]
|
2017-11-01 23:19:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
class SearchForm(Form):
|
2020-04-28 19:47:39 +00:00
|
|
|
"""Form used to do a simple search."""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2017-11-07 22:16:59 +00:00
|
|
|
q = forms.CharField(
|
2018-08-05 16:48:45 +00:00
|
|
|
label=_("Search"),
|
2017-11-07 22:16:59 +00:00
|
|
|
help_text=(
|
2019-11-04 16:55:03 +00:00
|
|
|
_(
|
|
|
|
'Use « » and «,» to specify distinct words, «"query"» for'
|
2020-02-19 10:10:07 +00:00
|
|
|
" an exact search, «\\» to escape a character and «+» to"
|
2020-02-19 10:06:57 +00:00
|
|
|
" combine keywords."
|
2019-11-04 16:55:03 +00:00
|
|
|
)
|
|
|
|
),
|
|
|
|
max_length=100,
|
2017-11-07 22:16:59 +00:00
|
|
|
)
|
2017-11-01 23:19:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
class SearchFormPlus(Form):
|
2020-04-28 19:47:39 +00:00
|
|
|
"""Form used to do an advanced search (with filters)."""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2017-11-01 23:19:41 +00:00
|
|
|
q = forms.CharField(
|
2018-08-05 16:48:45 +00:00
|
|
|
label=_("Search"),
|
2017-11-07 22:16:59 +00:00
|
|
|
help_text=(
|
2019-11-04 16:55:03 +00:00
|
|
|
_(
|
|
|
|
'Use « » and «,» to specify distinct words, «"query"» for'
|
2020-02-19 10:06:57 +00:00
|
|
|
" an exact search, «\\» to escape a character and «+» to"
|
|
|
|
" combine keywords."
|
2019-11-04 16:55:03 +00:00
|
|
|
)
|
2017-11-07 22:16:59 +00:00
|
|
|
),
|
2017-11-02 00:25:24 +00:00
|
|
|
max_length=100,
|
2019-11-04 16:55:03 +00:00
|
|
|
required=False,
|
2017-11-01 23:19:41 +00:00
|
|
|
)
|
|
|
|
u = forms.MultipleChoiceField(
|
2018-08-05 16:48:45 +00:00
|
|
|
label=_("Users filter"),
|
2017-11-01 23:19:41 +00:00
|
|
|
required=False,
|
|
|
|
widget=forms.CheckboxSelectMultiple,
|
|
|
|
choices=CHOICES_USER,
|
2019-11-04 16:55:03 +00:00
|
|
|
initial=initial_choices(CHOICES_USER),
|
2017-11-01 23:19:41 +00:00
|
|
|
)
|
2020-04-19 15:07:29 +00:00
|
|
|
m = forms.MultipleChoiceField(
|
|
|
|
label=_("Email state filter"),
|
|
|
|
required=False,
|
|
|
|
widget=forms.CheckboxSelectMultiple,
|
|
|
|
choices=CHOICES_EMAILS,
|
|
|
|
initial=initial_choices(CHOICES_EMAILS),
|
|
|
|
)
|
2017-11-01 23:19:41 +00:00
|
|
|
a = forms.MultipleChoiceField(
|
2018-08-05 16:48:45 +00:00
|
|
|
label=_("Display filter"),
|
2017-11-01 23:19:41 +00:00
|
|
|
required=False,
|
|
|
|
widget=forms.CheckboxSelectMultiple,
|
|
|
|
choices=CHOICES_AFF,
|
2019-11-04 16:55:03 +00:00
|
|
|
initial=initial_choices(CHOICES_AFF),
|
2017-11-01 23:19:41 +00:00
|
|
|
)
|
2019-11-04 16:55:03 +00:00
|
|
|
s = forms.DateField(required=False, label=_("Start date"))
|
|
|
|
e = forms.DateField(required=False, label=_("End date"))
|
2018-04-26 13:08:04 +00:00
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(SearchFormPlus, self).__init__(*args, **kwargs)
|
2019-11-04 16:55:03 +00:00
|
|
|
self.fields["s"].help_text = get_input_formats_help_text(
|
|
|
|
self.fields["s"].input_formats
|
2018-04-26 13:08:04 +00:00
|
|
|
)
|
2019-11-04 16:55:03 +00:00
|
|
|
self.fields["e"].help_text = get_input_formats_help_text(
|
|
|
|
self.fields["e"].input_formats
|
2018-04-26 13:08:04 +00:00
|
|
|
)
|