2023-04-06 11:08:42 +00:00
|
|
|
# -*- coding:utf-8 -*-
|
2017-04-24 15:51:12 +00:00
|
|
|
#
|
2023-04-06 11:08:42 +00:00
|
|
|
# Copyright 2023 © AE UTBM
|
|
|
|
# ae@utbm.fr / ae.info@utbm.fr
|
|
|
|
# All contributors are listed in the CONTRIBUTORS file.
|
2017-04-24 15:51:12 +00:00
|
|
|
#
|
2023-04-06 11:08:42 +00:00
|
|
|
# This file is part of the website of the UTBM Student Association (AE UTBM),
|
|
|
|
# https://ae.utbm.fr.
|
2017-04-24 15:51:12 +00:00
|
|
|
#
|
2023-04-06 11:08:42 +00:00
|
|
|
# You can find the whole source code at https://github.com/ae-utbm/sith3
|
2017-04-24 15:51:12 +00:00
|
|
|
#
|
2023-04-06 11:08:42 +00:00
|
|
|
# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3)
|
|
|
|
# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE
|
|
|
|
# OR WITHIN THE LOCAL FILE "LICENSE"
|
2017-04-24 15:51:12 +00:00
|
|
|
#
|
2023-04-06 11:08:42 +00:00
|
|
|
# PREVIOUSLY LICENSED UNDER THE MIT LICENSE,
|
|
|
|
# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old
|
|
|
|
# OR WITHIN THE LOCAL FILE "LICENSE.old"
|
2017-04-24 15:51:12 +00:00
|
|
|
#
|
|
|
|
|
2017-02-15 21:01:33 +00:00
|
|
|
from django.db import models
|
|
|
|
from haystack import indexes, signals
|
2016-12-19 18:58:51 +00:00
|
|
|
|
|
|
|
from core.models import User
|
2018-12-10 15:06:03 +00:00
|
|
|
from forum.models import ForumMessage, ForumMessageMeta
|
2016-12-19 18:58:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
class UserIndex(indexes.SearchIndex, indexes.Indexable):
|
|
|
|
text = indexes.CharField(document=True, use_template=True)
|
2018-12-05 13:59:14 +00:00
|
|
|
auto = indexes.EdgeNgramField(use_template=True)
|
2020-04-21 13:36:13 +00:00
|
|
|
last_update = indexes.DateTimeField(model_attr="last_update")
|
2016-12-19 18:58:51 +00:00
|
|
|
|
|
|
|
def get_model(self):
|
|
|
|
return User
|
|
|
|
|
|
|
|
def index_queryset(self, using=None):
|
|
|
|
"""Used when the entire index for model is updated."""
|
|
|
|
return self.get_model().objects.all()
|
|
|
|
|
2016-12-20 14:19:11 +00:00
|
|
|
def get_updated_field(self):
|
|
|
|
return "last_update"
|
2017-02-15 21:01:33 +00:00
|
|
|
|
2020-04-21 11:50:43 +00:00
|
|
|
def prepare_auto(self, obj):
|
2020-04-21 13:37:39 +00:00
|
|
|
return self.prepared_data["auto"].strip()[:245]
|
2020-04-21 11:50:43 +00:00
|
|
|
|
2017-02-15 21:01:33 +00:00
|
|
|
|
2018-12-10 15:06:03 +00:00
|
|
|
class IndexSignalProcessor(signals.BaseSignalProcessor):
|
2017-02-15 21:01:33 +00:00
|
|
|
def setup(self):
|
|
|
|
# Listen only to the ``User`` model.
|
|
|
|
models.signals.post_save.connect(self.handle_save, sender=User)
|
|
|
|
models.signals.post_delete.connect(self.handle_delete, sender=User)
|
|
|
|
|
2018-12-10 15:06:03 +00:00
|
|
|
# Listen only to the ``ForumMessage`` model.
|
|
|
|
models.signals.post_save.connect(self.handle_save, sender=ForumMessageMeta)
|
|
|
|
models.signals.post_delete.connect(self.handle_delete, sender=ForumMessage)
|
|
|
|
|
|
|
|
# Listen to the ``ForumMessageMeta`` model pretending it's a ``ForumMessage``.
|
|
|
|
models.signals.post_save.connect(
|
|
|
|
self.handle_forum_message_meta_save, sender=ForumMessageMeta
|
|
|
|
)
|
|
|
|
models.signals.post_delete.connect(
|
|
|
|
self.handle_forum_message_meta_delete, sender=ForumMessageMeta
|
|
|
|
)
|
|
|
|
|
2017-02-15 21:01:33 +00:00
|
|
|
def teardown(self):
|
|
|
|
# Disconnect only for the ``User`` model.
|
|
|
|
models.signals.post_save.disconnect(self.handle_save, sender=User)
|
|
|
|
models.signals.post_delete.disconnect(self.handle_delete, sender=User)
|
2018-10-02 10:39:55 +00:00
|
|
|
|
2018-12-10 15:06:03 +00:00
|
|
|
# Disconnect only to the ``ForumMessage`` model.
|
|
|
|
models.signals.post_save.disconnect(self.handle_save, sender=ForumMessage)
|
|
|
|
models.signals.post_delete.disconnect(self.handle_delete, sender=ForumMessage)
|
|
|
|
|
|
|
|
# Disconnect to the ``ForumMessageMeta`` model pretending it's a ``ForumMessage``.
|
|
|
|
models.signals.post_save.disconnect(
|
|
|
|
self.handle_forum_message_meta_save, sender=ForumMessageMeta
|
|
|
|
)
|
|
|
|
models.signals.post_delete.disconnect(
|
|
|
|
self.handle_forum_message_meta_delete, sender=ForumMessageMeta
|
|
|
|
)
|
|
|
|
|
|
|
|
def handle_forum_message_meta_save(self, sender, instance, **kwargs):
|
|
|
|
super(IndexSignalProcessor, self).handle_save(
|
|
|
|
ForumMessage, instance.message, **kwargs
|
|
|
|
)
|
|
|
|
|
|
|
|
def handle_forum_message_meta_delete(self, sender, instance, **kwargs):
|
|
|
|
super(IndexSignalProcessor, self).handle_delete(
|
|
|
|
ForumMessage, instance.message, **kwargs
|
|
|
|
)
|
|
|
|
|
2018-10-02 10:39:55 +00:00
|
|
|
|
2018-12-07 12:54:40 +00:00
|
|
|
class BigCharFieldIndex(indexes.CharField):
|
|
|
|
"""
|
|
|
|
Workaround to avoid xapian.InvalidArgument: Term too long (> 245)
|
|
|
|
See https://groups.google.com/forum/#!topic/django-haystack/hRJKcPNPXqw/discussion
|
|
|
|
"""
|
|
|
|
|
|
|
|
def prepare(self, term):
|
2018-12-11 13:02:15 +00:00
|
|
|
return bytes(super(BigCharFieldIndex, self).prepare(term), "utf-8")[
|
|
|
|
:245
|
|
|
|
].decode("utf-8", errors="ignore")
|
2018-12-07 12:54:40 +00:00
|
|
|
|
|
|
|
|
2018-10-02 10:39:55 +00:00
|
|
|
class ForumMessageIndex(indexes.SearchIndex, indexes.Indexable):
|
2018-12-07 12:54:40 +00:00
|
|
|
text = BigCharFieldIndex(document=True, use_template=True)
|
2018-12-05 16:56:09 +00:00
|
|
|
auto = indexes.EdgeNgramField(use_template=True)
|
2018-12-12 14:48:11 +00:00
|
|
|
date = indexes.DateTimeField(model_attr="date")
|
2018-10-02 10:39:55 +00:00
|
|
|
|
|
|
|
def get_model(self):
|
|
|
|
return ForumMessage
|