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
82
83
84
85
86
87
|
# Create your views here.
from django.core.urlresolvers import reverse
from django.shortcuts import render_to_response
from django.template import RequestContext
from forms import SearchForm
from wiki.models import Article
from pybb.models import Post, Topic
from news.models import Post as NewsPost
from online_help.models import Building, Ware
from wlmaps.models import Map
class DummyEmptyQueryset(object):
"""
A simple dummy class when a search
should not be run. The template expects
a queryset and checks for the count member.
"""
def count(self):
return 0
def search(request):
if request.method == 'POST':
form = SearchForm(request.POST)
if form.is_valid():
query = form.cleaned_data["search"]
do_wiki = form.cleaned_data["incl_wiki"]
do_forum = form.cleaned_data["incl_forum"]
do_news = form.cleaned_data["incl_news"]
do_help = form.cleaned_data["incl_help"]
do_maps = form.cleaned_data["incl_maps"]
# Help
help_wares = Ware.search.query(query) if do_help else DummyEmptyQueryset()
help_buildings = Building.search.query(query) if do_help else DummyEmptyQueryset()
# Maps
map_results = Map.search.query(query) if do_maps else DummyEmptyQueryset()
# Wiki
wiki_results = Article.search.query(query) if do_wiki else DummyEmptyQueryset()
# Forum
forum_results_topic = Topic.search.query(query) if do_forum else DummyEmptyQueryset()
forum_results_post = Post.search.query(query) if do_forum else DummyEmptyQueryset()
# News
news_results = NewsPost.search.query(query) if do_news else DummyEmptyQueryset()
template_params = {
"wiki_results": wiki_results,
"help_hits": help_wares.count() + help_buildings.count(),
"help_results_wares": help_wares,
"help_results_buildings": help_buildings,
"forum_hits": forum_results_post.count() + forum_results_topic.count(),
"forum_results_topic": forum_results_topic,
"forum_results_post": forum_results_post,
"map_results": map_results,
"news_results": news_results,
"search_form": form,
"post": True,
}
return render_to_response("wlsearch/search.html",
template_params,
context_instance=RequestContext(request))
else:
form = SearchForm()
template_params = {
"search_form": form,
"post": False,
}
return render_to_response("wlsearch/search.html",
template_params,
context_instance=RequestContext(request))
|