2019-05-27 22:52:50 -06:00
|
|
|
<?php
|
|
|
|
$view = isset($_GET['view']) ? $_GET['view'] : false;
|
|
|
|
|
|
|
|
switch ($view) {
|
2019-05-30 11:20:02 -06:00
|
|
|
case 'dictionary': {
|
2019-06-05 12:42:39 -06:00
|
|
|
$html = file_get_contents('../template-view.html');
|
2019-05-28 22:23:59 -06:00
|
|
|
$dict = isset($_GET['dict']) ? $_GET['dict'] : false;
|
2019-05-27 22:52:50 -06:00
|
|
|
if ($dict !== false) {
|
|
|
|
require_once('./Dictionary.php');
|
|
|
|
$dictionary = new Dictionary();
|
|
|
|
$dictionary_data = $dictionary->getPublicDictionaryDetails($dict);
|
|
|
|
if ($dictionary_data !== false) {
|
|
|
|
$dictionary_data['words'] = $dictionary->getPublicDictionaryWords($dict);
|
|
|
|
$html = str_replace('{{dict}}', $dict, $html);
|
|
|
|
$html = str_replace('{{dict_name}}', $dictionary_data['name'] . ' ' . $dictionary_data['specification'], $html);
|
|
|
|
$html = str_replace('{{public_name}}', $dictionary_data['createdBy'], $html);
|
2019-05-28 00:12:17 -06:00
|
|
|
$dictionary_json = json_encode($dictionary_data);
|
|
|
|
$html = str_replace('{{dict_json}}', addslashes($dictionary_json), $html);
|
2019-05-28 22:23:59 -06:00
|
|
|
} else {
|
|
|
|
$html = str_replace('{{dict}}', 'error', $html);
|
|
|
|
$html = str_replace('{{dict_name}}', 'Error: Dictionary Not Found', $html);
|
|
|
|
$html = str_replace('{{public_name}}', 'Error', $html);
|
|
|
|
$html = str_replace('{{dict_json}}', '{"name": "Error:", "specification": "Dictionary Not Found", "words": []}', $html);
|
2019-05-27 22:52:50 -06:00
|
|
|
}
|
|
|
|
echo $html;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2019-05-30 11:20:02 -06:00
|
|
|
case 'word': {
|
2019-06-05 12:42:39 -06:00
|
|
|
$html = file_get_contents('../template-view.html');
|
2019-05-30 11:20:02 -06:00
|
|
|
$dict = isset($_GET['dict']) ? $_GET['dict'] : false;
|
|
|
|
$word = isset($_GET['word']) ? $_GET['word'] : false;
|
|
|
|
if ($dict !== false && $word !== false) {
|
|
|
|
require_once('./Dictionary.php');
|
|
|
|
$dictionary = new Dictionary();
|
|
|
|
$dictionary_data = $dictionary->getPublicDictionaryDetails($dict);
|
|
|
|
if ($dictionary_data !== false) {
|
|
|
|
$dictionary_name = $dictionary_data['name'] . ' ' . $dictionary_data['specification'];
|
|
|
|
$word_data = $dictionary->getSpecificPublicDictionaryWord($dict, $word);
|
|
|
|
if ($word_data === false) {
|
|
|
|
$word_data = array(
|
|
|
|
'name' => 'Error: Word Not Found',
|
|
|
|
'pronunciation' => '',
|
|
|
|
'partOfSpeech' => '',
|
|
|
|
'definition' => 'No word with the id ' . $word . ' was found in the ' . $dictionary_name,
|
|
|
|
'details' => '',
|
|
|
|
'lastUpdated' => null,
|
|
|
|
'createdOn' => null,
|
|
|
|
'wordId' => null,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
$dictionary_data['words'] = array($word_data);
|
|
|
|
$html = str_replace('{{dict}}', $dict, $html);
|
|
|
|
$html = str_replace('{{dict_name}}', $word_data['name'] . ' in the ' . $dictionary_name, $html);
|
|
|
|
$html = str_replace('{{public_name}}', $dictionary_data['createdBy'], $html);
|
|
|
|
$dictionary_json = json_encode($dictionary_data);
|
|
|
|
$html = str_replace('{{dict_json}}', addslashes($dictionary_json), $html);
|
|
|
|
} else {
|
|
|
|
$html = str_replace('{{dict}}', 'error', $html);
|
|
|
|
$html = str_replace('{{dict_name}}', 'Error: Dictionary Not Found', $html);
|
|
|
|
$html = str_replace('{{public_name}}', 'Error', $html);
|
|
|
|
$html = str_replace('{{dict_json}}', '{"name": "Error:", "specification": "Dictionary Not Found", "words": []}', $html);
|
|
|
|
}
|
|
|
|
echo $html;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2019-05-27 22:52:50 -06:00
|
|
|
}
|