-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathviews.py
219 lines (181 loc) · 6.45 KB
/
views.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
from django.http import HttpResponse
from django.shortcuts import render
from django.conf import settings
import json
import random
from random import shuffle
import re
from search.templatetags.calculator import getResult
COSMOS_SEP = '_'
# Create your views here
def all_insert(x, e, i=0):
return [x[0:i]+[e]+x[i:]] + all_insert(x,e,i+1) if i<len(x)+1 else []
def for_each(X, e):
return all_insert(X[0], e) + for_each(X[1:],e) if X else []
def permute(x):
return [x] if len(x) < 2 else for_each( permute(x[1:]) , x[0])
# To prefill the searchbar
def get_random_tag():
jsonFile = open(settings.TAGS_JSON, 'r')
algo_list = json.load(jsonFile)
r_no = random.randint(0, len(algo_list) - 1)
algo_tag = algo_list[r_no]
return algo_tag
def searchSuggestion(request):
jsonFile = open(settings.TAGS_JSON, 'r')
algo_list = json.load(jsonFile)
filterData = []
results = []
if request.is_ajax():
val = request.GET.get('term', '')
filterData = []
for word in algo_list:
if word.startswith(val):
filterData.append(word)
i = 0
for tag in filterData:
tag_json = {}
tag_json['id'] = filterData.index(tag)
tag_json['label'] = tag
tag_json['value'] = tag
results.append(tag_json)
i = i + 1
if i >= 6:
break
searchTag = json.dumps(results)
else:
searchTag = 'fail'
return searchTag
def index(request):
algo_tag = get_random_tag()
algo = searchSuggestion(request)
if request.is_ajax():
mimetype = 'application/json'
return HttpResponse(algo, mimetype)
return render(request, 'cosmos/index.html', {'algo_name': algo_tag})
# Handlers for error pages
def error400(request):
return render(request, 'cosmos/error/HTTP400.html')
def error403(request):
return render(request, 'cosmos/error/HTTP403.html')
def error404(request):
return render(request, 'cosmos/error/HTTP404.html')
def error500(request):
return render(request, 'cosmos/error/HTTP500.html')
# calculator
def calculator(request):
global exprResult
if request.method == 'POST':
q = request.POST.get('txt')
if q is not None:
getResult(q)
res = getResult(q)
if type(res) == int or type(res) == float:
exprResult = round(res, 3)
else:
exprResult = 'Error'
else:
exprResult = None
q = None
return render(request, 'cosmos/searchresults.html',
{'title': 'Calculator',
'query': q,
'result_val': exprResult,
})
def is_file_extension_ignored(file_):
return file_.split('.')[-1] in ['md', 'MD']
def query(request):
global algo_name, title
if request.method == 'GET':
query = re.escape(request.GET['q']).replace('\ ', ' ')
#add
query = query.replace('\_', ' ')
#add
if '\\' in query:
query = query.replace('\\', '')
res = getResult(query)
if type(res) == int or type(res) == float:
exprResult = round(res, 3)
title = "Calculator"
algo_name = ""
else:
exprResult = None
q = query.replace(' ', COSMOS_SEP)
#add
list_query=q.split(COSMOS_SEP)
perms = permute(list_query)
list1=[]
for p in perms:
for i in range(len(p)):
p[i]=p[i].replace('\\', '')
list1.append('_'.join(p))
#add
data = json.loads(open(settings.METADATA_JSON, 'r').readline())
ans = []
rec = []
amount = 0
for folder, file in data.items():
filtered_v = []
for f in file:
if not is_file_extension_ignored(f):
filtered_v.append(f)
for q in list1:
if q in folder and "test" not in folder.split("/"):
if filtered_v:
path = folder
folder_list = folder.split('/')
ans.append({'path': path, 'dirs': folder_list, 'files': filtered_v})
amount += len(filtered_v)
if len(folder_list) == 2:
d = folder_list[-2] + '/'
else:
d = folder_list[-3] + '/'
for i, j in data.items():
if d in i:
if q not in i:
only_contents_md = True
for f in j:
if not is_file_extension_ignored(f):
only_contents_md = False
break
if only_contents_md:
continue
p = i
p = p.split('/')
l = p[len(p) - 1]
rec.append({'recpath': i, 'recdirs': p, 'last': l})
if not ans and exprResult is None:
return render(request, 'cosmos/notfound.html', {'query': query})
if ans:
algo_name = query
title = query
if ans and exprResult:
amount += 1
shuffle(rec)
return render(request, 'cosmos/searchresults.html',
{'amount': amount,
'title': title,
'result': ans,
'recommend': rec[:5],
'query': query,
'result_val': exprResult,
'algo_name': algo_name
})
elif request.method == 'POST':
calculator(request)
if request.is_ajax():
algo = searchSuggestion(request)
mimetype = 'application/json'
return HttpResponse(algo, mimetype)
# Search strategy
def subsq(a, b, m, n):
# Base Cases
if m == 0:
return True
if n == 0:
return False
# If last characters of two strings are matching
if a[m - 1] == b[n - 1]:
return subsq(a, b, m - 1, n - 1)
# If last characters are not matching
return subsq(a, b, m, n - 1)