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 = (
|
2018-08-05 16:48:45 +00:00
|
|
|
('0', _("Active")),
|
|
|
|
('1', _("Disabled")),
|
|
|
|
('2', _("Archived")),
|
2019-01-08 23:40:19 +00:00
|
|
|
('3', _("Not yet active")),
|
2019-03-17 17:03:33 +00:00
|
|
|
('4', _("Full archived")),
|
2017-11-01 23:19:41 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
CHOICES_AFF = (
|
2018-08-05 16:48:45 +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):
|
2017-11-02 19:58:20 +00:00
|
|
|
"""The form for a simple search"""
|
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=(
|
2018-08-05 16:48:45 +00:00
|
|
|
_("Use « » and «,» to specify distinct words, «\"query\"» for"
|
|
|
|
" an exact search and «\\» to escape a character.")
|
|
|
|
),
|
2017-11-07 22:16:59 +00:00
|
|
|
max_length=100
|
|
|
|
)
|
2017-11-01 23:19:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
class SearchFormPlus(Form):
|
2017-11-02 19:58:20 +00:00
|
|
|
"""The form for an advanced search (with filters)"""
|
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=(
|
2018-08-05 16:48:45 +00:00
|
|
|
_("Use « » and «,» to specify distinct words, «\"query\"» for"
|
|
|
|
" an exact search and «\\» to escape a character.")
|
2017-11-07 22:16:59 +00:00
|
|
|
),
|
2017-11-02 00:25:24 +00:00
|
|
|
max_length=100,
|
2017-11-01 23:19:41 +00:00
|
|
|
required=False
|
|
|
|
)
|
|
|
|
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,
|
|
|
|
initial=initial_choices(CHOICES_USER)
|
|
|
|
)
|
|
|
|
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,
|
|
|
|
initial=initial_choices(CHOICES_AFF)
|
|
|
|
)
|
|
|
|
s = forms.DateField(
|
|
|
|
required=False,
|
2018-08-05 16:48:45 +00:00
|
|
|
label=_("Start date"),
|
2017-11-01 23:19:41 +00:00
|
|
|
)
|
|
|
|
e = forms.DateField(
|
|
|
|
required=False,
|
2018-08-05 16:48:45 +00:00
|
|
|
label=_("End date")
|
2017-11-01 23:19:41 +00:00
|
|
|
)
|
2018-04-26 13:08:04 +00:00
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(SearchFormPlus, self).__init__(*args, **kwargs)
|
|
|
|
self.fields['s'].help_text = get_input_formats_help_text(
|
|
|
|
self.fields['s'].input_formats
|
|
|
|
)
|
|
|
|
self.fields['e'].help_text = get_input_formats_help_text(
|
|
|
|
self.fields['e'].input_formats
|
|
|
|
)
|
2018-08-05 16:48:45 +00:00
|
|
|
|