api.php: using depedency injection instead of globals

This commit is contained in:
fowr
2022-08-05 11:16:53 -03:00
committed by Zankaria
parent 4d8a4db338
commit 4f68166870
2 changed files with 14 additions and 8 deletions

View File

@@ -1730,7 +1730,11 @@ function buildIndex($global_api = "yes") {
$antibot = null;
if ($config['api']['enabled']) {
$api = new Api();
$api = new Api(
$config['show_filename'],
$config['hide_email'],
$config['country_flags']
);
$catalog = array();
}
@@ -2388,7 +2392,11 @@ function buildThread($id, $return = false, $mod = false) {
// json api
if ($config['api']['enabled'] && !$mod) {
$api = new Api();
$api = new Api(
$config['show_filename'],
$config['hide_email'],
$config['country_flags']
);
$json = json_encode($api->translateThread($thread));
$jsonFilename = $board['dir'] . $config['dir']['res'] . $id . '.json';
file_write($jsonFilename, $json);