diff options
author | M.Gergo | 2019-03-08 21:20:34 +0100 |
---|---|---|
committer | M.Gergo | 2019-03-08 21:20:34 +0100 |
commit | f51c9ed2abe5c68211bb3736be5f70b1fe2c9ec0 (patch) | |
tree | e13e60e4b94a3b58f1e2bfbe271102c8f04b67bd /mayor-orig/www/policy/public/rpc | |
parent | c76a004b0135786f2742283f8d5f917106f58bd8 (diff) | |
download | mayor-f51c9ed2abe5c68211bb3736be5f70b1fe2c9ec0.tar.gz mayor-f51c9ed2abe5c68211bb3736be5f70b1fe2c9ec0.zip |
további rendrakás
Diffstat (limited to 'mayor-orig/www/policy/public/rpc')
-rw-r--r-- | mayor-orig/www/policy/public/rpc/naplo/rpc-pre.php | 70 | ||||
-rw-r--r-- | mayor-orig/www/policy/public/rpc/rpc-pre.php | 43 |
2 files changed, 0 insertions, 113 deletions
diff --git a/mayor-orig/www/policy/public/rpc/naplo/rpc-pre.php b/mayor-orig/www/policy/public/rpc/naplo/rpc-pre.php deleted file mode 100644 index aba7552f..00000000 --- a/mayor-orig/www/policy/public/rpc/naplo/rpc-pre.php +++ /dev/null @@ -1,70 +0,0 @@ -<?php -/* - module: mayor-base - - A alap metódusok RPC kezelője - -*/ - require_once('include/share/ssl/ssl.php'); - require_once('include/modules/naplo/share/rpc.php'); - - /* - rights.php: - $_RPC['senderNodeId'] - $RPC = new Interconnect(); - $RPC->setRemoteHostByNodeId($senderNodeId); - $RPC->processRequest(); - $_RPC['request'] = $RPC->getIncomingRequest(); - */ - $func = $_RPC['request']['func']; - // processing - $DATA = array(); - if (isset($func) && $func!='') { - switch ($func) { - // itt a currens verziót kellene visszaadni - case 'getVersion': - case 'ping': - $DATA = array('func'=>'getVersion','revision'=>_MAYORREV,'pong'); - $RPC->setResponse($DATA); - break; - case 'getPrivilegeInfo': - $nodeId = $_RPC['senderNodeId']; - $userAccount = readVariable($_RPC['request']['userAccount'], 'string'); - $OMKod = readVariable($_RPC['request']['OMKod'],'numeric unsigned'); - $priv = explode(',',getRPCPrivilegeByNUO($nodeId, $userAccount, $OMKod)); - if (is_array($priv) && in_array('Jogosultság',$priv)) { - $DATA = array('func'=>'getPrivilegeInfo','result'=>'success','priv'=>$priv); - } else { - $DATA = array('func'=>'getPrivilegeInfo','result'=>'failure','alert'=>'message:insufficient_access'); - } - $RPC->setResponse($DATA); - break; - case 'getTantargyfelosztasStat': - $nodeId = $_RPC['senderNodeId']; - $userAccount = readVariable($_RPC['request']['userAccount'], 'string'); - $OMKod = readVariable($_RPC['request']['OMKod'],'numeric unsigned'); // a naplo/base/rights már felhasználta az __INTEZMENY beállításnál - $priv = explode(',',getRPCPrivilegeByNUO($nodeId, $userAccount, $OMKod)); - if (is_array($priv) && in_array('Tantárgyfelosztás',$priv)) { - // Az __INTEZMENY és __TANEV beállítását a naplo/rights.php már elvégezte... - - require_once('include/modules/naplo/share/intezmenyek.php'); - require_once('include/modules/naplo/share/osztaly.php'); - require_once('include/modules/naplo/share/targy.php'); - require_once('include/modules/naplo/share/tankor.php'); - require_once('include/modules/naplo/stat/tantargyFelosztas.php'); - global $ADAT; $ADAT = array(); - $IA = getTantargyfelosztasStat(); - - $DATA = array('func'=>'getTantargyfelosztasStat','result'=>'success','tanev'=>__TANEV,'intezmeny'=>__INTEZMENY, 'IA'=>$IA); - } else { - $DATA = array('func'=>'getTantargyfelosztasStat','result'=>'failure','alert'=>'message:insufficient_access'); - } - $RPC->setResponse($DATA); - break; - default: - $DATA['result'] = 'ismeretlen függvény: '.$func; - break; - } - - } -?> diff --git a/mayor-orig/www/policy/public/rpc/rpc-pre.php b/mayor-orig/www/policy/public/rpc/rpc-pre.php deleted file mode 100644 index 30336e9e..00000000 --- a/mayor-orig/www/policy/public/rpc/rpc-pre.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php -/* - module: mayor-base - - A alap metódusok RPC kezelője - -*/ - require_once('include/share/ssl/ssl.php'); - - try - { - /* - rights.php: - $RPC = new Interconnect(); - $RPC->setRemoteHostByNodeId($senderNodeId); - $REQUEST = $RPC->processRequest(); - */ - $REQUEST = $RPC->getIncomingRequest(); - $func = $REQUEST['func']; - - } - catch (Exception $e) - { - $func=''; - $DATA = array('error'=>$e->getMessage()); - } - // processing - $DATA = array(); - if (isset($func) && $func!='') { - switch ($func) { - // itt a currens verziót kellene visszaadni - case 'getVersion': - case 'ping': - $DATA = array('func'=>'getVersion','revision'=>_MAYORREV,'pong'); - $RPC->setResponse($DATA); - break; - default: - $DATA['result'] = 'ismeretlen függvény: '.$func; - break; - } - - } -?> |