Subversion Repositories oidplus

Rev

Rev 1116 | Rev 1166 | 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 - 2023 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. namespace ViaThinkSoft\OIDplus;
  21.  
  22. // phpcs:disable PSR1.Files.SideEffects
  23. \defined('INSIDE_OIDPLUS') or die;
  24. // phpcs:enable PSR1.Files.SideEffects
  25.  
  26. class OIDplusPageRaEditContactData extends OIDplusPagePluginRa {
  27.  
  28.         /**
  29.          * @param string $actionID
  30.          * @param array $params
  31.          * @return array
  32.          * @throws OIDplusException
  33.          */
  34.         public function action(string $actionID, array $params): array {
  35.                 if ($actionID == 'change_ra_data') {
  36.                         _CheckParamExists($params, 'email');
  37.  
  38.                         $email = $params['email'];
  39.  
  40.                         if (!OIDplus::authUtils()->isRaLoggedIn($email) && !OIDplus::authUtils()->isAdminLoggedIn()) {
  41.                                 throw new OIDplusException(_L('Authentication error. Please log in as admin, or as the RA to update its data.'));
  42.                         }
  43.  
  44.                         $res = OIDplus::db()->query("select * from ###ra where email = ?", array($email));
  45.                         if (!$res->any()) {
  46.                                 throw new OIDplusException(_L('RA does not exist'));
  47.                         }
  48.  
  49.                         OIDplus::logger()->log("[?WARN/!OK]RA($email)?/[?INFO/!OK]A?", "Changed RA '$email' contact data/details");
  50.  
  51.                         if (isset($params['ra_name']))
  52.                                 OIDplus::db()->query("UPDATE ###ra SET ra_name = ? WHERE email = ?", array($params['ra_name'], $email));
  53.                         if (isset($params['organization']))
  54.                                 OIDplus::db()->query("UPDATE ###ra SET organization = ? WHERE email = ?", array($params['organization'], $email));
  55.                         if (isset($params['office']))
  56.                                 OIDplus::db()->query("UPDATE ###ra SET office = ? WHERE email = ?", array($params['office'], $email));
  57.                         if (isset($params['personal_name']))
  58.                                 OIDplus::db()->query("UPDATE ###ra SET personal_name = ? WHERE email = ?", array($params['personal_name'], $email));
  59.                         if (isset($params['privacy']))
  60.                                 OIDplus::db()->query("UPDATE ###ra SET privacy = ? WHERE email = ?", array($params['privacy'], $email));
  61.                         if (isset($params['street']))
  62.                                 OIDplus::db()->query("UPDATE ###ra SET street = ? WHERE email = ?", array($params['street'], $email));
  63.                         if (isset($params['zip_town']))
  64.                                 OIDplus::db()->query("UPDATE ###ra SET zip_town = ? WHERE email = ?", array($params['zip_town'], $email));
  65.                         if (isset($params['country']))
  66.                                 OIDplus::db()->query("UPDATE ###ra SET country = ? WHERE email = ?", array($params['country'], $email));
  67.                         if (isset($params['phone']))
  68.                                 OIDplus::db()->query("UPDATE ###ra SET phone = ? WHERE email = ?", array($params['phone'], $email));
  69.                         if (isset($params['mobile']))
  70.                                 OIDplus::db()->query("UPDATE ###ra SET mobile = ? WHERE email = ?", array($params['mobile'], $email));
  71.                         if (isset($params['fax']))
  72.                                 OIDplus::db()->query("UPDATE ###ra SET fax = ? WHERE email = ?", array($params['fax'], $email));
  73.  
  74.                         OIDplus::db()->query("UPDATE ###ra SET updated = ".OIDplus::db()->sqlDate()." WHERE email = ?", array($email));
  75.  
  76.                         return array("status" => 0);
  77.                 } else {
  78.                         return parent::action($actionID, $params);
  79.                 }
  80.         }
  81.  
  82.         /**
  83.          * @param bool $html
  84.          * @return void
  85.          */
  86.         public function init(bool $html=true) {
  87.                 // Nothing
  88.         }
  89.  
  90.         /**
  91.          * @param string $id
  92.          * @param array $out
  93.          * @param bool $handled
  94.          * @return void
  95.          * @throws OIDplusException
  96.          */
  97.         public function gui(string $id, array &$out, bool &$handled) {
  98.                 if (explode('$',$id)[0] == 'oidplus:edit_ra') {
  99.                         $handled = true;
  100.  
  101.                         $ra_email = explode('$',$id)[1];
  102.  
  103.                         $out['title'] = _L('Edit RA contact data');
  104.                         $out['icon'] = file_exists(__DIR__.'/img/main_icon.png') ? OIDplus::webpath(__DIR__,OIDplus::PATH_RELATIVE).'img/main_icon.png' : '';
  105.  
  106.                         if (!OIDplus::authUtils()->isRaLoggedIn($ra_email) && !OIDplus::authUtils()->isAdminLoggedIn()) {
  107.                                 $out['icon'] = 'img/error.png';
  108.                                 $out['text'] = '<p>'._L('You need to <a %1>log in</a> as the requested RA %2.',OIDplus::gui()->link('oidplus:login$ra$'.$ra_email),'<b>'.htmlentities($ra_email).'</b>').'</p>';
  109.                                 return;
  110.                         }
  111.  
  112.                         $out['text'] = '<p>'._L('Your email address: %1','<b>'.htmlentities($ra_email).'</b>').'</p>';
  113.  
  114.                         $res = OIDplus::db()->query("select * from ###ra where email = ?", array($ra_email));
  115.                         if (!$res->any()) {
  116.                                 $out['icon'] = 'img/error.png';
  117.                                 $out['text'] = _L('RA "%1" does not exist','<b>'.htmlentities($ra_email).'</b>');
  118.                                 return;
  119.                         }
  120.                         $row = $res->fetch_array();
  121.  
  122.                         $changeEMailPlugin = OIDplus::getPluginByOid('1.3.6.1.4.1.37476.2.5.2.4.2.102'); // OIDplusPageRaChangeEMail
  123.                         if (!is_null($changeEMailPlugin) && OIDplus::config()->getValue('allow_ra_email_change')) {
  124.                                 $out['text'] .= '<p><a '.OIDplus::gui()->link('oidplus:change_ra_email$'.$ra_email).'>'._L('Change email address').'</a></p>';
  125.                         } else {
  126.                                 $out['text'] .= '<p><abbr title="'._L('To change the email address, you need to contact the admin or superior RA. They will need to change the email address and invite you (with your new email address) again.').'">'._L('How to change the email address?').'</abbr></p>';
  127.                         }
  128.  
  129.                         // ---
  130.  
  131.                         $out['text'] .= '<p>'._L('Change basic information (public)').':</p>
  132.                           <form id="raChangeContactDataForm" action="javascript:void(0);" onsubmit="return OIDplusPageRaEditContactData.raChangeContactDataFormOnSubmit();">
  133.                             <input type="hidden" id="email" value="'.htmlentities($ra_email).'"/>
  134.                             <div><label class="padding_label">'._L('RA Name').':</label><input type="text" id="ra_name" value="'.htmlentities($row['ra_name']).'"/></div>
  135.                             <div><label class="padding_label">'._L('Organization').':</label><input type="text" id="organization" value="'.htmlentities($row['organization']).'"/></div>
  136.                             <div><label class="padding_label">'._L('Office').':</label><input type="text" id="office" value="'.htmlentities($row['office']).'"/></div>
  137.                             <div><label class="padding_label">'._L('Person name').':</label><input type="text" id="personal_name" value="'.htmlentities($row['personal_name']).'"/></div>
  138.                             <br>
  139.                             <div><label class="padding_label">'._L('Privacy').'</label><input type="checkbox" id="privacy" value="" '.($row['privacy'] == 1 ? ' checked' : '').'/> <label for="privacy">'._L('Hide postal address and Phone/Fax/Mobile Numbers').'</label></div>
  140.                             <div><label class="padding_label">'._L('Street').':</label><input type="text" id="street" value="'.htmlentities($row['street']).'"/></div>
  141.                             <div><label class="padding_label">'._L('ZIP/Town').':</label><input type="text" id="zip_town" value="'.htmlentities($row['zip_town']).'"/></div>
  142.                             <div><label class="padding_label">'._L('Country').':</label><input type="text" id="country" value="'.htmlentities($row['country']).'"/></div>
  143.                             <div><label class="padding_label">'._L('Phone').':</label><input type="text" id="phone" value="'.htmlentities($row['phone']).'"/></div>
  144.                             <div><label class="padding_label">'._L('Mobile').':</label><input type="text" id="mobile" value="'.htmlentities($row['mobile']).'"/></div>
  145.                             <div><label class="padding_label">'._L('Fax').':</label><input type="text" id="fax" value="'.htmlentities($row['fax']).'"/></div>
  146.                             <br><input type="submit" value="'._L('Change data').'">
  147.                           </form><br><br>';
  148.  
  149.                         $raBasePlugin = OIDplus::getPluginByOid('1.3.6.1.4.1.37476.2.5.2.4.1.1'); // OIDplusPagePublicRaBaseUtils
  150.                         if (!is_null($raBasePlugin)) {
  151.                                 $out['text'] .= '<p><a href="#" onclick="return OIDplusPagePublicRaBaseUtils.deleteRa('.js_escape($ra_email).',\'oidplus:system\')">'._L('Delete profile').'</a> '._L('(objects stay active)').'</p>';
  152.                         }
  153.                 }
  154.         }
  155.  
  156.         /**
  157.          * @param array $json
  158.          * @param string|null $ra_email
  159.          * @param bool $nonjs
  160.          * @param string $req_goto
  161.          * @return bool
  162.          * @throws OIDplusException
  163.          */
  164.         public function tree(array &$json, string $ra_email=null, bool $nonjs=false, string $req_goto=''): bool {
  165.                 if (!$ra_email) return false;
  166.                 if (!OIDplus::authUtils()->isRaLoggedIn($ra_email) && !OIDplus::authUtils()->isAdminLoggedIn()) return false;
  167.  
  168.                 if (file_exists(__DIR__.'/img/main_icon16.png')) {
  169.                         $tree_icon = OIDplus::webpath(__DIR__,OIDplus::PATH_RELATIVE).'img/main_icon16.png';
  170.                 } else {
  171.                         $tree_icon = null; // default icon (folder)
  172.                 }
  173.  
  174.                 $json[] = array(
  175.                         'id' => 'oidplus:edit_ra$'.$ra_email,
  176.                         'icon' => $tree_icon,
  177.                         'text' => _L('Edit RA contact data')
  178.                 );
  179.  
  180.                 return true;
  181.         }
  182.  
  183.         /**
  184.          * @param string $request
  185.          * @return array|false
  186.          */
  187.         public function tree_search(string $request) {
  188.                 return false;
  189.         }
  190. }
  191.