Subversion Repositories oidplus

Rev

Rev 1148 | Rev 1168 | 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. abstract class OIDplusObject extends OIDplusBaseClass {
  27.  
  28.         /**
  29.          *
  30.          */
  31.         const UUID_NAMEBASED_NS_OidPlusMisc = 'ad1654e6-7e15-11e4-9ef6-78e3b5fc7f22';
  32.  
  33.         /**
  34.          * Please overwrite this function!
  35.          * @param string $node_id
  36.          * @return OIDplusObject|null
  37.          */
  38.         public static function parse(string $node_id)/*: ?OIDplusObject*/ {
  39.                 foreach (OIDplus::getEnabledObjectTypes() as $ot) {
  40.                         try {
  41.                                 $good = false;
  42.                                 if (get_parent_class($ot) == OIDplusObject::class) {
  43.                                         $reflector = new \ReflectionMethod($ot, 'parse');
  44.                                         $isImplemented = ($reflector->getDeclaringClass()->getName() === $ot);
  45.                                         if ($isImplemented) { // avoid endless loop if parse is not overriden
  46.                                                 $good = true;
  47.                                         }
  48.                                 }
  49.                                 // We need to do the workaround with "$good", otherwise PHPstan shows
  50.                                 // "Call to an undefined static method object::parse()"
  51.                                 if ($good && $obj = $ot::parse($node_id)) return $obj;
  52.                         } catch (\Exception $e) {}
  53.                 }
  54.                 return null;
  55.         }
  56.  
  57.         /**
  58.          * @return OIDplusAltId[]
  59.          * @throws OIDplusException
  60.          */
  61.         public function getAltIds(): array {
  62.                 if ($this->isRoot()) return array();
  63.  
  64.                 $ids = array();
  65.  
  66.                 // Creates an OIDplus-Hash-OID
  67.                 if ($this->ns() != 'oid') {
  68.                         $sid = OIDplus::getSystemId(true);
  69.                         if (!empty($sid)) {
  70.                                 $ns_oid = $this->getPlugin()->getManifest()->getOid();
  71.                                 if (str_starts_with($ns_oid, '1.3.6.1.4.1.37476.2.5.2.')) {
  72.                                         // Official ViaThinkSoft object type plugins
  73.                                         // For backwards compatibility with existing IDs,
  74.                                         // set the hash_payload as '<namespace>:<id>'
  75.                                         $hash_payload = $this->nodeId(true);
  76.                                 } else {
  77.                                         // Third-party object type plugins
  78.                                         // Set the hash_payload as '<plugin oid>:<id>'
  79.                                         $hash_payload = $ns_oid.':'.$this->nodeId(false);
  80.                                 }
  81.                                 $oid = $sid . '.' . smallhash($hash_payload);
  82.                                 $ids[] = new OIDplusAltId('oid', $oid, _L('OIDplus Information Object OID'));
  83.                         }
  84.                 }
  85.  
  86.                 // Make a namebased UUID, but...
  87.                 // ... exclude GUID, because a GUID is already a GUID
  88.                 // ... exclude OID, because an OID already has a record UUID_NAMEBASED_NS_OID (defined by IETF) set by class OIDplusOid
  89.                 if (($this->ns() != 'guid') && ($this->ns() != 'oid')) {
  90.                         $ids[] = new OIDplusAltId('guid', gen_uuid_md5_namebased(self::UUID_NAMEBASED_NS_OidPlusMisc, $this->nodeId()), _L('Name based version 3 / MD5 UUID with namespace %1','UUID_NAMEBASED_NS_OidPlusMisc'));
  91.                         $ids[] = new OIDplusAltId('guid', gen_uuid_sha1_namebased(self::UUID_NAMEBASED_NS_OidPlusMisc, $this->nodeId()), _L('Name based version 5 / SHA1 UUID with namespace %1','UUID_NAMEBASED_NS_OidPlusMisc'));
  92.                 }
  93.  
  94.                 // Make a AID based on ViaThinkSoft schema
  95.                 // ... but not for OIDs below oid:1.3.6.1.4.1.37476.30.9, because these are the definition of these Information Object AIDs (which will be decoded in the OID object type plugin)
  96.                 if (($this->ns() != 'aid') && !str_starts_with($this->nodeId(true), 'oid:1.3.6.1.4.1.37476.30.9.')) {
  97.                         $sid = OIDplus::getSystemId(false);
  98.                         if ($sid !== false) {
  99.                                 $ns_oid = $this->getPlugin()->getManifest()->getOid();
  100.                                 if (str_starts_with($ns_oid, '1.3.6.1.4.1.37476.2.5.2.')) {
  101.                                         // Official ViaThinkSoft object type plugins
  102.                                         // For backwards compatibility with existing IDs,
  103.                                         // set the hash_payload as '<namespace>:<id>'
  104.                                         $hash_payload = $this->nodeId(true);
  105.                                 } else {
  106.                                         // Third-party object type plugins
  107.                                         // Set the hash_payload as '<plugin oid>:<id>'
  108.                                         $hash_payload = $ns_oid.':'.$this->nodeId(false);
  109.                                 }
  110.  
  111.                                 $sid_hex = strtoupper(str_pad(dechex((int)$sid),8,'0',STR_PAD_LEFT));
  112.                                 $obj_hex = strtoupper(str_pad(dechex(smallhash($hash_payload)),8,'0',STR_PAD_LEFT));
  113.                                 $aid = 'D276000186B20005'.$sid_hex.$obj_hex;
  114.                                 $ids[] = new OIDplusAltId('aid', $aid, _L('OIDplus Information Object Application Identifier (ISO/IEC 7816)'), ' ('._L('No PIX allowed').')');
  115.                         }
  116.                 }
  117.  
  118.                 return $ids;
  119.         }
  120.  
  121.         /**
  122.          * @return string
  123.          */
  124.         public abstract static function objectTypeTitle(): string;
  125.  
  126.         /**
  127.          * @return string
  128.          */
  129.         public abstract static function objectTypeTitleShort(): string;
  130.  
  131.         /**
  132.          * @return OIDplusObjectTypePlugin|null
  133.          */
  134.         public function getPlugin()/*: ?OIDplusObjectTypePlugin */ {
  135.                 $plugins = OIDplus::getObjectTypePlugins();
  136.                 foreach ($plugins as $plugin) {
  137.                         if (get_class($this) == $plugin::getObjectTypeClassName()) {
  138.                                 return $plugin;
  139.                         }
  140.                 }
  141.                 return null;
  142.         }
  143.  
  144.         /**
  145.          * @return string
  146.          */
  147.         public abstract static function ns(): string;
  148.  
  149.         /**
  150.          * @return string
  151.          */
  152.         public abstract static function root(): string;
  153.  
  154.         /**
  155.          * @return bool
  156.          */
  157.         public abstract function isRoot(): bool;
  158.  
  159.         /**
  160.          * @param bool $with_ns
  161.          * @return string
  162.          */
  163.         public abstract function nodeId(bool $with_ns=true): string;
  164.  
  165.         /**
  166.          * @param string $str
  167.          * @return string mixed
  168.          * @throws OIDplusException
  169.          */
  170.         public abstract function addString(string $str): string;
  171.  
  172.         /**
  173.          * @param OIDplusObject $parent
  174.          * @return string
  175.          */
  176.         public abstract function crudShowId(OIDplusObject $parent): string;
  177.  
  178.         /**
  179.          * @return string
  180.          */
  181.         public function crudInsertPrefix(): string {
  182.                 return '';
  183.         }
  184.  
  185.         /**
  186.          * @return string
  187.          */
  188.         public function crudInsertSuffix(): string {
  189.                 return '';
  190.         }
  191.  
  192.         /**
  193.          * @param OIDplusObject|null $parent
  194.          * @return string
  195.          */
  196.         public abstract function jsTreeNodeName(OIDplusObject $parent = null): string;
  197.  
  198.         /**
  199.          * @return string
  200.          */
  201.         public abstract function defaultTitle(): string;
  202.  
  203.         /**
  204.          * @return bool
  205.          */
  206.         public abstract function isLeafNode(): bool;
  207.  
  208.         /**
  209.          * @param string $title
  210.          * @param string $content
  211.          * @param string $icon
  212.          * @return void
  213.          */
  214.         public abstract function getContentPage(string &$title, string &$content, string &$icon);
  215.  
  216.         /**
  217.          * @param OIDplusRA|string|null $ra
  218.          * @return array
  219.          * @throws OIDplusConfigInitializationException
  220.          * @throws OIDplusException
  221.          */
  222.         public static function getRaRoots($ra=null) : array{
  223.                 if ($ra instanceof OIDplusRA) $ra = $ra->raEmail();
  224.  
  225.                 $out = array();
  226.  
  227.                 if (!OIDplus::baseConfig()->getValue('OBJECT_CACHING', true)) {
  228.                         if (!$ra) {
  229.                                 $res = OIDplus::db()->query("select oChild.id as id, oChild.ra_email as child_mail, oParent.ra_email as parent_mail from ###objects as oChild ".
  230.                                                             "left join ###objects as oParent on oChild.parent = oParent.id");
  231.                                 $res->naturalSortByField('oChild.id');
  232.                                 while ($row = $res->fetch_array()) {
  233.                                         if (!OIDplus::authUtils()->isRaLoggedIn($row['parent_mail']) && OIDplus::authUtils()->isRaLoggedIn($row['child_mail'])) {
  234.                                                 $x = self::parse($row['id']); // can be NULL if namespace was disabled
  235.                                                 if ($x) $out[] = $x;
  236.                                         }
  237.                                 }
  238.                         } else {
  239.                                 $res = OIDplus::db()->query("select oChild.id as id from ###objects as oChild ".
  240.                                                             "left join ###objects as oParent on oChild.parent = oParent.id ".
  241.                                                             "where (".OIDplus::db()->getSlang()->isNullFunction('oParent.ra_email',"''")." <> ? and ".
  242.                                                             OIDplus::db()->getSlang()->isNullFunction('oChild.ra_email',"''")." = ?) or ".
  243.                                                             "      (oParent.ra_email is null and ".OIDplus::db()->getSlang()->isNullFunction('oChild.ra_email',"''")." = ?) ",
  244.                                                             array($ra, $ra, $ra));
  245.                                 $res->naturalSortByField('oChild.id');
  246.                                 while ($row = $res->fetch_array()) {
  247.                                         $x = self::parse($row['id']); // can be NULL if namespace was disabled
  248.                                         if ($x) $out[] = $x;
  249.                                 }
  250.                         }
  251.                 } else {
  252.                         if (!$ra) {
  253.                                 $ra_mails_to_check = OIDplus::authUtils()->loggedInRaList();
  254.                                 if (count($ra_mails_to_check) == 0) return $out;
  255.                         } else {
  256.                                 $ra_mails_to_check = array($ra);
  257.                         }
  258.  
  259.                         self::buildObjectInformationCache();
  260.  
  261.                         foreach ($ra_mails_to_check as $check_ra_mail) {
  262.                                 $out_part = array();
  263.  
  264.                                 foreach (self::$object_info_cache as $id => $cacheitem) {
  265.                                         if ($cacheitem[self::CACHE_RA_EMAIL] == $check_ra_mail) {
  266.                                                 $parent = $cacheitem[self::CACHE_PARENT];
  267.                                                 if (!isset(self::$object_info_cache[$parent]) || (self::$object_info_cache[$parent][self::CACHE_RA_EMAIL] != $check_ra_mail)) {
  268.                                                         $out_part[] = $id;
  269.                                                 }
  270.                                         }
  271.                                 }
  272.  
  273.                                 natsort($out_part);
  274.  
  275.                                 foreach ($out_part as $id) {
  276.                                         $obj = self::parse($id);
  277.                                         if ($obj) $out[] = $obj;
  278.                                 }
  279.                         }
  280.                 }
  281.  
  282.                 return $out;
  283.         }
  284.  
  285.         /**
  286.          * @return array
  287.          * @throws OIDplusException
  288.          */
  289.         public static function getAllNonConfidential(): array {
  290.                 $out = array();
  291.  
  292.                 if (!OIDplus::baseConfig()->getValue('OBJECT_CACHING', true)) {
  293.                         $res = OIDplus::db()->query("select id from ###objects where confidential = ?", array(false));
  294.                         $res->naturalSortByField('id');
  295.                         while ($row = $res->fetch_array()) {
  296.                                 $obj = self::parse($row['id']); // will be NULL if the object type is not registered
  297.                                 if ($obj && (!$obj->isConfidential())) {
  298.                                         $out[] = $row['id'];
  299.                                 }
  300.                         }
  301.                 } else {
  302.                         self::buildObjectInformationCache();
  303.  
  304.                         foreach (self::$object_info_cache as $id => $cacheitem) {
  305.                                 $confidential = $cacheitem[self::CACHE_CONFIDENTIAL];
  306.                                 if (!$confidential) {
  307.                                         $obj = self::parse($id); // will be NULL if the object type is not registered
  308.                                         if ($obj && (!$obj->isConfidential())) {
  309.                                                 $out[] = $id;
  310.                                         }
  311.                                 }
  312.                         }
  313.                 }
  314.  
  315.                 return $out;
  316.         }
  317.  
  318.         /**
  319.          * @return bool
  320.          * @throws OIDplusException
  321.          */
  322.         public function isConfidential(): bool {
  323.                 if (!OIDplus::baseConfig()->getValue('OBJECT_CACHING', true)) {
  324.                         //static $confidential_cache = array();
  325.                         $curid = $this->nodeId();
  326.                         //$orig_curid = $curid;
  327.                         //if (isset($confidential_cache[$curid])) return $confidential_cache[$curid];
  328.                         // Recursively search for the confidential flag in the parents
  329.                         while (($res = OIDplus::db()->query("select parent, confidential from ###objects where id = ?", array($curid)))->any()) {
  330.                                 $row = $res->fetch_array();
  331.                                 if ($row['confidential']) {
  332.                                         //$confidential_cache[$curid] = true;
  333.                                         //$confidential_cache[$orig_curid] = true;
  334.                                         return true;
  335.                                 } else {
  336.                                         //$confidential_cache[$curid] = false;
  337.                                 }
  338.                                 $curid = $row['parent'];
  339.                                 //if (isset($confidential_cache[$curid])) {
  340.                                         //$confidential_cache[$orig_curid] = $confidential_cache[$curid];
  341.                                         //return $confidential_cache[$curid];
  342.                                 //}
  343.                         }
  344.  
  345.                         //$confidential_cache[$orig_curid] = false;
  346.                         return false;
  347.                 } else {
  348.                         self::buildObjectInformationCache();
  349.  
  350.                         $curid = $this->nodeId();
  351.                         // Recursively search for the confidential flag in the parents
  352.                         while (isset(self::$object_info_cache[$curid])) {
  353.                                 if (self::$object_info_cache[$curid][self::CACHE_CONFIDENTIAL]) return true;
  354.                                 $curid = self::$object_info_cache[$curid][self::CACHE_PARENT];
  355.                         }
  356.                         return false;
  357.                 }
  358.         }
  359.  
  360.         /**
  361.          * @param OIDplusObject $obj
  362.          * @return bool
  363.          * @throws OIDplusException
  364.          */
  365.         public function isChildOf(OIDplusObject $obj): bool {
  366.                 if (!OIDplus::baseConfig()->getValue('OBJECT_CACHING', true)) {
  367.                         $curid = $this->nodeId();
  368.                         while (($res = OIDplus::db()->query("select parent from ###objects where id = ?", array($curid)))->any()) {
  369.                                 $row = $res->fetch_array();
  370.                                 if ($curid == $obj->nodeId()) return true;
  371.                                 $curid = $row['parent'];
  372.                         }
  373.                         return false;
  374.                 } else {
  375.                         self::buildObjectInformationCache();
  376.  
  377.                         $curid = $this->nodeId();
  378.                         while (isset(self::$object_info_cache[$curid])) {
  379.                                 if ($curid == $obj->nodeId()) return true;
  380.                                 $curid = self::$object_info_cache[$curid][self::CACHE_PARENT];
  381.                         }
  382.                         return false;
  383.                 }
  384.         }
  385.  
  386.         /**
  387.          * @return array
  388.          * @throws OIDplusException
  389.          */
  390.         public function getChildren(): array {
  391.                 $out = array();
  392.                 if (!OIDplus::baseConfig()->getValue('OBJECT_CACHING', true)) {
  393.                         $res = OIDplus::db()->query("select id from ###objects where parent = ?", array($this->nodeId()));
  394.                         while ($row = $res->fetch_array()) {
  395.                                 $obj = self::parse($row['id']);
  396.                                 if (!$obj) continue;
  397.                                 $out[] = $obj;
  398.                         }
  399.                 } else {
  400.                         self::buildObjectInformationCache();
  401.  
  402.                         foreach (self::$object_info_cache as $id => $cacheitem) {
  403.                                 $parent = $cacheitem[self::CACHE_PARENT];
  404.                                 if ($parent == $this->nodeId()) {
  405.                                         $obj = self::parse($id);
  406.                                         if (!$obj) continue;
  407.                                         $out[] = $obj;
  408.                                 }
  409.                         }
  410.                 }
  411.                 return $out;
  412.         }
  413.  
  414.         /**
  415.          * @return OIDplusRA|null
  416.          * @throws OIDplusException
  417.          */
  418.         public function getRa()/*: ?OIDplusRA*/ {
  419.                 $ra = $this->getRaMail();
  420.                 return $ra ? new OIDplusRA($ra) : null;
  421.         }
  422.  
  423.         /**
  424.          * @param OIDplusRA|string|null $ra
  425.          * @return bool
  426.          * @throws OIDplusConfigInitializationException
  427.          * @throws OIDplusException
  428.          */
  429.         public function userHasReadRights($ra=null): bool {
  430.                 if ($ra instanceof OIDplusRA) $ra = $ra->raEmail();
  431.  
  432.                 // If it is not confidential, everybody can read/see it.
  433.                 // Note: This also checks if superior OIDs are confidential.
  434.                 if (!$this->isConfidential()) return true;
  435.  
  436.                 if (!$ra) {
  437.                         // Admin may do everything
  438.                         if (OIDplus::authUtils()->isAdminLoggedIn()) return true;
  439.  
  440.                         // If the RA is logged in, then they can see the OID.
  441.                         $ownRa = $this->getRaMail();
  442.                         if ($ownRa && OIDplus::authUtils()->isRaLoggedIn($ownRa)) return true;
  443.                 } else {
  444.                         // If this OID belongs to the requested RA, then they may see it.
  445.                         if ($this->getRaMail() == $ra) return true;
  446.                 }
  447.  
  448.                 // If someone has rights to an object below our confidential node,
  449.                 // we let him see the confidential node,
  450.                 // Otherwise he could not browse through to his own node.
  451.                 $roots = $this->getRaRoots($ra);
  452.                 foreach ($roots as $root) {
  453.                         if ($root->isChildOf($this)) return true;
  454.                 }
  455.  
  456.                 return false;
  457.         }
  458.  
  459.         /**
  460.          * @param array|null $row
  461.          * @return string|null
  462.          * @throws OIDplusException
  463.          */
  464.         public function getIcon(array $row=null) {
  465.                 $namespace = $this->ns(); // must use $this, not self::, otherwise the virtual method will not be called
  466.  
  467.                 if (is_null($row)) {
  468.                         $ra_email = $this->getRaMail();
  469.                 } else {
  470.                         $ra_email = $row['ra_email'];
  471.                 }
  472.  
  473.                 // $dirs = glob(OIDplus::localpath().'plugins/'.'*'.'/objectTypes/'.$namespace.'/');
  474.                 // if (count($dirs) == 0) return null; // default icon (folder)
  475.                 // $dir = substr($dirs[0], strlen(OIDplus::localpath()));
  476.                 $reflection = new \ReflectionClass($this);
  477.                 $dir = dirname($reflection->getFilename());
  478.                 $dir = substr($dir, strlen(OIDplus::localpath()));
  479.                 $dir = str_replace('\\', '/', $dir);
  480.  
  481.                 if ($this->isRoot()) {
  482.                         $icon = $dir . '/' . $this::treeIconFilename('root');
  483.                 } else {
  484.                         // We use $this:: instead of self:: , because we want to call the overridden methods
  485.                         if ($ra_email && OIDplus::authUtils()->isRaLoggedIn($ra_email)) {
  486.                                 if ($this->isLeafNode()) {
  487.                                         $icon = $dir . '/' . $this::treeIconFilename('own_leaf');
  488.                                         if (!file_exists($icon)) $icon = $dir . '/' . $this::treeIconFilename('own');
  489.                                 } else {
  490.                                         $icon = $dir . '/' . $this::treeIconFilename('own');
  491.                                 }
  492.                         } else {
  493.                                 if ($this->isLeafNode()) {
  494.                                         $icon = $dir . '/' . $this::treeIconFilename('general_leaf');
  495.                                         if (!file_exists($icon)) $icon = $dir . '/' . $this::treeIconFilename('general');
  496.                                 } else {
  497.                                         $icon = $dir . '/' . $this::treeIconFilename('general');
  498.                                 }
  499.                         }
  500.                 }
  501.  
  502.                 if (!file_exists($icon)) return null; // default icon (folder)
  503.  
  504.                 return $icon;
  505.         }
  506.  
  507.         /**
  508.          * @param string $id
  509.          * @return bool
  510.          * @throws OIDplusException
  511.          */
  512.         public static function exists(string $id): bool {
  513.                 if (!OIDplus::baseConfig()->getValue('OBJECT_CACHING', true)) {
  514.                         $res = OIDplus::db()->query("select id from ###objects where id = ?", array($id));
  515.                         return $res->any();
  516.                 } else {
  517.                         self::buildObjectInformationCache();
  518.                         return isset(self::$object_info_cache[$id]);
  519.                 }
  520.         }
  521.  
  522.         /**
  523.          * Get parent gives the next possible parent which is EXISTING in OIDplus
  524.          * It does not give the immediate parent
  525.          * @return OIDplusObject|null
  526.          * @throws OIDplusException
  527.          */
  528.         public function getParent()/*: ?OIDplusObject*/ {
  529.                 if (!OIDplus::baseConfig()->getValue('OBJECT_CACHING', true)) {
  530.                         $res = OIDplus::db()->query("select parent from ###objects where id = ?", array($this->nodeId()));
  531.                         if (!$res->any()) return null;
  532.                         $row = $res->fetch_array();
  533.                         $parent = $row['parent'];
  534.                         $obj = OIDplusObject::parse($parent);
  535.                         if ($obj) return $obj;
  536.                         // TODO: Also implement one_up() like below
  537.                 } else {
  538.                         self::buildObjectInformationCache();
  539.                         if (isset(self::$object_info_cache[$this->nodeId()])) {
  540.                                 $parent = self::$object_info_cache[$this->nodeId()][self::CACHE_PARENT];
  541.                                 $obj = OIDplusObject::parse($parent);
  542.                                 if ($obj) return $obj;
  543.                         }
  544.  
  545.                         // If this OID does not exist, the SQL query "select parent from ..." does not work. So we try to find the next possible parent using one_up()
  546.                         $cur = $this->one_up();
  547.                         if (!$cur) return null;
  548.                         do {
  549.                                 // findFitting() checks if that OID exists
  550.                                 if ($fitting = self::findFitting($cur->nodeId())) return $fitting;
  551.  
  552.                                 $prev = $cur;
  553.                                 $cur = $cur->one_up();
  554.                                 if (!$cur) return null;
  555.                         } while ($prev !== $cur);
  556.                 }
  557.                 return null;
  558.         }
  559.  
  560.         /**
  561.          * @return string|null
  562.          * @throws OIDplusException
  563.          */
  564.         public function getRaMail() {
  565.                 if (!OIDplus::baseConfig()->getValue('OBJECT_CACHING', true)) {
  566.                         $res = OIDplus::db()->query("select ra_email from ###objects where id = ?", array($this->nodeId()));
  567.                         if (!$res->any()) return null;
  568.                         $row = $res->fetch_array();
  569.                         return $row['ra_email'];
  570.                 } else {
  571.                         self::buildObjectInformationCache();
  572.                         if (isset(self::$object_info_cache[$this->nodeId()])) {
  573.                                 return self::$object_info_cache[$this->nodeId()][self::CACHE_RA_EMAIL];
  574.                         }
  575.                         return null;
  576.                 }
  577.         }
  578.  
  579.         /**
  580.          * @return string|null
  581.          * @throws OIDplusException
  582.          */
  583.         public function getTitle() {
  584.                 if (!OIDplus::baseConfig()->getValue('OBJECT_CACHING', true)) {
  585.                         $res = OIDplus::db()->query("select title from ###objects where id = ?", array($this->nodeId()));
  586.                         if (!$res->any()) return null;
  587.                         $row = $res->fetch_array();
  588.                         return $row['title'];
  589.                 } else {
  590.                         self::buildObjectInformationCache();
  591.                         if (isset(self::$object_info_cache[$this->nodeId()])) {
  592.                                 return self::$object_info_cache[$this->nodeId()][self::CACHE_TITLE];
  593.                         }
  594.                         return null;
  595.                 }
  596.         }
  597.  
  598.         /**
  599.          * @return string|null
  600.          * @throws OIDplusException
  601.          */
  602.         public function getDescription() {
  603.                 if (!OIDplus::baseConfig()->getValue('OBJECT_CACHING', true)) {
  604.                         $res = OIDplus::db()->query("select description from ###objects where id = ?", array($this->nodeId()));
  605.                         if (!$res->any()) return null;
  606.                         $row = $res->fetch_array();
  607.                         return $row['description'];
  608.                 } else {
  609.                         self::buildObjectInformationCache();
  610.                         if (isset(self::$object_info_cache[$this->nodeId()])) {
  611.                                 return self::$object_info_cache[$this->nodeId()][self::CACHE_DESCRIPTION];
  612.                         }
  613.                         return null;
  614.                 }
  615.         }
  616.  
  617.         /**
  618.          * @return string|null
  619.          * @throws OIDplusException
  620.          */
  621.         public function getComment() {
  622.                 if (!OIDplus::baseConfig()->getValue('OBJECT_CACHING', true)) {
  623.                         $res = OIDplus::db()->query("select comment from ###objects where id = ?", array($this->nodeId()));
  624.                         if (!$res->any()) return null;
  625.                         $row = $res->fetch_array();
  626.                         return $row['comment'];
  627.                 } else {
  628.                         self::buildObjectInformationCache();
  629.                         if (isset(self::$object_info_cache[$this->nodeId()])) {
  630.                                 return self::$object_info_cache[$this->nodeId()][self::CACHE_COMMENT];
  631.                         }
  632.                         return null;
  633.                 }
  634.         }
  635.  
  636.         /**
  637.          * @return string|null
  638.          * @throws OIDplusException
  639.          */
  640.         public function getCreatedTime() {
  641.                 if (!OIDplus::baseConfig()->getValue('OBJECT_CACHING', true)) {
  642.                         $res = OIDplus::db()->query("select created from ###objects where id = ?", array($this->nodeId()));
  643.                         if (!$res->any()) return null;
  644.                         $row = $res->fetch_array();
  645.                         return $row['created'];
  646.                 } else {
  647.                         self::buildObjectInformationCache();
  648.                         if (isset(self::$object_info_cache[$this->nodeId()])) {
  649.                                 return self::$object_info_cache[$this->nodeId()][self::CACHE_CREATED];
  650.                         }
  651.                         return null;
  652.                 }
  653.         }
  654.  
  655.         /**
  656.          * @return string|null
  657.          * @throws OIDplusException
  658.          */
  659.         public function getUpdatedTime() {
  660.                 if (!OIDplus::baseConfig()->getValue('OBJECT_CACHING', true)) {
  661.                         $res = OIDplus::db()->query("select updated from ###objects where id = ?", array($this->nodeId()));
  662.                         if (!$res->any()) return null;
  663.                         $row = $res->fetch_array();
  664.                         return $row['updated'];
  665.                 } else {
  666.                         self::buildObjectInformationCache();
  667.                         if (isset(self::$object_info_cache[$this->nodeId()])) {
  668.                                 return self::$object_info_cache[$this->nodeId()][self::CACHE_UPDATED];
  669.                         }
  670.                         return null;
  671.                 }
  672.         }
  673.  
  674.         /**
  675.          * @param OIDplusRA|string|null $ra
  676.          * @return bool
  677.          * @throws OIDplusException
  678.          */
  679.         public function userHasParentalWriteRights($ra=null): bool {
  680.                 if ($ra instanceof OIDplusRA) $ra = $ra->raEmail();
  681.  
  682.                 if (!$ra) {
  683.                         if (OIDplus::authUtils()->isAdminLoggedIn()) return true;
  684.                 }
  685.  
  686.                 $objParent = $this->getParent();
  687.                 if (!$objParent) return false;
  688.                 return $objParent->userHasWriteRights($ra);
  689.         }
  690.  
  691.         /**
  692.          * @param OIDplusRA|string|null $ra
  693.          * @return bool
  694.          * @throws OIDplusException
  695.          */
  696.         public function userHasWriteRights($ra=null): bool {
  697.                 if ($ra instanceof OIDplusRA) $ra = $ra->raEmail();
  698.  
  699.                 if (!$ra) {
  700.                         if (OIDplus::authUtils()->isAdminLoggedIn()) return true;
  701.                         $ownRa = $this->getRaMail();
  702.                         return $ownRa && OIDplus::authUtils()->isRaLoggedIn($ownRa);
  703.                 } else {
  704.                         return $this->getRaMail() == $ra;
  705.                 }
  706.         }
  707.  
  708.         /**
  709.          * @param string|OIDplusObject $to
  710.          * @return int|null
  711.          */
  712.         public function distance($to)/*: ?int*/ {
  713.                 return null; // not implemented
  714.         }
  715.  
  716.         /**
  717.          * @param OIDplusObject|string $obj
  718.          * @return bool
  719.          */
  720.         public function equals($obj): bool {
  721.                 if (!$obj) return false;
  722.                 if (!is_object($obj)) $obj = OIDplusObject::parse($obj);
  723.                 if (!$obj) return false;
  724.                 if (!($obj instanceof $this)) return false;
  725.  
  726.                 $distance = $this->distance($obj);
  727.                 if (is_numeric($distance)) return $distance === 0; // if the distance function is implemented, use it
  728.  
  729.                 return $this->nodeId() == $obj->nodeId(); // otherwise compare the node id case-sensitive
  730.         }
  731.  
  732.         /**
  733.          * @param string $id
  734.          * @return OIDplusObject|false
  735.          * @throws OIDplusException
  736.          */
  737.         public static function findFitting(string $id) {
  738.                 $obj = OIDplusObject::parse($id);
  739.                 if (!$obj) return false; // e.g. if ObjectType plugin is disabled
  740.  
  741.                 if (!OIDplus::baseConfig()->getValue('OBJECT_CACHING', true)) {
  742.                         $res = OIDplus::db()->query("select id from ###objects where id like ?", array($obj->ns().':%'));
  743.                         while ($row = $res->fetch_object()) {
  744.                                 $test = OIDplusObject::parse($row->id);
  745.                                 if ($obj->equals($test)) return $test;
  746.                         }
  747.                         return false;
  748.                 } else {
  749.                         self::buildObjectInformationCache();
  750.                         foreach (self::$object_info_cache as $id => $cacheitem) {
  751.                                 if (strpos($id, $obj->ns().':') === 0) {
  752.                                         $test = OIDplusObject::parse($id);
  753.                                         if ($obj->equals($test)) return $test;
  754.                                 }
  755.                         }
  756.                         return false;
  757.                 }
  758.         }
  759.  
  760.         /**
  761.          * @return OIDplusObject|null
  762.          */
  763.         public function one_up()/*: ?OIDplusObject*/ {
  764.                 return null; // not implemented
  765.         }
  766.  
  767.         // Caching stuff
  768.  
  769.         protected static $object_info_cache = null;
  770.  
  771.         /**
  772.          * @return void
  773.          */
  774.         public static function resetObjectInformationCache() {
  775.                 self::$object_info_cache = null;
  776.         }
  777.  
  778.         const CACHE_ID = 'id';
  779.         const CACHE_PARENT = 'parent';
  780.         const CACHE_TITLE = 'title';
  781.         const CACHE_DESCRIPTION = 'description';
  782.         const CACHE_RA_EMAIL = 'ra_email';
  783.         const CACHE_CONFIDENTIAL = 'confidential';
  784.         const CACHE_CREATED = 'created';
  785.         const CACHE_UPDATED = 'updated';
  786.         const CACHE_COMMENT = 'comment';
  787.  
  788.         /**
  789.          * @return void
  790.          * @throws OIDplusException
  791.          */
  792.         private static function buildObjectInformationCache() {
  793.                 if (is_null(self::$object_info_cache)) {
  794.                         self::$object_info_cache = array();
  795.                         $res = OIDplus::db()->query("select * from ###objects");
  796.                         while ($row = $res->fetch_array()) {
  797.                                 self::$object_info_cache[$row['id']] = $row;
  798.                         }
  799.                 }
  800.         }
  801.  
  802.         /**
  803.          * override this function if you want your object type to save
  804.          * attachments in directories with easy names.
  805.          * Take care that your custom directory name will not allow jailbreaks (../) !
  806.          * @return string
  807.          * @throws OIDplusException
  808.          */
  809.         public function getDirectoryName(): string {
  810.                 if ($this->isRoot()) return $this->ns();
  811.                 return $this->getLegacyDirectoryName();
  812.         }
  813.  
  814.         /**
  815.          * @return string
  816.          * @throws OIDplusException
  817.          */
  818.         public final function getLegacyDirectoryName(): string {
  819.                 if ($this::ns() == 'oid') {
  820.                         $oid = $this->nodeId(false);
  821.                 } else {
  822.                         $oid = null;
  823.                         $alt_ids = $this->getAltIds();
  824.                         foreach ($alt_ids as $alt_id) {
  825.                                 if ($alt_id->getNamespace() == 'oid') {
  826.                                         $oid = $alt_id->getId();
  827.                                         break; // we prefer the first OID (for GUIDs, the first OID is the OIDplus-OID, and the second OID is the UUID OID)
  828.                                 }
  829.                         }
  830.                 }
  831.  
  832.                 if (!is_null($oid) && ($oid != '')) {
  833.                         // For OIDs, it is the OID, for other identifiers
  834.                         // it it the OID alt ID (generated using the SystemID)
  835.                         return str_replace('.', '_', $oid);
  836.                 } else {
  837.                         // Can happen if you don't have a system ID (due to missing OpenSSL plugin)
  838.                         return md5($this->nodeId(true)); // we don't use $id, because $this->nodeId(true) is possibly more canonical than $id
  839.                 }
  840.         }
  841.  
  842.         /**
  843.          * @param string $mode
  844.          * @return string
  845.          */
  846.         public static function treeIconFilename(string $mode): string {
  847.                 // for backwards-compatibility with older plugins
  848.                 return 'img/treeicon_'.$mode.'.png';
  849.         }
  850.  
  851. }
  852.