Subversion Repositories oidplus

Rev

Rev 499 | Go to most recent revision | Blame | Last modification | View Log | RSS feed

  1. <?php
  2.  
  3. /*
  4.  * OIDplus 2.0
  5.  * Copyright 2019 - 2021 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. if (!defined('INSIDE_OIDPLUS')) die();
  21.  
  22. class OIDplusOther extends OIDplusObject {
  23.         private $other;
  24.  
  25.         public function __construct($other) {
  26.                 // No syntax checks
  27.                 $this->other = $other;
  28.         }
  29.  
  30.         public static function parse($node_id) {
  31.                 @list($namespace, $other) = explode(':', $node_id, 2);
  32.                 if ($namespace !== 'other') return false;
  33.                 return new self($other);
  34.         }
  35.  
  36.         public static function objectTypeTitle() {
  37.                 return _L('Other objects');
  38.         }
  39.  
  40.         public static function objectTypeTitleShort() {
  41.                 return _L('Object');
  42.         }
  43.  
  44.         public static function ns() {
  45.                 return 'other';
  46.         }
  47.  
  48.         public static function root() {
  49.                 return 'other:';
  50.         }
  51.  
  52.         public function isRoot() {
  53.                 return $this->other == '';
  54.         }
  55.  
  56.         public function nodeId($with_ns=true) {
  57.                 return $with_ns ? 'other:'.$this->other : $this->other;
  58.         }
  59.  
  60.         public function addString($str) {
  61.                 if ($this->isRoot()) {
  62.                         return 'other:'.$str;
  63.                 } else {
  64.                         return $this->nodeId() . '\\' . $str;
  65.                 }
  66.         }
  67.  
  68.         public function crudShowId(OIDplusObject $parent) {
  69.                 if ($parent->isRoot()) {
  70.                         return substr($this->nodeId(), strlen($parent->nodeId()));
  71.                 } else {
  72.                         return substr($this->nodeId(), strlen($parent->nodeId())+1);
  73.                 }
  74.         }
  75.  
  76.         public function crudInsertPrefix() {
  77.                 return '';
  78.         }
  79.  
  80.         public function jsTreeNodeName(OIDplusObject $parent = null) {
  81.                 if ($parent == null) return $this->objectTypeTitle();
  82.                 if ($parent->isRoot()) {
  83.                         return substr($this->nodeId(), strlen($parent->nodeId()));
  84.                 } else {
  85.                         return substr($this->nodeId(), strlen($parent->nodeId())+1);
  86.                 }
  87.         }
  88.  
  89.         public function defaultTitle() {
  90.                 $ary = explode('\\', $this->other); // TODO: but if an arc contains "\", this does not work. better read from db?
  91.                 $ary = array_reverse($ary);
  92.                 return $ary[0];
  93.         }
  94.  
  95.         public function isLeafNode() {
  96.                 return false;
  97.         }
  98.  
  99.         public function getContentPage(&$title, &$content, &$icon) {
  100.                 $icon = file_exists(__DIR__.'/icon_big.png') ? 'plugins/objectTypes/'.basename(__DIR__).'/icon_big.png' : '';
  101.  
  102.                 if ($this->isRoot()) {
  103.                         $title = OIDplusOther::objectTypeTitle();
  104.  
  105.                         $res = OIDplus::db()->query("select * from ###objects where parent = ?", array(self::root()));
  106.                         if ($res->num_rows() > 0) {
  107.                                 $content  = _L('Please select an object in the tree view at the left to show its contents.');
  108.                         } else {
  109.                                 $content  = _L('Currently, no misc. objects are registered in the system.');
  110.                         }
  111.  
  112.                         if (!$this->isLeafNode()) {
  113.                                 if (OIDplus::authUtils()::isAdminLoggedIn()) {
  114.                                         $content .= '<h2>'._L('Manage root objects').'</h2>';
  115.                                 } else {
  116.                                         $content .= '<h2>'._L('Available objects').'</h2>';
  117.                                 }
  118.                                 $content .= '%%CRUD%%';
  119.                         }
  120.                 } else {
  121.                         $title = $this->getTitle();
  122.  
  123.                         $content = '<h2>'._L('Description').'</h2>%%DESC%%'; // TODO: add more meta information about the object type
  124.  
  125.                         if (!$this->isLeafNode()) {
  126.                                 if ($this->userHasWriteRights()) {
  127.                                         $content .= '<h2>'._L('Create or change subsequent objects').'</h2>';
  128.                                 } else {
  129.                                         $content .= '<h2>'._L('Subsequent objects').'</h2>';
  130.                                 }
  131.                                 $content .= '%%CRUD%%';
  132.                         }
  133.                 }
  134.         }
  135.  
  136.         public function one_up() {
  137.                 $oid = $this->other;
  138.  
  139.                 $p = strrpos($oid, '\\');
  140.                 if ($p === false) return $oid;
  141.                 if ($p == 0) return '\\';
  142.  
  143.                 $oid_up = substr($oid, 0, $p);
  144.  
  145.                 return self::parse(self::ns().':'.$oid_up);
  146.         }
  147.  
  148.         public function distance($to) {
  149.                 if (!is_object($to)) $to = OIDplusObject::parse($to);
  150.                 if (!($to instanceof $this)) return false;
  151.  
  152.                 $a = $to->other;
  153.                 $b = $this->other;
  154.  
  155.                 if (substr($a,0,1) == '\\') $a = substr($a,1);
  156.                 if (substr($b,0,1) == '\\') $b = substr($b,1);
  157.  
  158.                 $ary = explode('\\', $a);
  159.                 $bry = explode('\\', $b);
  160.  
  161.                 $min_len = min(count($ary), count($bry));
  162.  
  163.                 for ($i=0; $i<$min_len; $i++) {
  164.                         if ($ary[$i] != $bry[$i]) return false;
  165.                 }
  166.  
  167.                 return count($ary) - count($bry);
  168.         }
  169. }
  170.