Subversion Repositories oidplus

Rev

Rev 321 | 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('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("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("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("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("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("Please enter a valid value (0 or 1).");
  60.                         }
  61.                 });
  62.         }
  63.  
  64.         public function gui($id, &$out, &$handled) {
  65.                 if ($id === 'oidplus:colors') {
  66.                         $handled = true;
  67.                         $out['title'] = 'Colors';
  68.                         $out['icon']  = OIDplus::webpath(__DIR__).'icon_big.png';
  69.  
  70.                         if (!OIDplus::authUtils()::isAdminLoggedIn()) {
  71.                                 $out['icon'] = 'img/error_big.png';
  72.                                 $out['text'] = '<p>You need to <a '.OIDplus::gui()->link('oidplus:login').'>log in</a> as administrator.</p>';
  73.                                 return;
  74.                         }
  75.  
  76.                         $out['text']  = '<br><p>';
  77.                         $out['text'] .= '  <label for="amount">Hue shift:</label>';
  78.                         $out['text'] .= '  <input type="text" id="hshift" readonly style="border:0; background:transparent; font-weight:bold;">';
  79.                         $out['text'] .= '</p>';
  80.                         $out['text'] .= '<div id="slider-hshift"></div>';
  81.  
  82.                         $out['text'] .= '<br><p>';
  83.                         $out['text'] .= '  <label for="amount">Saturation shift:</label>';
  84.                         $out['text'] .= '  <input type="text" id="sshift" readonly style="border:0; background:transparent; font-weight:bold;">';
  85.                         $out['text'] .= '</p>';
  86.                         $out['text'] .= '<div id="slider-sshift"></div>';
  87.  
  88.                         $out['text'] .= '<br><p>';
  89.                         $out['text'] .= '  <label for="amount">Value shift:</label>';
  90.                         $out['text'] .= '  <input type="text" id="vshift" readonly style="border:0; background:transparent; font-weight:bold;">';
  91.                         $out['text'] .= '</p>';
  92.                         $out['text'] .= '<div id="slider-vshift"></div>';
  93.  
  94.                         $out['text'] .= '<br><p>';
  95.                         $out['text'] .= '  <label for="amount">Invert colors:</label>';
  96.                         $out['text'] .= '  <input type="text" id="icolor" readonly style="border:0; background:transparent; font-weight:bold;">';
  97.                         $out['text'] .= '</p>';
  98.                         $out['text'] .= '<div id="slider-icolor"></div>';
  99.  
  100.                         $out['text'] .= '<script>';
  101.                         $out['text'] .= 'if (g_hue_shift == null) g_hue_shift = g_hue_shift_saved = '.OIDplus::config()->getValue('color_hue_shift').";\n";
  102.                         $out['text'] .= 'if (g_sat_shift == null) g_sat_shift = g_sat_shift_saved = '.OIDplus::config()->getValue('color_sat_shift').";\n";
  103.                         $out['text'] .= 'if (g_val_shift == null) g_val_shift = g_val_shift_saved = '.OIDplus::config()->getValue('color_val_shift').";\n";
  104.                         $out['text'] .= 'if (g_invcolors == null) g_invcolors = g_invcolors_saved = '.OIDplus::config()->getValue('color_invert').";\n";
  105.                         $out['text'] .= 'setup_color_sliders();';
  106.                         $out['text'] .= '</script>';
  107.  
  108.                         $out['text'] .= '<br>';
  109.                         $out['text'] .= '<input type="button" onclick="color_reset_sliders_cfg()" value="Reset to last saved config">'.str_repeat('&nbsp;',5);
  110.                         $out['text'] .= '<input type="button" onclick="color_reset_sliders_factory()" value="Reset default setting">'.str_repeat('&nbsp;',5);
  111.                         $out['text'] .= '<input type="button" onclick="test_color_theme()" value="Test">'.str_repeat('&nbsp;',5);
  112.                         $out['text'] .= '<input type="button" onclick="crudActionColorUpdate()" value="Set permanently">';
  113.                 }
  114.         }
  115.  
  116.         public function tree(&$json, $ra_email=null, $nonjs=false, $req_goto='') {
  117.                 if (!OIDplus::authUtils()::isAdminLoggedIn()) return false;
  118.  
  119.                 if (file_exists(__DIR__.'/treeicon.png')) {
  120.                         $tree_icon = OIDplus::webpath(__DIR__).'treeicon.png';
  121.                 } else {
  122.                         $tree_icon = null; // default icon (folder)
  123.                 }
  124.  
  125.                 $json[] = array(
  126.                         'id' => 'oidplus:colors',
  127.                         'icon' => $tree_icon,
  128.                         'text' => 'Colors'
  129.                 );
  130.  
  131.                 return true;
  132.         }
  133.  
  134.         public function tree_search($request) {
  135.                 return false;
  136.         }
  137.  
  138.         public function implementsFeature($id) {
  139.                 if (strtolower($id) == '1.3.6.1.4.1.37476.2.5.2.3.1') return true; // oobeEntry
  140.                 return false;
  141.         }
  142.  
  143.         public function oobeEntry($step, $do_edits, &$errors_happened)/*: void*/ {
  144.                 // Interface 1.3.6.1.4.1.37476.2.5.2.3.1
  145.  
  146.                 echo "<p><u>Step $step: Color Theme</u></p>";
  147.  
  148.                 echo '<input type="checkbox" name="color_invert" id="color_invert"';
  149.                 if (isset($_REQUEST['sent'])) {
  150.                         if ($set_value = isset($_REQUEST['color_invert'])) {
  151.                                 echo ' checked';
  152.                         }
  153.                 } else {
  154.                         if (OIDplus::config()->getValue('color_invert') == 1) {
  155.                                 echo ' checked';
  156.                         }
  157.                 }
  158.                 echo '> <label for="color_invert">Dark Theme (inverted colors)</label><br>';
  159.  
  160.                 $msg = '';
  161.                 if ($do_edits) {
  162.                         try {
  163.                                 OIDplus::config()->setValue('color_invert', $set_value ? 1 : 0);
  164.                         } catch (Exception $e) {
  165.                                 $msg = $e->getMessage();
  166.                                 $errors_happened = true;
  167.                         }
  168.                 }
  169.  
  170.                 echo ' <font color="red"><b>'.$msg.'</b></font>';
  171.         }
  172.  
  173. }
  174.