2017-04-13 22:46:51 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
if (!defined('DC_CONTEXT_ADMIN')) { return; }
|
|
|
|
|
2017-04-27 19:35:58 +02:00
|
|
|
require_once(dirname(__FILE__).'/inc/class.rest.key.php');
|
|
|
|
$apiKey = new ApiKey;
|
2017-04-13 22:46:51 +02:00
|
|
|
|
|
|
|
// Setting default parameters if missing configuration
|
|
|
|
$core->blog->settings->addNamespace('rest');
|
|
|
|
if (is_null($core->blog->settings->rest->rest_active)) {
|
|
|
|
try {
|
|
|
|
// Default state is active if the comments are configured to allow wiki syntax
|
|
|
|
$core->blog->settings->rest->put('rest_active',false,'boolean',true);
|
|
|
|
$core->blog->settings->rest->put('rest_is_open',false,'boolean',true);
|
|
|
|
$core->blog->triggerBlog();
|
|
|
|
http::redirect($p_url);
|
|
|
|
}
|
|
|
|
catch (Exception $e) {
|
|
|
|
$core->error->add($e->getMessage());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Getting current parameters
|
|
|
|
$active = (boolean)$core->blog->settings->rest->rest_active;
|
|
|
|
$openApi = (boolean)$core->blog->settings->rest->rest_is_open;
|
|
|
|
|
2017-04-27 19:35:58 +02:00
|
|
|
//Sousmission Formulaire parametres
|
|
|
|
if ((!empty($_POST['saveconfig'])) && ($core->auth->isSuperAdmin())) {
|
2017-04-13 22:46:51 +02:00
|
|
|
try
|
|
|
|
{
|
|
|
|
$core->blog->settings->addNameSpace('rest');
|
|
|
|
$active = (empty($_POST['active'])) ? false : true;
|
|
|
|
$core->blog->settings->rest->put('rest_active',$active,'boolean');
|
|
|
|
|
|
|
|
$openApi = (empty($_POST['open'])) ? false : true;
|
|
|
|
$core->blog->settings->rest->put('rest_is_open',$openApi,'boolean');
|
|
|
|
|
|
|
|
dcPage::addSuccessNotice(__('Configuration successfully updated.'));
|
|
|
|
http::redirect($p_url);
|
|
|
|
}catch (Exception $e)
|
|
|
|
{
|
|
|
|
$core->error->add($e->getMessage());
|
|
|
|
}
|
|
|
|
}
|
2017-04-27 19:35:58 +02:00
|
|
|
//Sousmission Formulaire Reset API Key
|
|
|
|
if(!empty($_POST['resetApiKey'])){
|
|
|
|
$core->blog->settings->addNameSpace('rest');
|
|
|
|
$apiKey -> new_key($core->auth->userID());
|
|
|
|
dcPage::addSuccessNotice(__('Your new key is').' '.$apiKey->key);
|
|
|
|
}
|
|
|
|
//is user admin isSuperAdmin
|
|
|
|
|
2017-04-13 22:46:51 +02:00
|
|
|
?>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Rest API config</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
2017-04-27 19:35:58 +02:00
|
|
|
<h2><?php echo __('Your API key');?></h2>
|
|
|
|
<?php echo $apiKey-> get_dc_admin_form($core->auth->userID()); ?>
|
|
|
|
|
|
|
|
<?php if($core->auth->isSuperAdmin()): ?>
|
|
|
|
|
2017-04-13 22:46:51 +02:00
|
|
|
<h2>Rest API configuration</h2>
|
|
|
|
<form method="post" action="<?php http::getSelfURI(); ?>">
|
|
|
|
<p>
|
|
|
|
<?php echo form::checkbox('active', 1, $active); ?>
|
|
|
|
<label class="classic" for="active"> <?php echo __('Enable REST API');?></label>
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<?php echo form::checkbox('open', 1, $openApi); ?>
|
|
|
|
<label class="classic" for="open"> <?php echo __('API is open');?></label>
|
|
|
|
</p>
|
2017-04-27 19:35:58 +02:00
|
|
|
<p class="info"><?php echo __("If checked, few methods as GET will be allowed to externals users without API key.
|
|
|
|
However, they won't be able to request for non public content."); ?></p>
|
2017-04-13 22:46:51 +02:00
|
|
|
<?php echo $core->formNonce(); ?>
|
|
|
|
<p>
|
|
|
|
<input type="submit" name="saveconfig" value="<?php echo __('Save configuration'); ?>" />
|
|
|
|
</p>
|
|
|
|
|
|
|
|
</from>
|
2017-04-27 19:35:58 +02:00
|
|
|
<?php endif; ?>
|
2017-04-13 22:46:51 +02:00
|
|
|
</body>
|
2017-04-27 19:35:58 +02:00
|
|
|
</html>
|