Subversion Repositories oidplus

Rev

Rev 1409 | Rev 1412 | 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 OIDplusPagePublicRaInfo extends OIDplusPagePluginPublic {
  27.  
  28.         /**
  29.          * @param bool $html
  30.          * @return void
  31.          */
  32.         public function init(bool $html=true) {
  33.         }
  34.  
  35.         /**
  36.          * @param string $id
  37.          * @param array $out
  38.          * @param bool $handled
  39.          * @return void
  40.          * @throws OIDplusConfigInitializationException
  41.          * @throws OIDplusException
  42.          */
  43.         public function gui(string $id, array &$out, bool &$handled) {
  44.                 if (explode('$',$id)[0] == 'oidplus:rainfo') {
  45.                         $handled = true;
  46.  
  47.                         $antispam_email = explode('$',$id.'$')[1];
  48.                         $ra_email = str_replace('&', '@', $antispam_email);
  49.  
  50.                         $out['icon'] = OIDplus::webpath(__DIR__,OIDplus::PATH_RELATIVE).'img/rainfo_icon.png';
  51.  
  52.                         if (OIDplus::authUtils()->isAdminLoggedIn()) {
  53.                                 $listRaPlugin = OIDplus::getPluginByOid('1.3.6.1.4.1.37476.2.5.2.4.3.500'); // OIDplusPageAdminListRAs
  54.                                 if (!is_null($listRaPlugin)) {
  55.                                         $out['text'] = '<p><a '.OIDplus::gui()->link('oidplus:list_ra').'><img src="img/arrow_back.png" width="16" alt="'._L('Go back').'"> '._L('Go back to RA listing').'</a></p>';
  56.                                 }
  57.                         }
  58.  
  59.                         if (empty($ra_email)) {
  60.                                 $out['title'] = _L('Object roots without RA');
  61.                                 $out['text'] .= '<p>'._L('Following object roots have an undefined Registration Authority').':</p>';
  62.                         } else {
  63.                                 $res = OIDplus::db()->query("select ra_name from ###ra where email = ?", array($ra_email));
  64.                                 $out['title'] = '';
  65.                                 if ($row = $res->fetch_array()) {
  66.                                         $out['title'] = $row['ra_name'];
  67.                                 }
  68.                                 if (empty($out['title'])) {
  69.                                         $out['title'] = $antispam_email;
  70.                                 }
  71.                                 $out['text'] .= $this->showRAInfo($ra_email, null);
  72.                                 $out['text'] .= '<br><br>';
  73.                         }
  74.  
  75.                         $ra_roots = OIDplusObject::getRaRoots($ra_email);
  76.                         if (count($ra_roots) == 0) {
  77.                                 if (empty($ra_email)) {
  78.                                         $out['text'] .= '<p><i>'._L('None').'</i></p>';
  79.                                 } else {
  80.                                         $out['text'] .= '<p><i>'._L('This RA has no objects.').'</i></p>';
  81.                                 }
  82.                         } else {
  83.                                 foreach ($ra_roots as $loc_root) {
  84.                                         $ico = $loc_root->getIcon();
  85.                                         $icon = !is_null($ico) ? $ico : OIDplus::webpath(__DIR__,OIDplus::PATH_RELATIVE).'img/link_icon16.png';
  86.                                         $out['text'] .= '<p><a '.OIDplus::gui()->link($loc_root->nodeId()).'><img src="'.$icon.'"> '._L('Jump to RA root %1',$loc_root->objectTypeTitleShort().' '.$loc_root->crudShowId(OIDplusObject::parse($loc_root::root()))).'</a></p>';
  87.                                 }
  88.                         }
  89.  
  90.                         if (!empty($ra_email)) {
  91.                                 $res = OIDplus::db()->query("select * from ###ra where email = ?", array($ra_email));
  92.                                 if ($res->any()) {
  93.                                         if (OIDplus::authUtils()->isRALoggedIn($ra_email) || OIDplus::authUtils()->isAdminLoggedIn()) {
  94.                                                 $editContactDataPlugin = OIDplus::getPluginByOid('1.3.6.1.4.1.37476.2.5.2.4.2.100'); // OIDplusPageRaEditContactData
  95.                                                 if (!is_null($editContactDataPlugin)) {
  96.                                                         $out['text'] .= '<p><a '.OIDplus::gui()->link('oidplus:edit_ra$'.$ra_email).'>'._L('Edit contact data').'</a></p>';
  97.                                                 }
  98.                                         }
  99.  
  100.                                         if (OIDplus::authUtils()->isAdminLoggedIn()) {
  101.                                                 $raBasePlugin = OIDplus::getPluginByOid('1.3.6.1.4.1.37476.2.5.2.4.1.1'); // OIDplusPagePublicRaBaseUtils
  102.                                                 if (!is_null($raBasePlugin)) {
  103.                                                         $listRaPlugin = OIDplus::getPluginByOid("1.3.6.1.4.1.37476.2.5.2.4.3.500"); // OIDplusPageAdminListRAs
  104.                                                         if (!is_null($listRaPlugin)) {
  105.                                                                 $delete_goback = 'oidplus:list_ra';
  106.                                                         } else {
  107.                                                                 $delete_goback = 'oidplus:system';
  108.                                                         }
  109.                                                         $out['text'] .= '<p><a href="#" onclick="return OIDplusPagePublicRaBaseUtils.deleteRa('.js_escape($ra_email).','.js_escape($delete_goback).')">'._L('Delete this RA').'</a></p>';
  110.                                                 }
  111.  
  112.                                                 $changePasswordPlugin = OIDplus::getPluginByOid('1.3.6.1.4.1.37476.2.5.2.4.2.101'); // OIDplusPageRaChangePassword
  113.                                                 if (!is_null($changePasswordPlugin)) {
  114.                                                         $out['text'] .= '<p><a '.OIDplus::gui()->link('oidplus:change_ra_password$'.$ra_email).'>'._L('Change password of this RA').'</a>';
  115.                                                 }
  116.                                         }
  117.                                 }
  118.  
  119.                                 if (OIDplus::authUtils()->isRALoggedIn($ra_email) || OIDplus::authUtils()->isAdminLoggedIn()) {
  120.                                         $res = OIDplus::db()->query("select lo.unix_ts, lo.addr, lo.event from ###log lo ".
  121.                                                                     "left join ###log_user lu on lu.log_id = lo.id ".
  122.                                                                     "where lu.username = ? " .
  123.                                                                     "order by lo.unix_ts desc", array($ra_email));
  124.                                         $out['text'] .= '<h2>'._L('Log messages for RA %1',htmlentities($ra_email)).'</h2>';
  125.                                         if ($res->any()) {
  126.                                                 $out['text'] .= '<pre>';
  127.                                                 while ($row = $res->fetch_array()) {
  128.                                                         $addr = empty($row['addr']) ? _L('no address') : $row['addr'];
  129.  
  130.                                                         $out['text'] .= date('Y-m-d H:i:s', (int)$row['unix_ts']) . ': ' . htmlentities($row["event"])." (" . htmlentities($addr) . ")\n";
  131.                                                 }
  132.                                                 $out['text'] .= '</pre>';
  133.  
  134.                                                 // TODO: List logs in a table instead of a <pre> text
  135.                                                 // TODO: Load only X events and then re-load new events via AJAX when the user scrolls down
  136.                                         } else {
  137.                                                 $out['text'] .= '<p>'._L('Currently there are no log entries').'</p>';
  138.                                         }
  139.                                 }
  140.                         }
  141.                 }
  142.         }
  143.  
  144.         /**
  145.          * @param array $out
  146.          * @return void
  147.          * @throws OIDplusConfigInitializationException
  148.          * @throws OIDplusException
  149.          */
  150.         public function publicSitemap(array &$out) {
  151.                 if (OIDplus::db()->getSlang()->id() == 'mysql') {
  152.                         $res = OIDplus::db()->query("select distinct BINARY(email) as distinct_email from ###ra"); // "binary" because we want to ensure that 'distinct' is case sensitive
  153.                 } else {
  154.                         $res = OIDplus::db()->query("select distinct email as distinct_email from ###ra"); // distinct in PGSQL is always case sensitive
  155.                 }
  156.                 while ($row = $res->fetch_array()) {
  157.                         $out[] = 'oidplus:rainfo$'.$row['distinct_email'];
  158.                 }
  159.         }
  160.  
  161.         /**
  162.          * @param array $json
  163.          * @param string|null $ra_email
  164.          * @param bool $nonjs
  165.          * @param string $req_goto
  166.          * @return bool
  167.          */
  168.         public function tree(array &$json, string $ra_email=null, bool $nonjs=false, string $req_goto=''): bool {
  169.                 return false;
  170.         }
  171.  
  172.         /**
  173.          * @param string|null $email
  174.          * @param OIDplusObject|null $oid
  175.          * @return string
  176.          * @throws OIDplusException
  177.          */
  178.         public static function showRAInfo(/*?string*/ $email, OIDplusObject $oid=null): string {
  179.                 $out = '';
  180.  
  181.                 if (empty($email)) {
  182.                         return '<p>'._L('The superior RA did not define a RA for this OID.').'</p>';
  183.                 }
  184.  
  185.                 $res = OIDplus::db()->query("select * from ###ra where email = ?", array($email));
  186.                 if (!$res->any()) {
  187.                         $out = '<p>'._L('The RA %1 is not registered in the database.','<a href="mailto:'.htmlentities($email).'">'.htmlentities($email).'</a>').'</p>';
  188.  
  189.                         if (OIDplus::authUtils()->isAdminLoggedIn()) {
  190.                                 $createRAPlugin = OIDplus::getPluginByOid('1.3.6.1.4.1.37476.2.5.2.4.3.130'); // OIDplusPageAdminCreateRa
  191.                                 if (!is_null($createRAPlugin)) {
  192.                                         $out .= '<p><a class="btn btn-success" '.OIDplus::gui()->link('oidplus:create_ra$'.$email).'>'._L('Create RA manually').'</a></p>';
  193.                                 }
  194.                         }
  195.                         if (!is_null($oid) && $oid->userHasParentalWriteRights()) {
  196.                                 $out .= '<p><a class="btn btn-success" '.OIDplus::gui()->link('oidplus:invite_ra$'.$email.'$'.$oid->nodeId(true)).'>'._L('Invite RA to join OIDplus').'</a></p>';
  197.                         }
  198.  
  199.                 } else {
  200.                         $row = $res->fetch_array();
  201.                         $out = '<b>'.htmlentities($row['ra_name']??'').'</b><br>'; // TODO: if you are not already at the page "oidplus:rainfo", then link to it now
  202.                         $out .= _L('E-Mail').': <a href="mailto:'.htmlentities($email).'">'.htmlentities($email).'</a><br>';
  203.                         if (trim($row['personal_name']??'') !== '') $out .= htmlentities($row['personal_name']).'<br>';
  204.                         if (trim($row['organization']??'') !== '') $out .= htmlentities($row['organization']).'<br>';
  205.                         if (trim($row['office']??'') !== '') $out .= htmlentities($row['office']).'<br>';
  206.                         if ($row['privacy']) {
  207.                                 // TODO: Only show the message if the user has a street, address, etc.
  208.                                 // TODO: But the admin and the own user should see it (with a note that the data is not visible to the public)
  209.                                 $out .= '<p>'._L('The RA does not want to publish their personal information.').'</p>';
  210.                         } else {
  211.                                 if (trim($row['street']??'') !== '') $out .= htmlentities($row['street']).'<br>';
  212.                                 if (trim($row['zip_town']??'') !== '') $out .= htmlentities($row['zip_town']).'<br>';
  213.                                 if (trim($row['country']??'') !== '') $out .= htmlentities($row['country']).'<br>';
  214.                                 $out .= '<br>';
  215.                                 if (trim($row['phone']??'') !== '') $out .= _L('Phone: %1',htmlentities($row['phone'])).'<br>';
  216.                                 if (trim($row['fax']??'') !== '') $out .= _L('Fax: %1',htmlentities($row['fax'])).'<br>';
  217.                                 if (trim($row['mobile']??'') !== '') $out .= _L('Mobile: %1',htmlentities($row['mobile'])).'<br>';
  218.                                 $out .= '<br>';
  219.                         }
  220.                 }
  221.  
  222.                 return trim_br($out);
  223.         }
  224.  
  225.         /**
  226.          * @param string $request
  227.          * @return array|false
  228.          */
  229.         public function tree_search(string $request) {
  230.                 return false;
  231.         }
  232. }
  233.