Subversion Repositories oidplus

Rev

Rev 1050 | Rev 1201 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. <?php
  2.  
  3. /*
  4.  * OIDplus 2.0
  5.  * Copyright 2019 - 2022 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. use ViaThinkSoft\OIDplus\OIDplus;
  21. use ViaThinkSoft\OIDplus\OIDplusException;
  22.  
  23. require_once __DIR__ . '/includes/oidplus.inc.php';
  24.  
  25. try {
  26.         OIDplus::init(false);
  27.  
  28.         if (isset($_GET['OIDPLUS_AUTH_JWT']) || isset($_POST['OIDPLUS_AUTH_JWT'])) {
  29.                 originHeaders(); // Allows queries from other domains
  30.                 OIDplus::authUtils()->disableCSRF(); // allow access to ajax.php without valid CSRF token
  31.         }
  32.  
  33.         $json_out = null;
  34.  
  35.         if (isset($_REQUEST['plugin']) && ($_REQUEST['plugin'] != '')) {
  36.  
  37.                 // Actions handled by plugins
  38.  
  39.                 $plugin = OIDplus::getPluginByOid($_REQUEST['plugin']);
  40.                 if (!$plugin) {
  41.                         throw new OIDplusException(_L('Plugin with OID "%1" not found',$_REQUEST['plugin']));
  42.                 }
  43.  
  44.                 $params = array();
  45.                 foreach (array_merge($_POST,$_GET) as $name => $val) {
  46.                         if (($name != 'action') && ($name != 'plugin')) {
  47.                                 $params[$name] = $val;
  48.                         }
  49.                 }
  50.  
  51.                 if (isset($_REQUEST['action']) && ($_REQUEST['action'] != '')) {
  52.                         if ($plugin->csrfUnlock($_REQUEST['action'])) {
  53.                                 originHeaders(); // Allows queries from other domains
  54.                                 OIDplus::authUtils()->disableCSRF(); // allow access to ajax.php without valid CSRF token
  55.                         }
  56.  
  57.                         OIDplus::authUtils()->checkCSRF();
  58.  
  59.                         if (!OIDplus::baseconfig()->getValue('DISABLE_AJAX_TRANSACTIONS',false) && OIDplus::db()->transaction_supported()) {
  60.                                 OIDplus::db()->transaction_begin();
  61.                         }
  62.  
  63.                         $json_out = $plugin->action($_REQUEST['action'], $params);
  64.                         if (!isset($json_out['status'])) $json_out['status'] = -1;
  65.  
  66.                         if (!OIDplus::baseconfig()->getValue('DISABLE_AJAX_TRANSACTIONS',false) && OIDplus::db()->transaction_supported()) {
  67.                                 OIDplus::db()->transaction_commit();
  68.                         }
  69.                 } else {
  70.                         throw new OIDplusException(_L('Invalid action ID'));
  71.                 }
  72.  
  73.         } else {
  74.  
  75.                 // Actions handled by the system (base functionality like the JS tree)
  76.  
  77.                 OIDplus::authUtils()->checkCSRF();
  78.  
  79.                 if (isset($_REQUEST['action']) && ($_REQUEST['action'] == 'get_description')) {
  80.                         // Action:     get_description
  81.                         // Method:     GET / POST
  82.                         // Parameters: id
  83.                         // Outputs:    JSON
  84.                         _CheckParamExists($_REQUEST, 'id');
  85.                         $_REQUEST['id'] = OIDplus::prefilterQuery($_REQUEST['id'], false);
  86.                         try {
  87.                                 $json_out = OIDplus::gui()->generateContentPage($_REQUEST['id']);
  88.                         } catch (\Exception $e) {
  89.                                 $json_out = array();
  90.                                 $json_out['title'] = _L('Error');
  91.                                 $json_out['icon'] = 'img/error.png';
  92.                                 $json_out['text'] = $e->getMessage();
  93.                         }
  94.                         $json_out['status'] = 0;
  95.                 } else if (isset($_REQUEST['action']) && ($_REQUEST['action'] == 'tree_search')) {
  96.                         // Action:     tree_search
  97.                         // Method:     GET / POST
  98.                         // Parameters: search
  99.                         // Outputs:    JSON
  100.                         _CheckParamExists($_REQUEST, 'search');
  101.  
  102.                         $found = false;
  103.                         foreach (OIDplus::getPagePlugins() as $plugin) {
  104.                                 $json_out = $plugin->tree_search($_REQUEST['search']);
  105.                                 if ($json_out) {
  106.                                         $found = true;
  107.                                         break;
  108.                                 }
  109.                         }
  110.  
  111.                         if (!$found) {
  112.                                 $json_out = array();
  113.                         }
  114.                 } else if (isset($_REQUEST['action']) && ($_REQUEST['action'] == 'tree_load')) {
  115.                         // Action:     tree_load
  116.                         // Method:     GET / POST
  117.                         // Parameters: id; goto (optional)
  118.                         // Outputs:    JSON
  119.                         _CheckParamExists($_REQUEST, 'id');
  120.                         $_REQUEST['id'] = OIDplus::prefilterQuery($_REQUEST['id'], false);
  121.                         $json_out = OIDplus::menuUtils()->json_tree($_REQUEST['id'], isset($_REQUEST['goto']) ? $_REQUEST['goto'] : '');
  122.                 } else {
  123.                         throw new OIDplusException(_L('Invalid action ID'));
  124.                 }
  125.         }
  126.  
  127.         OIDplus::invoke_shutdown();
  128.  
  129.         @header('Content-Type:application/json; charset=utf-8');
  130.         echo json_encode($json_out);
  131.  
  132. } catch (\Exception $e) {
  133.  
  134.         try {
  135.                 if (!OIDplus::baseconfig()->getValue('DISABLE_AJAX_TRANSACTIONS',false) && OIDplus::db()->transaction_supported() && (OIDplus::db()->transaction_level() > 0)) {
  136.                         OIDplus::db()->transaction_rollback();
  137.                 }
  138.         } catch (\Exception $e1) {
  139.         }
  140.  
  141.         $errmsg = $e->getMessage();
  142.         $errmsg = strip_tags($errmsg);
  143.         $errmsg = html_entity_decode($errmsg, ENT_QUOTES, 'UTF-8');
  144.  
  145.         $json_out = array();
  146.         $json_out['status'] = -2;
  147.         $json_out['error'] = $errmsg;
  148.         $out = json_encode($json_out);
  149.  
  150.         if ($out === false) {
  151.                 // Some modules (like ODBC) might output non-UTF8 data
  152.                 $json_out['error'] = vts_utf8_encode($errmsg);
  153.                 $out = json_encode($json_out);
  154.         }
  155.  
  156.         @header('Content-Type:application/json; charset=utf-8');
  157.  
  158.         echo $out;
  159. }
  160.