mirror of
https://github.com/oddluck/limnoria-plugins.git
synced 2025-04-26 13:01:09 -05:00
git-subtree-dir: TriviaTime git-subtree-mainline: 3551587ecdefc75e34b8b2a87d91a466bdf4c764 git-subtree-split: ae216897cd9c45259853c3f84eae826f344482aa
146 lines
4.6 KiB
PHP
146 lines
4.6 KiB
PHP
<?php
|
|
class AdminEditController extends Controller
|
|
{
|
|
protected $formats = array('html', 'json');
|
|
|
|
protected function getGetVariable($key) {
|
|
if(array_key_exists($key, $_GET)) {
|
|
return $_GET[$key];
|
|
}
|
|
return null;
|
|
}
|
|
|
|
protected function getFormat() {
|
|
$format = $this->getGetVariable('format');
|
|
if(is_null($format) || !in_array($format, $this->formats)) {
|
|
$format = 'html';
|
|
}
|
|
return $format;
|
|
}
|
|
|
|
protected function createResponseArray($errorBool, $status, $message) {
|
|
$response = array();
|
|
if($errorBool) {
|
|
$errorBool = true;
|
|
} else {
|
|
$errorBool = false;
|
|
}
|
|
$response['error'] = $errorBool;
|
|
$response['status'] = strval($status);
|
|
$response['message'] = strval($message);
|
|
return $response;
|
|
}
|
|
|
|
protected function doHtmlResponse($response) {
|
|
if(isset($response['error'])){
|
|
if($response['error']) {
|
|
$this->setError("<strong>Error:</strong> " . $response['message']);
|
|
} else {
|
|
$this->setNotice("<strong>Success:</strong> " . $response['message']);
|
|
}
|
|
}
|
|
$this->redirect($this->container->router->generate('reports'));
|
|
}
|
|
|
|
protected function doJsonResponse($response) {
|
|
$this->render('admin.json.php', $response, false);
|
|
die();
|
|
}
|
|
|
|
protected function doDbErrorResponse($format) {
|
|
$response = $this->createResponseArray(true, "error", "Encountered database error.");
|
|
$this->doResponse($response, $format);
|
|
}
|
|
|
|
protected function doResponse($response, $format) {
|
|
if($format==='json') {
|
|
$this->doJsonResponse($response);
|
|
} else {
|
|
$this->doHtmlResponse($response);
|
|
}
|
|
}
|
|
|
|
public function removeEditAction($args) {
|
|
$format = $this->getFormat();
|
|
|
|
$id = -1;
|
|
if(array_key_exists('id', $args)) {
|
|
$id = $args['id'];
|
|
}
|
|
|
|
if($id < 0) {
|
|
$response = $this->createResponseArray(true, 'error', 'Id can only be positive.');
|
|
$this->doResponse($response, $format);
|
|
}
|
|
|
|
$login = $this->container->login;
|
|
if(!$login->isLoggedIn()) {
|
|
$response = $this->createResponseArray(true, 'error', 'You must be logged in to remove edits.');
|
|
$this->doResponse($response, $format);
|
|
}
|
|
|
|
try {
|
|
$editExists = $this->container->storage->editExists($id);
|
|
} catch(StorageException $e) {
|
|
$this->doDbErrorResponse($format);
|
|
}
|
|
if(!$editExists) {
|
|
$response = $this->createResponseArray(true, 'error', 'That edit does not exist.');
|
|
$this->doResponse($response, $format);
|
|
}
|
|
|
|
try {
|
|
$this->container->storage->removeEdit($id);
|
|
} catch(StorageException $e) {
|
|
$this->doDbErrorResponse($format);
|
|
}
|
|
$response = $this->createResponseArray(false, 'success', 'Edit has been removed.');
|
|
$this->doResponse($response, $format);
|
|
}
|
|
|
|
public function createEditAction($args) {
|
|
|
|
}
|
|
|
|
public function acceptEditAction($args) {
|
|
$format = $this->getFormat();
|
|
|
|
$id = -1;
|
|
if(array_key_exists('id', $args)) {
|
|
$id = $args['id'];
|
|
}
|
|
|
|
if($id < 0) {
|
|
$response = $this->createResponseArray(true, 'error', 'Id can only be positive.');
|
|
$this->doResponse($response, $format);
|
|
}
|
|
|
|
$login = $this->container->login;
|
|
if(!$login->isLoggedIn()) {
|
|
$response = $this->createResponseArray(true, 'error', 'You must be logged in to accept edits.');
|
|
$this->doResponse($response, $format);
|
|
}
|
|
|
|
try {
|
|
$edit = $this->container->storage->getEditById($id);
|
|
} catch(StorageException $e) {
|
|
$this->doDbErrorResponse($format);
|
|
}
|
|
if(count($edit) < 1) {
|
|
$response = $this->createResponseArray(true, 'error', 'That edit does not exist.');
|
|
$this->doResponse($response, $format);
|
|
}
|
|
$edit = $edit[0];
|
|
|
|
$count = 0;
|
|
try {
|
|
$this->container->storage->updateQuestion($edit['question_id'], $edit['question']);
|
|
$this->container->storage->removeEdit($id);
|
|
} catch(StorageException $e) {
|
|
$this->doDbErrorResponse($format);
|
|
}
|
|
$response = $this->createResponseArray(false, 'success', 'Edit has been accepted. Question has been updated.');
|
|
$this->doResponse($response, $format);
|
|
}
|
|
}
|