Browse Source

Make it possible to disable API, disable it by default

pull/40/head
ctrlcctrlv 11 years ago
parent
commit
a29a9324ea
  1. 9
      inc/config.php
  2. 8
      inc/functions.php

9
inc/config.php

@ -1342,6 +1342,15 @@
// return 'Sorry, you cannot post that!';
// });
/*
* =============
* API settings
* =============
*/
// Whether or not to use the API, disabled by default.
$config['api']['enabled'] = false;
/*
* ====================
* Other/uncategorized

8
inc/functions.php

@ -1299,8 +1299,10 @@ function buildIndex() {
if (!$config['try_smarter'])
$antibot = create_antibot($board['uri']);
if ($config['api']['enabled']) {
$api = new Api();
$catalog = array();
}
for ($page = 1; $page <= $config['max_pages']; $page++) {
$filename = $board['dir'] . ($page == 1 ? $config['file_index'] : sprintf($config['file_page'], $page));
@ -1324,6 +1326,7 @@ function buildIndex() {
file_write($filename, Element('index.html', $content));
// json api
if ($config['api']['enabled']) {
$threads = $content['threads'];
$json = json_encode($api->translatePage($threads));
$jsonFilename = $board['dir'] . ($page-1) . ".json"; // pages should start from 0
@ -1331,6 +1334,7 @@ function buildIndex() {
$catalog[$page-1] = $threads;
}
}
if ($page < $config['max_pages']) {
for (;$page<=$config['max_pages'];$page++) {
$filename = $board['dir'] . ($page==1 ? $config['file_index'] : sprintf($config['file_page'], $page));
@ -1342,10 +1346,12 @@ function buildIndex() {
}
// json api catalog
if ($config['api']['enabled']) {
$json = json_encode($api->translateCatalog($catalog));
$jsonFilename = $board['dir'] . "catalog.json";
file_write($jsonFilename, $json);
}
}
function buildJavascript() {
global $config;
@ -1765,10 +1771,12 @@ function buildThread($id, $return = false, $mod = false) {
$build_pages[] = thread_find_page($id);
// json api
if ($config['api']['enabled']) {
$api = new Api();
$json = json_encode($api->translateThread($thread));
$jsonFilename = $board['dir'] . $config['dir']['res'] . $id . ".json";
file_write($jsonFilename, $json);
}
if ($return) {
return $body;

Loading…
Cancel
Save