ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
class.ilMDKeyword.php
Go to the documentation of this file.
1 <?php
2 /*
3  +-----------------------------------------------------------------------------+
4  | ILIAS open source |
5  +-----------------------------------------------------------------------------+
6  | Copyright (c) 1998-2001 ILIAS open source, University of Cologne |
7  | |
8  | This program is free software; you can redistribute it and/or |
9  | modify it under the terms of the GNU General Public License |
10  | as published by the Free Software Foundation; either version 2 |
11  | of the License, or (at your option) any later version. |
12  | |
13  | This program is distributed in the hope that it will be useful, |
14  | but WITHOUT ANY WARRANTY; without even the implied warranty of |
15  | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16  | GNU General Public License for more details. |
17  | |
18  | You should have received a copy of the GNU General Public License |
19  | along with this program; if not, write to the Free Software |
20  | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
21  +-----------------------------------------------------------------------------+
22 */
23 
24 
31 include_once 'class.ilMDBase.php';
32 
33 class ilMDKeyword extends ilMDBase
34 {
35  // SET/GET
36  public function setKeyword($a_keyword)
37  {
38  $this->keyword = $a_keyword;
39  }
40  public function getKeyword()
41  {
42  return $this->keyword;
43  }
44  public function setKeywordLanguage(&$lng_obj)
45  {
46  if (is_object($lng_obj)) {
47  $this->keyword_language = $lng_obj;
48  }
49  }
50  public function &getKeywordLanguage()
51  {
52  return is_object($this->keyword_language) ? $this->keyword_language : false;
53  }
54  public function getKeywordLanguageCode()
55  {
56  return is_object($this->keyword_language) ? $this->keyword_language->getLanguageCode() : false;
57  }
58 
59  public function save()
60  {
61  global $DIC;
62 
63  $ilDB = $DIC['ilDB'];
64 
65  $fields = $this->__getFields();
66  $fields['meta_keyword_id'] = array('integer',$next_id = $ilDB->nextId('il_meta_keyword'));
67 
68  if ($this->db->insert('il_meta_keyword', $fields)) {
69  $this->setMetaId($next_id);
70  return $this->getMetaId();
71  }
72  return false;
73  }
74 
75  public function update()
76  {
77  global $DIC;
78 
79  $ilDB = $DIC['ilDB'];
80 
81  if ($this->getMetaId()) {
82  if ($this->db->update(
83  'il_meta_keyword',
84  $this->__getFields(),
85  array("meta_keyword_id" => array('integer',$this->getMetaId()))
86  )) {
87  return true;
88  }
89  }
90  return false;
91  }
92 
93  public function delete()
94  {
95  global $DIC;
96 
97  $ilDB = $DIC['ilDB'];
98 
99  if ($this->getMetaId()) {
100  $query = "DELETE FROM il_meta_keyword " .
101  "WHERE meta_keyword_id = " . $ilDB->quote($this->getMetaId(), 'integer');
102  $res = $ilDB->manipulate($query);
103 
104  return true;
105  }
106  return false;
107  }
108 
109 
110  public function __getFields()
111  {
112  return array('rbac_id' => array('integer',$this->getRBACId()),
113  'obj_id' => array('integer', $this->getObjId()),
114  'obj_type' => array('text', $this->getObjType()),
115  'parent_type' => array('text', $this->getParentType()),
116  'parent_id' => array('integer', $this->getParentId()),
117  'keyword' => array('text', $this->getKeyword()),
118  'keyword_language' => array('text', $this->getKeywordLanguageCode()));
119  }
120 
121  public function read()
122  {
123  global $DIC;
124 
125  $ilDB = $DIC['ilDB'];
126 
127  include_once 'Services/MetaData/classes/class.ilMDLanguageItem.php';
128 
129  if ($this->getMetaId()) {
130  $query = "SELECT * FROM il_meta_keyword " .
131  "WHERE meta_keyword_id = " . $ilDB->quote($this->getMetaId(), 'integer');
132 
133  $res = $this->db->query($query);
134  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
135  $this->setRBACId($row->rbac_id);
136  $this->setObjId($row->obj_id);
137  $this->setObjType($row->obj_type);
138  $this->setParentId($row->parent_id);
139  $this->setParentType($row->parent_type);
140  $this->setKeyword($row->keyword);
141  $this->setKeywordLanguage(new ilMDLanguageItem($row->keyword_language));
142  }
143  }
144  return true;
145  }
146 
147  /*
148  * XML Export of all meta data
149  * @param object (xml writer) see class.ilMD2XML.php
150  *
151  */
152  public function toXML(&$writer)
153  {
154  $writer->xmlElement(
155  'Keyword',
156  array('Language' => $this->getKeywordLanguageCode() ?
157  $this->getKeywordLanguageCode() :
158  'en'),
159  $this->getKeyword()
160  );
161  }
162 
163 
164  // STATIC
165  public static function _getIds($a_rbac_id, $a_obj_id, $a_parent_id, $a_parent_type)
166  {
167  global $DIC;
168 
169  $ilDB = $DIC['ilDB'];
170 
171  $query = "SELECT meta_keyword_id FROM il_meta_keyword " .
172  "WHERE rbac_id = " . $ilDB->quote($a_rbac_id, 'integer') . " " .
173  "AND obj_id = " . $ilDB->quote($a_obj_id, 'integer') . " " .
174  "AND parent_id = " . $ilDB->quote($a_parent_id, 'integer') . " " .
175  "AND parent_type = " . $ilDB->quote($a_parent_type, 'text') . " " .
176  "ORDER BY meta_keyword_id ";
177 
178  $res = $ilDB->query($query);
179  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
180  $ids[] = $row->meta_keyword_id;
181  }
182  return $ids ? $ids : array();
183  }
184 
195  public static function _getKeywordsByLanguage($a_rbac_id, $a_obj_id, $a_type)
196  {
197  global $DIC;
198 
199  $ilDB = $DIC['ilDB'];
200  $ilObjDataCache = $DIC['ilObjDataCache'];
201 
202  $query = "SELECT keyword,keyword_language " .
203  "FROM il_meta_keyword " .
204  "WHERE rbac_id = " . $ilDB->quote($a_rbac_id, 'integer') . " " .
205  "AND obj_id = " . $ilDB->quote($a_obj_id, 'integer') . " " .
206  "AND obj_type = " . $ilDB->quote($a_type, 'text') . " ";
207  $res = $ilDB->query($query);
208  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
209  if ($row->keyword) {
210  $keywords[$row->keyword_language][] = $row->keyword;
211  }
212  }
213  return $keywords ? $keywords : array();
214  }
225  public static function _getKeywordsByLanguageAsString($a_rbac_id, $a_obj_id, $a_type)
226  {
227  foreach (ilMDKeyword::_getKeywordsByLanguage($a_rbac_id, $a_obj_id, $a_type) as $lng_code => $keywords) {
228  $key_string[$lng_code] = implode(",", $keywords);
229  }
230  return $key_string ? $key_string : array();
231  }
232 
240  public static function _searchKeywords($a_query, $a_type, $a_rbac_id = 0)
241  {
242  global $DIC;
243 
244  $ilDB = $DIC['ilDB'];
245 
246  $qs = 'AND ';
247  $counter = 0;
248  foreach ((array) explode(' ', $a_query) as $part) {
249  if ($counter++) {
250  $qs .= 'OR ';
251  }
252  $qs .= ($ilDB->like('keyword', 'text', $part) . ' ');
253  }
254 
255  if ($a_rbac_id) {
256  $query = "SELECT obj_id FROM il_meta_keyword " .
257  "WHERE rbac_id = " . $ilDB->quote($a_rbac_id, 'integer') . ' ' .
258  'AND obj_type = ' . $ilDB->quote($a_type, 'text') . ' ' .
259  $qs;
260  } else {
261  $query = "SELECT obj_id FROM il_meta_keyword " .
262  'WHERE obj_type = ' . $ilDB->quote($a_type, 'text') . ' ' .
263  $qs;
264  }
265 
266  $res = $ilDB->query($query);
267  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
268  $obj_ids[] = $row->obj_id;
269  }
270 
271  return (array) $obj_ids;
272  }
273 
282  public static function _getMatchingKeywords($a_query, $a_type, $a_rbac_id = 0)
283  {
284  global $DIC;
285 
286  $ilDB = $DIC['ilDB'];
287 
288  $query = "SELECT DISTINCT keyword FROM il_meta_keyword " .
289  'WHERE obj_type = ' . $ilDB->quote($a_type, 'text') . ' ' .
290  'AND ' . $ilDB->like('keyword', 'text', '%' . trim($a_query) . '%') . ' ';
291 
292  if ($a_rbac_id) {
293  $query .= "AND rbac_id = " . $ilDB->quote($a_rbac_id, 'integer') . ' ';
294  }
295 
296  $res = $ilDB->query($query);
297  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
298  $kws[] = $row->keyword;
299  }
300  return (array) $kws;
301  }
302 
310  public static function lookupKeywords($a_rbac_id, $a_obj_id, $a_return_ids = false)
311  {
312  global $DIC;
313 
314  $ilDB = $DIC['ilDB'];
315 
316  $query = "SELECT * FROM il_meta_keyword " .
317  "WHERE rbac_id = " . $ilDB->quote($a_rbac_id, 'integer') . ' ' .
318  "AND obj_id = " . $ilDB->quote($a_obj_id, 'integer') . ' ';
319  $res = $ilDB->query($query);
320  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
321  if (!$a_return_ids) {
322  if (strlen($row->keyword)) {
323  $kws[] = $row->keyword;
324  }
325  } else {
326  $kws[] = $row->meta_keyword_id;
327  }
328  }
329  return (array) $kws;
330  }
331 
337  public static function updateKeywords(ilMDGeneral $a_md_section, array $a_keywords)
338  {
339  // trim keywords
340  $new_keywords = array();
341  foreach ($a_keywords as $lang => $keywords) {
342  foreach ((array) $keywords as $keyword) {
343  $keyword = trim($keyword);
344  if ($keyword != "" &&
345  !(is_array($new_keywords[$lang]) && in_array($keyword, $new_keywords[$lang]))) {
346  $new_keywords[$lang][] = $keyword;
347  }
348  }
349  }
350 
351  // update existing author entries (delete if not entered)
352  foreach ($ids = $a_md_section->getKeywordIds() as $id) {
353  $md_key = $a_md_section->getKeyword($id);
354  $lang = $md_key->getKeywordLanguageCode();
355 
356  // entered keyword already exists
357  if (is_array($new_keywords[$lang]) &&
358  in_array($md_key->getKeyword(), $new_keywords[$lang])) {
359  unset($new_keywords[$lang]
360  [array_search($md_key->getKeyword(), $new_keywords[$lang])]);
361  } else { // existing keyword has not been entered again -> delete
362  $md_key->delete();
363  }
364  }
365 
366  // insert entered, but not existing keywords
367  foreach ($new_keywords as $lang => $key_arr) {
368  foreach ($key_arr as $keyword) {
369  if ($keyword != "") {
370  $md_key = $a_md_section->addKeyword();
371  $md_key->setKeyword(ilUtil::stripSlashes($keyword));
372  $md_key->setKeywordLanguage(new ilMDLanguageItem($lang));
373  $md_key->save();
374  }
375  }
376  }
377  }
378 }
& getKeyword($a_keyword_id)
setObjType($a_type)
global $DIC
Definition: saml.php:7
static _searchKeywords($a_query, $a_type, $a_rbac_id=0)
Search for objects by keywords.
if(!array_key_exists('StateId', $_REQUEST)) $id
setKeyword($a_keyword)
static updateKeywords(ilMDGeneral $a_md_section, array $a_keywords)
Update keywords from input array.
$a_type
Definition: workflow.php:92
setMetaId($a_meta_id, $a_read_data=true)
foreach($_POST as $key=> $value) $res
setKeywordLanguage(&$lng_obj)
setObjId($a_id)
setRBACId($a_id)
$query
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
setParentId($a_id)
$row
static _getMatchingKeywords($a_query, $a_type, $a_rbac_id=0)
Search for keywords.
static _getKeywordsByLanguage($a_rbac_id, $a_obj_id, $a_type)
Get keywords by language.
static _getIds($a_rbac_id, $a_obj_id, $a_parent_id, $a_parent_type)
global $ilDB
for($i=1; $i<=count($kw_cases_sel); $i+=1) $lang
Definition: langwiz.php:349
setParentType($a_parent_type)
static lookupKeywords($a_rbac_id, $a_obj_id, $a_return_ids=false)
Lookup Keywords.
static _getKeywordsByLanguageAsString($a_rbac_id, $a_obj_id, $a_type)
Get keywords by language as string.