Subversion Repositories oidplus

Rev

Rev 409 | Go to most recent revision | Blame | Last modification | View Log | RSS feed

  1. <?php
  2.  
  3. /*
  4.  * OIDplus 2.0
  5.  * Copyright 2019 Daniel Marschall, ViaThinkSoft
  6.  *
  7.  * Licensed under the Apache License, Version 2.0 (the "License");
  8.  * you may not use this file except in compliance with the License.
  9.  * You may obtain a copy of the License at
  10.  *
  11.  *     http://www.apache.org/licenses/LICENSE-2.0
  12.  *
  13.  * Unless required by applicable law or agreed to in writing, software
  14.  * distributed under the License is distributed on an "AS IS" BASIS,
  15.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  16.  * See the License for the specific language governing permissions and
  17.  * limitations under the License.
  18.  */
  19.  
  20. class OIDplusPageAdminColors extends OIDplusPagePluginAdmin {
  21.  
  22.         public function action($actionID, $params) {
  23.                 if ($actionID == 'color_update') {
  24.                         if (!OIDplus::authUtils()::isAdminLoggedIn()) {
  25.                                 throw new OIDplusException(_L('You need to log in as administrator.'));
  26.                         }
  27.  
  28.                         OIDplus::config()->setValue('color_hue_shift', $params['hue_shift']);
  29.                         OIDplus::config()->setValue('color_sat_shift', $params['sat_shift']);
  30.                         OIDplus::config()->setValue('color_val_shift', $params['val_shift']);
  31.                         OIDplus::config()->setValue('color_invert',    $params['invcolors']);
  32.  
  33.                         OIDplus::logger()->log("[OK]A?", "Changed system color theme");
  34.  
  35.                         return array("status" => 0);
  36.                 } else {
  37.                         throw new OIDplusException(_L('Unknown action ID'));
  38.                 }
  39.         }
  40.  
  41.         public function init($html=true) {
  42.                 OIDplus::config()->prepareConfigKey('color_hue_shift', 'HSV Hue shift of CSS colors (-360..360)', '0', OIDplusConfig::PROTECTION_EDITABLE, function($value) {
  43.                         if (!is_numeric($value) || ($value < -360) || ($value > 360)) {
  44.                                 throw new OIDplusException(_L('Please enter a valid value.'));
  45.                         }
  46.                 });
  47.                 OIDplus::config()->prepareConfigKey('color_sat_shift', 'HSV Saturation shift of CSS colors (-100..100)', '0', OIDplusConfig::PROTECTION_EDITABLE, function($value) {
  48.                         if (!is_numeric($value) || ($value < -100) || ($value > 100)) {
  49.                                 throw new OIDplusException(_L('Please enter a valid value.'));
  50.                         }
  51.                 });
  52.                 OIDplus::config()->prepareConfigKey('color_val_shift', 'HSV Value shift of CSS colors (-100..100)', '0', OIDplusConfig::PROTECTION_EDITABLE, function($value) {
  53.                         if (!is_numeric($value) || ($value < -100) || ($value > 100)) {
  54.                                 throw new OIDplusException(_L('Please enter a valid value.'));
  55.                         }
  56.                 });
  57.                 OIDplus::config()->prepareConfigKey('color_invert', 'Invert colors? (0=no, 1=yes)', '0', OIDplusConfig::PROTECTION_EDITABLE, function($value) {
  58.                         if (!is_numeric($value) || ($value < 0) || ($value > 1)) {
  59.                                 throw new OIDplusException(_L('Please enter a valid value (0=no, 1=yes).'));
  60.                         }
  61.                 });
  62.                 OIDplus::config()->prepareConfigKey('oobe_colors_done', '"Out Of Box Experience" wizard for OIDplusPageAdminColors done once?', '0', OIDplusConfig::PROTECTION_HIDDEN, function($value) {});
  63.         }
  64.  
  65.         public function gui($id, &$out, &$handled) {
  66.                 if ($id === 'oidplus:colors') {
  67.                         $handled = true;
  68.                         $out['title'] = _L('Colors');
  69.                         $out['icon']  = OIDplus::webpath(__DIR__).'icon_big.png';
  70.  
  71.                         if (!OIDplus::authUtils()::isAdminLoggedIn()) {
  72.                                 $out['icon'] = 'img/error_big.png';
  73.                                 $out['text'] = '<p>'._L('You need to <a %1>log in</a> as administrator.',OIDplus::gui()->link('oidplus:login')).'</p>';
  74.                                 return;
  75.                         }
  76.  
  77.                         $out['text']  = '<br><p>';
  78.                         $out['text'] .= '  <label for="amount">'._L('Hue shift').':</label>';
  79.                         $out['text'] .= '  <input type="text" id="hshift" readonly style="border:0; background:transparent; font-weight:bold;">';
  80.                         $out['text'] .= '</p>';
  81.                         $out['text'] .= '<div id="slider-hshift"></div>';
  82.  
  83.                         $out['text'] .= '<br><p>';
  84.                         $out['text'] .= '  <label for="amount">'._L('Saturation shift').':</label>';
  85.                         $out['text'] .= '  <input type="text" id="sshift" readonly style="border:0; background:transparent; font-weight:bold;">';
  86.                         $out['text'] .= '</p>';
  87.                         $out['text'] .= '<div id="slider-sshift"></div>';
  88.  
  89.                         $out['text'] .= '<br><p>';
  90.                         $out['text'] .= '  <label for="amount">'._L('Value shift').':</label>';
  91.                         $out['text'] .= '  <input type="text" id="vshift" readonly style="border:0; background:transparent; font-weight:bold;">';
  92.                         $out['text'] .= '</p>';
  93.                         $out['text'] .= '<div id="slider-vshift"></div>';
  94.  
  95.                         $out['text'] .= '<br><p>';
  96.                         $out['text'] .= '  <label for="amount">'._L('Invert colors').':</label>';
  97.                         $out['text'] .= '  <input type="text" id="icolor" readonly style="border:0; background:transparent; font-weight:bold;">'; // TODO: It would be good if that was a checkbox
  98.                         $out['text'] .= '</p>';
  99.                         $out['text'] .= '<div id="slider-icolor"></div>';
  100.  
  101.                         $out['text'] .= '<script>';
  102.                         $out['text'] .= 'if (g_hue_shift == null) g_hue_shift = g_hue_shift_saved = '.OIDplus::config()->getValue('color_hue_shift').";\n";
  103.                         $out['text'] .= 'if (g_sat_shift == null) g_sat_shift = g_sat_shift_saved = '.OIDplus::config()->getValue('color_sat_shift').";\n";
  104.                         $out['text'] .= 'if (g_val_shift == null) g_val_shift = g_val_shift_saved = '.OIDplus::config()->getValue('color_val_shift').";\n";
  105.                         $out['text'] .= 'if (g_invcolors == null) g_invcolors = g_invcolors_saved = '.OIDplus::config()->getValue('color_invert').";\n";
  106.                         $out['text'] .= 'g_activetheme = '.js_escape(OIDplus::config()->getValue('design')).";\n";
  107.                         $out['text'] .= 'setup_color_sliders();';
  108.                         $out['text'] .= '</script>';
  109.  
  110.                         $out['text'] .= '<br>';
  111.                         $out['text'] .= '<input type="button" onclick="color_reset_sliders_cfg()" value="'._L('Reset to last saved config').'">'.str_repeat('&nbsp;',5);
  112.                         $out['text'] .= '<input type="button" onclick="color_reset_sliders_factory()" value="'._L('Reset default setting').'">'.str_repeat('&nbsp;',5);
  113.                         $out['text'] .= '<input type="button" onclick="test_color_theme()" value="'._L('Test').'">'.str_repeat('&nbsp;',5);
  114.                         $out['text'] .= '<input type="button" onclick="crudActionColorUpdate()" value="'._L('Set permanently').'">';
  115.                 }
  116.         }
  117.  
  118.         public function tree(&$json, $ra_email=null, $nonjs=false, $req_goto='') {
  119.                 if (!OIDplus::authUtils()::isAdminLoggedIn()) return false;
  120.  
  121.                 if (file_exists(__DIR__.'/treeicon.png')) {
  122.                         $tree_icon = OIDplus::webpath(__DIR__).'treeicon.png';
  123.                 } else {
  124.                         $tree_icon = null; // default icon (folder)
  125.                 }
  126.  
  127.                 $json[] = array(
  128.                         'id' => 'oidplus:colors',
  129.                         'icon' => $tree_icon,
  130.                         'text' => _L('Colors')
  131.                 );
  132.  
  133.                 return true;
  134.         }
  135.  
  136.         public function tree_search($request) {
  137.                 return false;
  138.         }
  139.  
  140.         public function implementsFeature($id) {
  141.                 if (strtolower($id) == '1.3.6.1.4.1.37476.2.5.2.3.1') return true; // oobeEntry, oobeRequested
  142.                 return false;
  143.         }
  144.  
  145.         public function oobeRequested(): bool {
  146.                 // Interface 1.3.6.1.4.1.37476.2.5.2.3.1
  147.  
  148.                 return OIDplus::config()->getValue('oobe_colors_done') == '0';
  149.         }
  150.  
  151.         public function oobeEntry($step, $do_edits, &$errors_happened)/*: void*/ {
  152.                 // Interface 1.3.6.1.4.1.37476.2.5.2.3.1
  153.  
  154.                 echo '<p><u>'._L('Step %1: Color Theme',$step).'</u></p>';
  155.  
  156.                 echo '<input type="checkbox" name="color_invert" id="color_invert"';
  157.                 if (isset($_REQUEST['sent'])) {
  158.                         if ($set_value = isset($_REQUEST['color_invert'])) {
  159.                                 echo ' checked';
  160.                         }
  161.                 } else {
  162.                         if (OIDplus::config()->getValue('color_invert') == 1) {
  163.                                 echo ' checked';
  164.                         }
  165.                 }
  166.                 echo '> <label for="color_invert">'._L('Dark Theme (inverted colors)').'</label><br>';
  167.  
  168.                 $msg = '';
  169.                 if ($do_edits) {
  170.                         try {
  171.                                 OIDplus::config()->setValue('color_invert', $set_value ? 1 : 0);
  172.                                 OIDplus::config()->setValue('oobe_colors_done', '1');
  173.                         } catch (Exception $e) {
  174.                                 $msg = $e->getMessage();
  175.                                 $errors_happened = true;
  176.                         }
  177.                 }
  178.  
  179.                 echo ' <font color="red"><b>'.$msg.'</b></font>';
  180.         }
  181.  
  182. }