mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 02:46:30 +00:00
36 lines
980 B
PHP
36 lines
980 B
PHP
<?
|
|
if (!empty($_GET['id']) && is_number($_GET['id'])) { //Visiting article via ID
|
|
$ArticleID = $_GET['id'];
|
|
} elseif ($_GET['name'] != '') { //Retrieve article ID via alias.
|
|
$ArticleID = Wiki::alias_to_id($_GET['name']);
|
|
} else {
|
|
json_die("failure");
|
|
}
|
|
|
|
if (!$ArticleID) { //No article found
|
|
json_die("failure", "article not found");
|
|
}
|
|
$Article = Wiki::get_article($ArticleID, false);
|
|
|
|
if (!$Article) {
|
|
json_die("failure", "article not found");
|
|
}
|
|
list($Revision, $Title, $Body, $Read, $Edit, $Date, $AuthorID, $AuthorName, $Aliases, $UserIDs) = array_shift($Article);
|
|
if ($Read > $LoggedUser['EffectiveClass']) {
|
|
json_die("failure", "higher user class required to view article");
|
|
}
|
|
|
|
Text::$TOC = true;
|
|
$TextBody = Text::full_format($Body, false);
|
|
|
|
json_die("success", array(
|
|
'title' => $Title,
|
|
'bbBody' => $Body,
|
|
'body' => $TextBody,
|
|
'aliases' => $Aliases,
|
|
'authorID' => (int)$AuthorID,
|
|
'authorName' => $AuthorName,
|
|
'date' => $Date,
|
|
'revision' => (int)$Revision
|
|
));
|