dc-rest/index.php

96 lines
3.3 KiB
PHP
Raw Normal View History

2017-04-13 22:46:51 +02:00
<?php
if (!defined('DC_CONTEXT_ADMIN')) { return; }
2017-04-30 17:38:07 +02:00
2017-04-27 19:35:58 +02:00
$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)) {
2017-05-05 21:46:14 +02:00
try {
$core->blog->settings->rest->put('rest_active',false,'boolean',true);
$core->blog->settings->rest->put('rest_is_open',false,'boolean',true);
$core->blog->settings->rest->put('rest_send_cors_headers',true,'boolean',true);
$core->blog->triggerBlog();
http::redirect($p_url);
}
catch (Exception $e) {
$core->error->add($e->getMessage());
}
2017-04-13 22:46:51 +02:00
}
// Getting current parameters
$active = (boolean)$core->blog->settings->rest->rest_active;
$openApi = (boolean)$core->blog->settings->rest->rest_is_open;
2017-04-27 20:01:47 +02:00
$sendHeaders =(boolean)$core->blog->settings->rest->rest_send_cors_headers;
2017-04-13 22:46:51 +02:00
2017-04-27 19:35:58 +02:00
//Sousmission Formulaire parametres
if ((!empty($_POST['saveconfig'])) && ($core->auth->isSuperAdmin())) {
2017-05-05 21:46:14 +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');
$sendHeaders = (empty($_POST['sendHeaders'])) ? false : true;
$core->blog->settings->rest->put('rest_send_cors_headers',$sendHeaders,'boolean');
dcPage::addSuccessNotice(__('Configuration successfully updated.'));
http::redirect($p_url);
}catch (Exception $e)
{
$core->error->add($e->getMessage());
}
2017-04-13 22:46:51 +02:00
}
2017-04-27 19:35:58 +02:00
//Sousmission Formulaire Reset API Key
if(!empty($_POST['resetApiKey'])){
2017-05-05 21:46:14 +02:00
$core->blog->settings->addNameSpace('rest');
$apiKey -> new_key($core->auth->userID());
dcPage::addSuccessNotice(__('Your new key is').' '.$apiKey->key);
2017-04-27 19:35:58 +02:00
}
2017-04-27 20:01:47 +02:00
2017-04-27 19:35:58 +02:00
2017-04-13 22:46:51 +02:00
?>
<html>
<head>
2017-05-11 23:10:01 +02:00
<title><?php echo __('REST API configuration'); ?></title>
2017-04-13 22:46:51 +02:00
</head>
<body>
2017-05-05 21:46:14 +02:00
<h2>Documentation</h2>
2017-05-11 23:10:01 +02:00
<p><a href="<?php echo $core->blog->url."rest/documentation" . '">' . __('Documentation and test interface Swagger UI') .'</a></p>'; ?>
2017-05-05 21:46:14 +02:00
<h2><?php echo __('Your API key');?></h2>
<?php echo $apiKey-> get_dc_admin_form($core->auth->userID()); ?>
2017-04-27 19:35:58 +02:00
2017-04-27 20:01:47 +02:00
<?php
//Seulement si administrateur:
if($core->auth->isSuperAdmin()):
?>
2017-05-05 21:46:14 +02:00
<h2><?php echo __('Rest API configuration'); ?></h2>
<form method="post" action="<?php http::getSelfURI(); ?>">
<p>
<?php echo form::checkbox('active', 1, $active); ?>
<label class="classic" for="active">&nbsp;<?php echo __('Enable REST API');?></label>
</p>
<p>
<?php echo form::checkbox('open', 1, $openApi); ?>
2017-05-11 23:10:01 +02:00
<label class="classic" for="open">&nbsp;<?php echo __('API is open without key');?></label>
2017-05-05 21:46:14 +02:00
</p>
2017-05-11 23:10:01 +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-05-05 21:46:14 +02:00
<?php echo $core->formNonce(); ?>
<p>
<?php echo form::checkbox('sendHeaders', 1, $sendHeaders); ?>
<label class="classic" for="sendHeaders">&nbsp;<?php echo __('Send Coors headers');?></label>
</p>
<p>
<input type="submit" name="saveconfig" value="<?php echo __('Save configuration'); ?>" />
</p>
</from>
2017-04-27 20:01:47 +02:00
<?php
endif;
?>
2017-04-13 22:46:51 +02:00
</body>
2017-04-27 19:35:58 +02:00
</html>