ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
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
31include_once 'class.ilMDBase.php';
32
33class ilMDKeyword extends ilMDBase
34{
35 // SET/GET
36 function setKeyword($a_keyword)
37 {
38 $this->keyword = $a_keyword;
39 }
40 function getKeyword()
41 {
42 return $this->keyword;
43 }
44 function setKeywordLanguage(&$lng_obj)
45 {
46 if(is_object($lng_obj))
47 {
48 $this->keyword_language = $lng_obj;
49 }
50 }
52 {
53 return is_object($this->keyword_language) ? $this->keyword_language : false;
54 }
56 {
57 return is_object($this->keyword_language) ? $this->keyword_language->getLanguageCode() : false;
58 }
59
60 function save()
61 {
62 global $ilDB;
63
64 $fields = $this->__getFields();
65 $fields['meta_keyword_id'] = array('integer',$next_id = $ilDB->nextId('il_meta_keyword'));
66
67 if($this->db->insert('il_meta_keyword',$fields))
68 {
69 $this->setMetaId($next_id);
70 return $this->getMetaId();
71 }
72 return false;
73 }
74
75 function update()
76 {
77 global $ilDB;
78
79 if($this->getMetaId())
80 {
81 if($this->db->update('il_meta_keyword',
82 $this->__getFields(),
83 array("meta_keyword_id" => array('integer',$this->getMetaId()))))
84 {
85 return true;
86 }
87 }
88 return false;
89 }
90
91 function delete()
92 {
93 global $ilDB;
94
95 if($this->getMetaId())
96 {
97 $query = "DELETE FROM il_meta_keyword ".
98 "WHERE meta_keyword_id = ".$ilDB->quote($this->getMetaId() ,'integer');
99 $res = $ilDB->manipulate($query);
100
101 return true;
102 }
103 return false;
104 }
105
106
107 function __getFields()
108 {
109 return array('rbac_id' => array('integer',$this->getRBACId()),
110 'obj_id' => array('integer', $this->getObjId()),
111 'obj_type' => array('text', $this->getObjType()),
112 'parent_type' => array('text', $this->getParentType()),
113 'parent_id' => array('integer', $this->getParentId()),
114 'keyword' => array('text', $this->getKeyword()),
115 'keyword_language' => array('text', $this->getKeywordLanguageCode()));
116 }
117
118 function read()
119 {
120 global $ilDB;
121
122 include_once 'Services/MetaData/classes/class.ilMDLanguageItem.php';
123
124 if($this->getMetaId())
125 {
126 $query = "SELECT * FROM il_meta_keyword ".
127 "WHERE meta_keyword_id = ".$ilDB->quote($this->getMetaId() ,'integer');
128
129 $res = $this->db->query($query);
130 while($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT))
131 {
132 $this->setRBACId($row->rbac_id);
133 $this->setObjId($row->obj_id);
134 $this->setObjType($row->obj_type);
135 $this->setParentId($row->parent_id);
136 $this->setParentType($row->parent_type);
137 $this->setKeyword($row->keyword);
138 $this->setKeywordLanguage( new ilMDLanguageItem($row->keyword_language));
139 }
140 }
141 return true;
142 }
143
144 /*
145 * XML Export of all meta data
146 * @param object (xml writer) see class.ilMD2XML.php
147 *
148 */
149 function toXML(&$writer)
150 {
151 $writer->xmlElement('Keyword',array('Language' => $this->getKeywordLanguageCode() ?
152 $this->getKeywordLanguageCode() :
153 'en'),
154 $this->getKeyword());
155 }
156
157
158 // STATIC
159 static function _getIds($a_rbac_id,$a_obj_id,$a_parent_id,$a_parent_type)
160 {
161 global $ilDB;
162
163 $query = "SELECT meta_keyword_id FROM il_meta_keyword ".
164 "WHERE rbac_id = ".$ilDB->quote($a_rbac_id ,'integer')." ".
165 "AND obj_id = ".$ilDB->quote($a_obj_id ,'integer')." ".
166 "AND parent_id = ".$ilDB->quote($a_parent_id ,'integer')." ".
167 "AND parent_type = ".$ilDB->quote($a_parent_type ,'text')." ".
168 "ORDER BY meta_keyword_id ";
169
170 $res = $ilDB->query($query);
171 while($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT))
172 {
173 $ids[] = $row->meta_keyword_id;
174 }
175 return $ids ? $ids : array();
176 }
177
188 public static function _getKeywordsByLanguage($a_rbac_id,$a_obj_id,$a_type)
189 {
190 global $ilDB,$ilObjDataCache;
191
192 $query = "SELECT keyword,keyword_language ".
193 "FROM il_meta_keyword ".
194 "WHERE rbac_id = ".$ilDB->quote($a_rbac_id ,'integer')." ".
195 "AND obj_id = ".$ilDB->quote($a_obj_id ,'integer')." ".
196 "AND obj_type = ".$ilDB->quote($a_type ,'text')." ";
197 $res = $ilDB->query($query);
198 while($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT))
199 {
200 if($row->keyword)
201 {
202 $keywords[$row->keyword_language][] = $row->keyword;
203 }
204 }
205 return $keywords ? $keywords : array();
206 }
217 public static function _getKeywordsByLanguageAsString($a_rbac_id,$a_obj_id,$a_type)
218 {
219 foreach(ilMDKeyword::_getKeywordsByLanguage($a_rbac_id,$a_obj_id,$a_type) as $lng_code => $keywords)
220 {
221 $key_string[$lng_code] = implode(",",$keywords);
222 }
223 return $key_string ? $key_string : array();
224 }
225
233 public static function _searchKeywords($a_query,$a_type, $a_rbac_id = 0)
234 {
235 global $ilDB;
236
237 $qs = 'AND ';
238 $counter = 0;
239 foreach((array) explode(' ',$a_query) as $part)
240 {
241 if($counter++)
242 {
243 $qs .= 'OR ';
244 }
245 $qs .= ($ilDB->like('keyword','text',$part).' ');
246 }
247
248 if($a_rbac_id)
249 {
250 $query = "SELECT obj_id FROM il_meta_keyword ".
251 "WHERE rbac_id = ".$ilDB->quote($a_rbac_id,'integer').' '.
252 'AND obj_type = '.$ilDB->quote($a_type,'text').' '.
253 $qs;
254 }
255 else
256 {
257 $query = "SELECT obj_id FROM il_meta_keyword ".
258 'WHERE obj_type = '.$ilDB->quote($a_type,'text').' '.
259 $qs;
260 }
261
262 $res = $ilDB->query($query);
263 while($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT))
264 {
265 $obj_ids[] = $row->obj_id;
266 }
267
268 return (array) $obj_ids;
269 }
270
279 public static function _getMatchingKeywords($a_query,$a_type, $a_rbac_id = 0)
280 {
281 global $ilDB;
282
283 $query = "SELECT DISTINCT keyword FROM il_meta_keyword ".
284 'WHERE obj_type = '.$ilDB->quote($a_type,'text').' '.
285 'AND '.$ilDB->like('keyword','text','%'.trim($a_query).'%').' ';
286
287 if($a_rbac_id)
288 {
289 $query .= "AND rbac_id = ".$ilDB->quote($a_rbac_id,'integer').' ';
290 }
291
292 $res = $ilDB->query($query);
293 while($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT))
294 {
295 $kws[] = $row->keyword;
296 }
297 return (array) $kws;
298 }
299
307 public static function lookupKeywords($a_rbac_id, $a_obj_id, $a_return_ids = false)
308 {
309 global $ilDB;
310
311 $query = "SELECT * FROM il_meta_keyword ".
312 "WHERE rbac_id = ".$ilDB->quote($a_rbac_id,'integer').' '.
313 "AND obj_id = ".$ilDB->quote($a_obj_id,'integer').' ';
314 $res = $ilDB->query($query);
315 while($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT))
316 {
317 if(!$a_return_ids)
318 {
319 if(strlen($row->keyword))
320 {
321 $kws[] = $row->keyword;
322 }
323 }
324 else
325 {
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 {
343 foreach($keywords as $keyword)
344 {
345 $keyword = trim($keyword);
346 if ($keyword != "" &&
347 !(is_array($new_keywords[$lang]) && in_array($keyword, $new_keywords[$lang])))
348 {
349 $new_keywords[$lang][] = $keyword;
350 }
351 }
352 }
353
354 // update existing author entries (delete if not entered)
355 foreach($ids = $a_md_section->getKeywordIds() as $id)
356 {
357 $md_key = $a_md_section->getKeyword($id);
358 $lang = $md_key->getKeywordLanguageCode();
359
360 // entered keyword already exists
361 if (is_array($new_keywords[$lang]) &&
362 in_array($md_key->getKeyword(), $new_keywords[$lang]))
363 {
364 unset($new_keywords[$lang]
365 [array_search($md_key->getKeyword(), $new_keywords[$lang])]);
366 }
367 else // existing keyword has not been entered again -> delete
368 {
369 $md_key->delete();
370 }
371 }
372
373 // insert entered, but not existing keywords
374 foreach ($new_keywords as $lang => $key_arr)
375 {
376 foreach($key_arr as $keyword)
377 {
378 if ($keyword != "")
379 {
380 $md_key = $a_md_section->addKeyword();
381 $md_key->setKeyword(ilUtil::stripSlashes($keyword));
382 $md_key->setKeywordLanguage(new ilMDLanguageItem($lang));
383 $md_key->save();
384 }
385 }
386 }
387 }
388}
389?>
An exception for terminatinating execution or to throw for unit testing.
setObjId($a_id)
setParentId($a_id)
setMetaId($a_meta_id, $a_read_data=true)
setObjType($a_type)
setRBACId($a_id)
setParentType($a_parent_type)
& getKeyword($a_keyword_id)
static _getIds($a_rbac_id, $a_obj_id, $a_parent_id, $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.
static _getKeywordsByLanguage($a_rbac_id, $a_obj_id, $a_type)
Get keywords by language.
static _getMatchingKeywords($a_query, $a_type, $a_rbac_id=0)
Search for keywords.
static updateKeywords(ilMDGeneral $a_md_section, array $a_keywords)
Update keywords from input array.
setKeyword($a_keyword)
setKeywordLanguage(&$lng_obj)
static _searchKeywords($a_query, $a_type, $a_rbac_id=0)
Search for objects by keywords.
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
$counter
for($i=1; $i<=count($kw_cases_sel); $i+=1) $lang
Definition: langwiz.php:349
global $ilDB
$a_type
Definition: workflow.php:93