Browse Source

Custom fields in API, read config.php for info. Non-4chan compatible fields removed.

pull/40/head
ctrlcctrlv 11 years ago
committed by Michael Foster
parent
commit
ecda099dfb
  1. 27
      inc/api.php
  2. 6
      inc/config.php
  3. 4
      inc/functions.php

27
inc/api.php

@ -1,5 +1,4 @@
<?php
/*
* Copyright (c) 2010-2013 Tinyboard Development Group
*/
@ -8,42 +7,38 @@
* Class for generating json API compatible with 4chan API
*/
class Api {
function __construct($config){
/**
* Translation from local fields to fields in 4chan-style API
*/
public static $postFields = array(
$this->postFields = array(
'id' => 'no',
'thread' => 'resto',
'subject' => 'sub',
'body' => 'com',
'email' => 'email',
'name' => 'name',
'trip' => 'trip',
'capcode' => 'capcode',
'body' => 'com',
'time' => 'time',
'thumb' => 'thumb', // non-compatible field
'thumbx' => 'tn_w',
'thumby' => 'tn_h',
'file' => 'file', // non-compatible field
'filex' => 'w',
'filey' => 'h',
'filesize' => 'fsize',
//'filename' => 'filename',
'filename' => 'filename',
'omitted' => 'omitted_posts',
'omitted_images' => 'omitted_images',
//'posts' => 'replies',
//'ip' => '',
'sticky' => 'sticky',
'locked' => 'locked',
//'bumplocked' => '',
//'embed' => '',
//'root' => '',
//'mod' => '',
//'hr' => '',
);
static $ints = array(
if (isset($config['api']['extra_fields']) && gettype($config['api']['extra_fields']) == 'array'){
$this->postFields = array_merge($this->postFields, $config['api']['extra_fields']);
}
}
private static $ints = array(
'no' => 1,
'resto' => 1,
'time' => 1,
@ -60,7 +55,7 @@ class Api {
private function translatePost($post) {
$apiPost = array();
foreach (self::$postFields as $local => $translated) {
foreach ($this->postFields as $local => $translated) {
if (!isset($post->$local))
continue;

6
inc/config.php

@ -1294,6 +1294,12 @@
// Whether or not to use the API, disabled by default.
$config['api']['enabled'] = false;
// Extra fields in to be shown in the array that are not 4chan API compatible.
// You canget these by taking a look at the schema for posts_ tables. The array should be formatted as $db_name => $translated_name.
// For example:
// $config['api']['extra_fields'] = array('body_nomarkup'=>'com_nomarkup');
/*
* ====================
* Other/uncategorized

4
inc/functions.php

@ -1296,7 +1296,7 @@ function buildIndex() {
$antibot = create_antibot($board['uri']);
if ($config['api']['enabled']) {
$api = new Api();
$api = new Api($config);
$catalog = array();
}
@ -1771,7 +1771,7 @@ function buildThread($id, $return = false, $mod = false) {
// json api
if ($config['api']['enabled']) {
$api = new Api();
$api = new Api($config);
$json = json_encode($api->translateThread($thread));
$jsonFilename = $board['dir'] . $config['dir']['res'] . $id . ".json";
file_write($jsonFilename, $json);

Loading…
Cancel
Save