This repository has been archived by the owner on Jun 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
427 lines (323 loc) · 11.2 KB
/
index.php
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
<?php
require 'vendor/autoload.php';
require 'function.php';
// Disable timeout because we do long process
set_time_limit(0);
use EasyRequest\Client as HttpClient;
// Register mysqli db connector
Flight::register('db', 'mysqli', ['localhost', 'root', '', 'irp'], function($db) {
$db->set_charset('utf8');
});
// Register Stoplist method
Flight::map('stoplist', function($words) {
$wordlist = loadData('stopwords.txt');
foreach ($words as $i => $word) {
if (isset($wordlist[$word])) {
unset($words[$i]);
}
}
return $words;
});
// Register Stemming method
Flight::map('stemming', function($words) {
foreach ($words as $word) {
/* 1. Cek Kata di Kamus */
if (!checkDict($word)) {
/* 2. Buang Infection suffixes (\-lah", \-kah", \-ku", \-mu", atau \-nya") */
$word = removeInflectionSuffix($word);
/* 3. Buang Derivation suffix (\-i" or \-an") */
$word = removeDerivationSuffix($word);
/* 4. Buang Derivation prefix */
$word = removeDerivationPrefix($word);
}
$result[] = $word;
}
return $result;
});
// Register Fetch Data method for fetching data from remote
Flight::map('fetchData', function($method, $params) {
// Send request
$response = HttpClient::get("http://www.hirupmotekar.com/api/${method}/", [
'query' => $params
]);
// Decode json
$data = json_decode($response->getBody());
return $data;
});
// Register count similarities method for data retrieval
Flight::map('countSimilarities', function($query) {
$db = Flight::db();
$resn = $db->query('SELECT COUNT(*) as n FROM vector');
$rown = $resn->fetch_assoc();
$n = $rown['n'];
$aQuery = explode(' ', $query);
$queryLength = 0;
$aQueryWeight = [];
foreach ($aQuery as $q) {
$resNTerm = $db->query("SELECT COUNT(*) as N FROM indexes WHERE term = '$q'");
$rowNTerm = $resNTerm->fetch_assoc();
$nTerm = $rowNTerm['N'];
$idf = $nTerm > 0 ? log($n / $nTerm) : 0;
$aQueryWeight[] = $idf;
$queryLength = $queryLength + $idf * $idf;
}
$queryLength = sqrt($queryLength);
$similar = 0;
$res = $db->query('SELECT * FROM vector ORDER BY doc_id');
while ($row = $res->fetch_assoc()) {
$dotProduct = 0;
$id = $row['doc_id'];
$length = $row['length'];
$resTerm = $db->query("SELECT * FROM indexes WHERE doc_id = $id");
while ($rowTerm = $resTerm->fetch_assoc()) {
for ($i=0; $i < count($aQuery); $i++) {
if ($rowTerm['term'] == $aQuery[$i]) {
$dotProduct = $dotProduct + $rowTerm['weight'] * $aQueryWeight[$i];
}
}
}
if ($dotProduct > 0) {
$sim = $dotProduct / ($queryLength * $length);
$db->query("INSERT INTO cache (doc_id, query, value) VALUES ($id, '$query', $sim)");
$similar++;
}
}
if ($similar == 0) {
$db->query("INSERT INTO cache (doc_id, query, value) VALUES (0, '$query', 0)");
}
});
// Route create index
Flight::route('/index/create', function() {
$start = microtime(true);
$db = Flight::db();
$tdata = [
'new' => 0,
'update' => 0
];
$res = $db->query('SELECT date FROM docs ORDER BY id DESC LIMIT 1');
$row = $res->fetch_assoc();
$data = Flight::fetchData('get_posts', [
'count' => -1,
'date_query' => [
[
'after' => $row['date']
],
'column' => 'post_modified'
],
'order' => 'ASC'
]);
if ($data->count > 0) {
foreach ($data->posts as $doc) {
$content = $db->real_escape_string($doc->content);
$res = $db->query("SELECT date FROM docs WHERE post_id = $doc->id");
$row = $res->fetch_assoc();
if (empty($row['date']) || $row['date'] == $doc->modified) {
$db->query("INSERT INTO docs (post_id, title, url, date, content) VALUES ('$doc->id', '$doc->title', '$doc->url', '$doc->modified', '$content')");
$tdata['new']++;
} else {
$db->query("UPDATE docs SET title = '$doc->title', url = '$doc->url', date = '$doc->modified', content = '$content' WHERE post_id = '$doc->id'");
$tdata['update']++;
}
}
}
$db->query('TRUNCATE TABLE indexes');
$res = $db->query('SELECT * FROM docs ORDER BY id DESC LIMIT 10');
$tdata['count'] = $res->num_rows;
while ($row = $res->fetch_assoc()) {
$text = html_entity_decode($row['content']);
$text = preg_replace('/[^a-zA-Z]+/i', ' ', strtolower(strip_tags($text)));
$words = explode(' ', trim($text));
$terms = Flight::stemming(Flight::stoplist($words));
foreach ($terms as $term) {
$resc = $db->query("SELECT count FROM indexes WHERE term = '$term' AND doc_id = $row[id]");
if ($resc->num_rows > 0) {
$rowc = $resc->fetch_assoc();
$rowc['count']++;
$db->query("UPDATE indexes SET count = $rowc[count] WHERE term = '$term' AND doc_id = $row[id]");
} else {
$db->query("INSERT INTO indexes (doc_id, term, count) VALUES ($row[id], '$term', 1)");
}
}
}
$resc2 = $db->query('SELECT COUNT(*) FROM indexes');
$rowc2 = $resc2->fetch_row();
$tdata['term_count'] = $rowc2[0];
$tdata['time'] = round(microtime(true) - $start, 2);
// Render page
Flight::render('create_index', $tdata);
});
// Route show index
Flight::route('/index/show', function() {
// Render page
Flight::render('show_index');
});
// Route corpus
Flight::route('/corpus', function() {
// Render page
Flight::render('show_corpus');
});
// Route weighting
Flight::route('/weighting', function() {
$start = microtime(true);
$db = Flight::db();
$data = [];
$resn = $db->query('SELECT DISTINCT doc_id FROM indexes');
$n = $resn->num_rows;
$res = $db->query('SELECT * FROM indexes ORDER BY id');
$data['count'] = $res->num_rows;
while ($row = $res->fetch_assoc()) {
$term = $row['term'];
$tf = $row['count'];
$resNTerm = $db->query("SELECT COUNT(*) as N FROM indexes WHERE term = '$term'");
$rowNTerm = $resNTerm->fetch_assoc();
$nTerm = $rowNTerm['N'];
$w = $tf * log($n / $nTerm);
$db->query("UPDATE indexes SET weight = $w WHERE id = $row[id]");
}
$data['time'] = round(microtime(true) - $start, 2);
// Render page
Flight::render('weighting', $data);
});
// Route count vector
Flight::route('/vector/count', function() {
$start = microtime(true);
$db = Flight::db();
$data = [];
$db->query('TRUNCATE TABLE vector');
$res = $db->query('SELECT DISTINCT doc_id FROM indexes');
$data['count'] = $res->num_rows;
while ($row = $res->fetch_assoc()) {
$id = $row['doc_id'];
$resVec = $db->query("SELECT weight FROM indexes WHERE doc_id = $id");
$vectorLen = 0;
while ($rowVec = $resVec->fetch_assoc()) {
$vectorLen = $vectorLen + $rowVec['weight'] * $rowVec['weight'];
}
$vectorLen = sqrt($vectorLen);
$db->query("INSERT INTO vector (doc_id, length) VALUES ($id, $vectorLen)");
}
$data['time'] = round(microtime(true) - $start, 2);
// Render page
Flight::render('count_vector', $data);
});
// Route corpus
Flight::route('/vector/show', function() {
// Render page
Flight::render('show_vector');
});
// Route retrieval
Flight::route('/retrieval', function() {
$data = [
'keyword' => Flight::request()->query->keyword
];
// Render page
Flight::render('retrieval', $data);
});
// Route cache
Flight::route('/cache', function() {
// Render page
Flight::render('cache');
});
// Route clear cache
Flight::route('/cache/clear', function() {
$db = Flight::db();
$db->query('TRUNCATE TABLE cache');
Flight::redirect('/cache');
});
// Route ajax retrieval
Flight::route('/ajax/retrieval', function() {
$start = microtime(true);
$db = Flight::db();
$keyword = Flight::request()->query->keyword;
$limit = 10;
$page = Flight::request()->query->page ?: 1;
$offset = ($page - 1) * $limit;
$data = [
'docs' => []
];
if ($keyword) {
$resc = $db->query("SELECT COUNT(*) FROM cache WHERE query = '$keyword'");
$rowc = $resc->fetch_row();
if ($rowc[0] == 0) {
Flight::countSimilarities($keyword);
}
$res = $db->query("SELECT * FROM cache WHERE query = '$keyword' ORDER BY value DESC LIMIT $limit OFFSET $offset");
while ($row = $res->fetch_assoc()) {
$id = $row['doc_id'];
$sim = $row['value'];
if ($id != 0) {
$resd = $db->query("SELECT * FROM docs WHERE id = $id");
$rowd = $resd->fetch_assoc();
$data['docs'][] = [
'title' => html_entity_decode($rowd['title']),
'url' => $rowd['url'],
'content' => substr(strip_tags(html_entity_decode($rowd['content'])), 0, 500),
'similarity' => $sim
];
}
}
}
$data['time'] = round(microtime(true) - $start, 2);
Flight::json($data);
});
// Route ajax corpus
Flight::route('/ajax/corpus', function() {
$db = Flight::db();
$limit = 10;
$page = Flight::request()->query->page ?: 1;
$offset = ($page - 1) * $limit;
$res = $db->query("SELECT id, title, url FROM docs ORDER BY id DESC LIMIT $limit OFFSET $offset");
$data = [];
while ($row = $res->fetch_assoc()) {
$t = html_entity_decode($row['title']);
$row['title'] = $t;
array_push($data, $row);
}
Flight::json($data);
});
// Route ajax index
Flight::route('/ajax/index', function() {
$db = Flight::db();
$limit = 10;
$page = Flight::request()->query->page ?: 1;
$offset = ($page - 1) * $limit;
$res = $db->query("SELECT * FROM indexes ORDER BY id LIMIT $limit OFFSET $offset");
$data = [];
while ($row = $res->fetch_assoc()) {
array_push($data, $row);
}
Flight::json($data);
});
// Route ajax vector
Flight::route('/ajax/vector', function() {
$db = Flight::db();
$limit = 10;
$page = Flight::request()->query->page ?: 1;
$offset = ($page - 1) * $limit;
$res = $db->query("SELECT * FROM vector ORDER BY doc_id LIMIT $limit OFFSET $offset");
$data = [];
while ($row = $res->fetch_assoc()) {
array_push($data, $row);
}
Flight::json($data);
});
// Route ajax cache
Flight::route('/ajax/cache', function() {
$db = Flight::db();
$limit = 10;
$page = Flight::request()->query->page ?: 1;
$offset = ($page - 1) * $limit;
$res = $db->query("SELECT * FROM cache ORDER BY id LIMIT $limit OFFSET $offset");
$data = [];
while ($row = $res->fetch_assoc()) {
array_push($data, $row);
}
Flight::json($data);
});
// Route index
Flight::route('/', function() {
// Render page
Flight::render('index');
});
// Start flight
Flight::start();