diff --git a/media/js/office/config.js b/media/js/office/config.js new file mode 100644 index 0000000000000000000000000000000000000000..a0953fa8690840fef5bf34ef2cb31a05df5b1572 --- /dev/null +++ b/media/js/office/config.js @@ -0,0 +1,20 @@ +$(() => { + $('#config-save-button').click(function () { + $(this).prop('disabled', true); + let config = { + SemesterID : $("#SemesterID").val(), + HashKey : $("#HashKey").val(), + Logging : $("#Logging").prop('checked'), + SupportServiceEmail : $("#SupportServiceEmail").val(), + OpenIDAuthAllowed : $("#OpenIDAuthAllowed").prop('checked'), + GradeAuthAllowed : $("#GradeAuthAllowed").prop('checked'), + HTTPS : $("#HTTPS").prop('checked') + }; + $.post(URLdir + 'handler/config/index', {config}).done(result => { + Popup.success('Рзменения сохранены'); + location.reload(); + }).fail(result => { + Popup.error('Произошла ошибка'); + }); + }); +}); \ No newline at end of file diff --git a/media/less/common/forms.less b/media/less/common/forms.less index b74b84a0ce813469a119d803635ecf8a36b5ab2b..74438d480b92b27f1ebeecfe305133402b515529 100644 --- a/media/less/common/forms.less +++ b/media/less/common/forms.less @@ -42,7 +42,7 @@ border: 1px solid @ColorGrey; width: 100%; } - input[type=text]&, input[type=password]&, textarea& { + input[type=text]&, input[type=password]&, textarea&, input[type=number]& { padding: 7px; border-radius: 3px; border: 1px solid @ColorGrey; diff --git a/media/less/office/config.less b/media/less/office/config.less new file mode 100644 index 0000000000000000000000000000000000000000..db2532e46c03febff76a9b59dbd734e4247e8500 --- /dev/null +++ b/media/less/office/config.less @@ -0,0 +1,7 @@ +.config-container { + padding: 30px; + label { + padding-bottom: 10px; + display: block; + } +} \ No newline at end of file diff --git a/~dev_rating/application/classes/Controller/Handler/Config.php b/~dev_rating/application/classes/Controller/Handler/Config.php new file mode 100644 index 0000000000000000000000000000000000000000..0dcd4fb086cd3fc8e9135af1d9c1d2116586f2c7 --- /dev/null +++ b/~dev_rating/application/classes/Controller/Handler/Config.php @@ -0,0 +1,22 @@ +<?php defined('SYSPATH') || die('No direct script access.'); + +class Controller_Handler_Config extends Controller_Handler_Api +{ + public function action_index() { + $this->user->checkAccess(User::RIGHTS_ADMIN); + $config = $this->post["config"]; + $string = file_get_contents(APPPATH . "/config/general.json"); + $json_a = json_decode($string, true); + + foreach ($config as $key => $value) { + if ($value === "false") + $value = false; + elseif ($value === "true") + $value = true; + $json_a[$key] = $value; + } + + $string = json_encode($json_a, JSON_PRETTY_PRINT | JSON_NUMERIC_CHECK); + file_put_contents(APPPATH . "/config/general.json", $string); + } +} \ No newline at end of file diff --git a/~dev_rating/application/classes/Controller/Office/Config.php b/~dev_rating/application/classes/Controller/Office/Config.php new file mode 100644 index 0000000000000000000000000000000000000000..eda2aae475aaa4fb184f6a803403ab56764fe13d --- /dev/null +++ b/~dev_rating/application/classes/Controller/Office/Config.php @@ -0,0 +1,14 @@ +<?php defined('SYSPATH') || die('No direct script access.'); + +class Controller_Office_Config extends Controller_Environment_Office +{ + public function action_index() { + + $string = file_get_contents(APPPATH . "/config/general.json"); + $json_a = json_decode($string, true); + $this->twig->set([ + 'Tokens' => Model_Account::getAuthTokens(), + 'Config' => $json_a, + ])->set_filename(static::OFFICE . 'config/index'); + } +} \ No newline at end of file diff --git a/~dev_rating/application/views/office/config/index.twig b/~dev_rating/application/views/office/config/index.twig new file mode 100644 index 0000000000000000000000000000000000000000..ab633bd6c02ed5a2acbb98e0c53beda597a8cb32 --- /dev/null +++ b/~dev_rating/application/views/office/config/index.twig @@ -0,0 +1,58 @@ +{% extends 'office/base' %} + +{% block title %}Конфигурация{% endblock %} + +{% block office_media %} {# head -> css, js #} + {#{{ parent() }}#} {# fixme #} + {{ HTML.style('static/css/common/forms.css')|raw }} + {{ HTML.style('static/css/office/config.css')|raw }} + {{ HTML.script('static/js/office/config.js')|raw }} +{% endblock %} + + +{% block office_content %} + + <div class="config-container"> + + <label> + Текущий семестр: + <input class="defaultForm P2Width" type="number" id="SemesterID" value="{{ Config.SemesterID }}"> + </label> + + <label> + РҐСЌС€-ключ: + <input class="defaultForm Width35" type="text" id="HashKey" value="{{ Config.HashKey }}"> + </label> + + <label> + Логгирование: + <input class="defaultForm" type="checkbox" id="Logging" {{ Config.Logging == true ? "checked" : "unchecked" }}> + </label> + + <label> + Рлектронная почта поддержки + <input class="defaultForm Width35" type="text" id="SupportServiceEmail" value="{{ Config.SupportServiceEmail }}"> + </label> + + <label> + Авторизация через Open ID: + <input class="defaultForm" type="checkbox" id="OpenIDAuthAllowed" {{ Config.OpenIDAuthAllowed == true ? "checked" : "unchecked" }}> + </label> + + <label> + Авторизация через локальную учетную запись: + <input class="defaultForm" type="checkbox" id="GradeAuthAllowed" {{ Config.GradeAuthAllowed == true ? "checked" : "unchecked"}}> + </label> + + <label> + HTTPS: + <input class="defaultForm" type="checkbox" id="Https" {{ Config.Https == true ? "checked" : "unchecked"}}> + </label> + + <button class="defaultForm BlueButton P2Width" id="config-save-button"> + Сохранить + </button> + + </div> + +{% endblock %}