-
Notifications
You must be signed in to change notification settings - Fork 1
/
middleware.py
87 lines (60 loc) · 2.31 KB
/
middleware.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# -*- coding: utf-8 -*-
"""
Copyright 2005 Spike^ekipS <[email protected]>
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""
import traceback
from django.conf import settings
from django.template import TemplateSyntaxError
from django.utils.translation import ugettext as _
import pylucene, constant
import views as views_searcher
import models as models_search
class LuceneMiddleware (object) :
def process_request (self, request) :
pylucene.initialize_vm()
def process_exception (self, request, exception, ) :
if settings.DEBUG :
traceback.print_exc()
if isinstance(exception, TemplateSyntaxError) :
exception_title = ""
exception_description = ""
if hasattr(exception, "exc_info") and exception.exc_info[0] == constant.StorageException :
exception_title = _("Search storage is not found or broken.")
exception_description = _("""
Re-initialize your search storage,
<pre class="literal-block">
>>> python manage.py search_initialize_db
</pre>
""")
return views_searcher.render_to_response(
request,
"search_admin_invalid_setup.html",
{
"opts": models_search.Search._meta,
"exception": exception.exc_info[1],
"exception_title": exception_title,
"exception_description": exception_description,
},
)
"""
Description
-----------
ChangeLog
---------
Usage
-----
"""
__author__ = "Spike^ekipS <[email protected]>"
__version__= "0.1"
__nonsense__ = ""