Esempio n. 1
0
 /**
  * get the list of objects referenced inside another object
  * @param  array | int $p params
  * @return json        response
  */
 public static function getAssociatedObjects($p)
 {
     $data = array();
     if (is_numeric($p)) {
         $p = array('id' => $p);
     }
     if (empty($p['id']) && empty($p['template_id'])) {
         return array('success' => true, 'data' => $data, 's' => '1');
     }
     $ids = array();
     $template = null;
     if (!empty($p['id'])) {
         // SECURITY: check if current user has at least read access to this case
         if (!Security::canRead($p['id'])) {
             throw new \Exception(L\get('Access_denied'));
         }
         /* select distinct associated case ids from the case */
         $obj = new Objects\Object($p['id']);
         $obj->load();
         $template = $obj->getTemplate();
         $linearData = $obj->getLinearData();
         foreach ($linearData as $f) {
             $tf = $template->getField($f['name']);
             if ($tf['type'] == '_objects') {
                 $a = Util\toIntArray(@$f['value']);
                 $ids = array_merge($ids, $a);
             }
         }
     } else {
         $template = new Objects\Template($p['template_id']);
         $template->load();
     }
     if (!empty($p['data']) && is_array($p['data'])) {
         foreach ($p['data'] as $key => $value) {
             $a = Util\toIntArray($value);
             $ids = array_merge($ids, $a);
         }
     }
     if ($template) {
         $templateData = $template->getData();
         foreach ($templateData['fields'] as $field) {
             if (!empty($field['cfg']['value'])) {
                 $a = Util\toIntArray($field['cfg']['value']);
                 $ids = array_merge($ids, $a);
             }
         }
     }
     $ids = array_unique($ids);
     if (empty($ids)) {
         return array('success' => true, 'data' => array());
     }
     /* end of select distinct case ids from the case */
     $data = Search::getObjects($ids, 'id,template_id,name,date,status:task_status');
     $data = array_values($data);
     return array('success' => true, 'data' => $data);
 }
Esempio n. 2
0
 /**
  * return records for an objects field based on its config
  * @param  array $p
  * @return json  repsponce
  */
 public function getObjectsForField($p)
 {
     // ,"scope": 'tree' //project, parent, self, $node_id
     // ,"field": <field_name> //for field type
     // ,"descendants": true
     // /* filter used for objects */
     // ,+"tags": []
     // ,+"types": []
     // ,+"templates": []
     // ,"templateGroups": []
     //,+query - user query
     //unset restricted query params from user input
     unset($p['fq']);
     $fieldConfig = array();
     // get field config from database
     if (!empty($p['fieldId']) && is_numeric($p['fieldId'])) {
         $res = DB\dbQuery('SELECT cfg FROM templates_structure WHERE id = $1', $p['fieldId']) or die(DB\dbQueryError());
         if ($r = $res->fetch_assoc()) {
             $fieldConfig = Util\jsonDecode($r['cfg']);
             //set "fq" param from database (dont trust user imput)
             if (!empty($fieldConfig['fq'])) {
                 $p['fq'] = $fieldConfig['fq'];
             }
         }
         $res->close();
     }
     if (!empty($p['source'])) {
         if (is_array($p['source'])) {
             // a custom source
             $rez = array();
             if (empty($p['fieldId'])) {
                 return $rez;
             }
             //get custom method from config
             if (empty($fieldConfig['source']['fn'])) {
                 return $rez;
             }
             $method = explode('.', $fieldConfig['source']['fn']);
             $class = new $method[0]();
             $rez = $class->{$method}[1]($p);
             if (!empty($rez)) {
                 return $rez;
             }
         }
         switch ($p['source']) {
             case 'field':
                 $ids = array();
                 switch ($p['scope']) {
                     case 'project':
                         $ids = $this->getCaseId(Path::detectRealTargetId($p['path']));
                         break;
                     case 'parent':
                         $ids = Path::detectRealTargetId($p['path']);
                         break;
                     default:
                         if (empty($p['pidValue']) || empty($p['field'])) {
                             break 2;
                         }
                         $ids = $p['pidValue'];
                 }
                 $ids = Util\toNumericArray($ids);
                 if (empty($ids)) {
                     break;
                 }
                 /*get distinct target field values for selected objects in parent field */
                 $obj = new Objects\Object();
                 $values = array();
                 foreach ($ids as $id) {
                     $obj->load($id);
                     $fv = $obj->getFieldValue($p['field'], 0);
                     $fv = Util\toNumericArray(@$fv['value']);
                     $values = array_merge($values, $fv);
                 }
                 $values = array_unique($values);
                 if (empty($values)) {
                     return array('success' => true, 'data' => array());
                 }
                 $p['ids'] = $values;
                 break;
         }
     }
     $pids = false;
     if (!empty($fieldConfig['scope'])) {
         $scope = $fieldConfig['scope'];
         switch ($scope) {
             case 'project':
                 /* limiting pid to project. If not in a project then to parent directory */
                 if (!empty($p['objectId']) && is_numeric($p['objectId'])) {
                     $pids = $this->getCaseId($p['objectId']);
                 } elseif (!empty($p['path'])) {
                     $pids = $this->getCaseId(Path::detectRealTargetId($p['path']));
                 }
                 break;
             case 'parent':
                 if (!empty($p['objectId']) && is_numeric($p['objectId'])) {
                     $p['pids'] = $this->getPid($p['objectId']);
                 } elseif (!empty($p['path'])) {
                     $pids = Path::detectRealTargetId($p['path']);
                 }
                 break;
             case 'self':
                 if (!empty($p['objectId']) && is_numeric($p['objectId'])) {
                     $p['pids'] = $p['objectId'];
                 } elseif (!empty($p['path'])) {
                     $pids = Path::detectRealTargetId($p['path']);
                 }
                 break;
             case 'variable':
                 $pids = empty($p['pidValue']) ? Path::detectRealTargetId($p['path']) : Util\toNumericArray($p['pidValue']);
                 break;
             default:
                 $pids = Util\toNumericArray($scope);
                 break;
         }
     }
     if (!empty($pids)) {
         if (empty($p['descendants'])) {
             $p['pid'] = $pids;
         } elseif (@$p['source'] !== 'field') {
             $p['pids'] = $pids;
         }
     }
     $p['fl'] = 'id,name,type,template_id,status';
     if (!empty($p['fields'])) {
         if (!is_array($p['fields'])) {
             $p['fields'] = explode(',', $p['fields']);
         }
         for ($i = 0; $i < sizeof($p['fields']); $i++) {
             $fieldName = trim($p['fields'][$i]);
             if ($fieldName == 'project') {
                 $fieldName = 'case';
             }
             if (in_array($fieldName, array('date', 'path', 'case', 'size', 'cid', 'oid', 'cdate', 'udate'))) {
                 $p['fl'] .= ',' . $fieldName;
             }
         }
     }
     //increase number of returned items
     if (empty($p['rows'])) {
         $p['rows'] = 50;
     }
     $search = new Search();
     // temporary: Don't use permissions for Objects fields
     // it can be later reinforced per field in config
     $p['skipSecurity'] = true;
     $rez = $search->query($p);
     foreach ($rez['data'] as &$doc) {
         $res = DB\dbQuery('SELECT cfg
             FROM tree
             WHERE id = $1 AND
                 cfg IS NOT NULL', $doc['id']) or die(DB\dbQueryError());
         if ($r = $res->fetch_assoc()) {
             if (!empty($r['cfg'])) {
                 $cfg = Util\toJSONArray($r['cfg']);
                 if (!empty($cfg['iconCls'])) {
                     $doc['iconCls'] = $cfg['iconCls'];
                 }
             }
         }
         $res->close();
     }
     if (empty($rez['DC'])) {
         $rez['DC'] = array('name' => array('solr_column_name' => "name", 'idx' => 0));
     }
     return $rez;
 }