mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
65 lines
1.7 KiB
Python
65 lines
1.7 KiB
Python
from django_filters.rest_framework import CharFilter, FilterSet, BooleanFilter
|
|
|
|
from .models import Correspondent, Document, Tag
|
|
|
|
|
|
class CorrespondentFilterSet(FilterSet):
|
|
|
|
class Meta:
|
|
model = Correspondent
|
|
fields = {
|
|
"name": [
|
|
"startswith", "endswith", "contains",
|
|
"istartswith", "iendswith", "icontains"
|
|
],
|
|
"slug": ["istartswith", "iendswith", "icontains"]
|
|
}
|
|
|
|
|
|
class TagFilterSet(FilterSet):
|
|
|
|
class Meta:
|
|
model = Tag
|
|
fields = {
|
|
"name": [
|
|
"startswith", "endswith", "contains",
|
|
"istartswith", "iendswith", "icontains"
|
|
],
|
|
"slug": ["istartswith", "iendswith", "icontains"]
|
|
}
|
|
|
|
|
|
class DocumentFilterSet(FilterSet):
|
|
|
|
CHAR_KWARGS = {
|
|
"lookup_expr": (
|
|
"startswith",
|
|
"endswith",
|
|
"contains",
|
|
"istartswith",
|
|
"iendswith",
|
|
"icontains"
|
|
)
|
|
}
|
|
|
|
correspondent__name = CharFilter(
|
|
field_name="correspondent__name", **CHAR_KWARGS)
|
|
correspondent__slug = CharFilter(
|
|
field_name="correspondent__slug", **CHAR_KWARGS)
|
|
tags__name = CharFilter(
|
|
field_name="tags__name", **CHAR_KWARGS)
|
|
tags__slug = CharFilter(
|
|
field_name="tags__slug", **CHAR_KWARGS)
|
|
tags__empty = BooleanFilter(
|
|
field_name="tags", lookup_expr="isnull", distinct=True)
|
|
|
|
class Meta:
|
|
model = Document
|
|
fields = {
|
|
"title": [
|
|
"startswith", "endswith", "contains",
|
|
"istartswith", "iendswith", "icontains"
|
|
],
|
|
"content": ["contains", "icontains"],
|
|
}
|