Code Update in Progress

Please refresh the page in 10 minutes.

'; return Response::html($html); } $view = isset($_GET['view']) ? $_GET['view'] : false; function utf8ize($d) { if (is_array($d)) { foreach ($d as $k => $v) { $d[$k] = utf8ize($v); } } else if (is_string ($d)) { return mb_convert_encoding($d, 'UTF-8', 'UTF-8'); } return $d; } switch ($view) { case 'dictionary': { $html = file_get_contents(realpath(dirname(__FILE__) . '/./template-view.html')); $dict = isset($_GET['dict']) ? $_GET['dict'] : false; if ($dict !== false) { require_once(realpath(dirname(__FILE__) . '/./api/PublicDictionary.php')); $dictionary = new PublicDictionary($dict); $dictionary_data = $dictionary->details; if ($dictionary_data !== false) { $dictionary_data['words'] = $dictionary->words; $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); $dictionary_json = json_encode(utf8ize($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); } return Response::html($html); } break; } case 'word': { $html = file_get_contents(realpath(dirname(__FILE__) . '/./template-view.html')); $dict = isset($_GET['dict']) ? $_GET['dict'] : false; $word = isset($_GET['word']) ? $_GET['word'] : false; if ($dict !== false && $word !== false) { require_once(realpath(dirname(__FILE__) . '/./api/PublicDictionary.php')); $dictionary = new PublicDictionary($dict, true); $dictionary_data = $dictionary->details; 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(utf8ize($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); } return Response::html($html); } break; } default: { $html = file_get_contents(realpath(dirname(__FILE__) . '/./template-index.html')); $announcements = file_get_contents(realpath(dirname(__FILE__) . '/./announcements.json')); $announcements = json_decode($announcements, true); $announcements_html = ''; foreach ($announcements as $announcement) { $expire = strtotime($announcement['expire']); if (time() < $expire) { $announcements_html .= '
×︎

' . $announcement['header'] . '

' . $announcement['body'] . '
'; } } $html = str_replace('{{announcements}}', $announcements_html, $html); $upup_files = array( 'goodie-bag.js', 'src.js', 'main.css', 'help.html', 'privacy.html', 'terms.html', 'usage.html', 'ipa-table.html', 'favicon.png', ); $files = array_map(function($file_name) use($upup_files) { foreach($upup_files as $index => $upup_file) { $file_pieces = explode('.', $upup_file); if (substr($file_name, 0, strlen($file_pieces[0])) === $file_pieces[0] && substr($file_name, -strlen($file_pieces[1])) === $file_pieces[1]) { return str_replace('\\', '/', $file_name); } } return false; }, scandir('.')); $files = array_filter($files); $upup_insert = " "; $html = str_replace('{{upup_insert}}', $upup_insert, $html); $imported_from_http = ''; if (isset($_POST['oldDictionaryFromHTTP'])) { $imported_from_http = ''; } $html = str_replace('{{imported_from_http}}', $imported_from_http, $html); return Response::html($html); break; } }