Newer
Older
<?php
/*********************************************************************
class.category.php
Backend support for article categories.
http://www.osticket.com
Released under the GNU General Public License WITHOUT ANY WARRANTY.
See LICENSE.TXT for details.
vim: expandtab sw=4 ts=4 sts=4:
**********************************************************************/
require_once INCLUDE_DIR . 'class.faq.php';
class Category extends VerySimpleModel {
static $meta = array(
'table' => FAQ_CATEGORY_TABLE,
'pk' => array('category_id'),
'ordering' => array('name'),
'joins' => array(
'faqs' => array(
/* ------------------> Getter methods <--------------------- */
function getId() { return $this->category_id; }
function getName() { return $this->name; }
function getNumFAQs() { return $this->faqs->count(); }
function getDescription() { return $this->description; }
function getNotes() { return $this->notes; }
function getCreateDate() { return $this->created; }
function getUpdateDate() { return $this->updated; }
function isPublic() { return $this->ispublic; }
function getHashtable() { return $this->ht; }
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
// Translation interface ----------------------------------
function getTranslateTag($subtag) {
return _H(sprintf('category.%s.%s', $subtag, $this->getId()));
}
function getLocal($subtag) {
$tag = $this->getTranslateTag($subtag);
$T = CustomDataTranslation::translate($tag);
return $T != $tag ? $T : $this->ht[$subtag];
}
function getLocalDescription($lang=false) {
return $this->_getLocal('description', $lang);
}
function getLocalName($lang=false) {
return $this->_getLocal('name', $lang);
}
function _getLocal($what, $lang=false) {
if (!$lang) {
$lang = $this->getDisplayLang();
}
$translations = $this->getAllTranslations();
foreach ($translations as $t) {
if (0 === strcasecmp($lang, $t->lang)) {
$data = $t->getComplex();
if (isset($data[$what]))
return $data[$what];
}
}
return $this->ht[$what];
}
function getAllTranslations() {
if (!isset($this->_local)) {
$tag = $this->getTranslateTag('c:d');
$this->_local = CustomDataTranslation::allTranslations($tag, 'article');
}
return $this->_local;
}
function getDisplayLang() {
if (isset($_REQUEST['kblang']))
$lang = $_REQUEST['kblang'];
else
$lang = Internationalization::getCurrentLanguage();
return $lang;
}
function getTopArticles() {
return $this->faqs
->filter(Q::not(array('ispublished'=>0)))
->order_by('-ispublished', '-views')
->limit(5);
}
/* ------------------> Setter methods <--------------------- */
function setName($name) { $this->name=$name; }
function setNotes($notes) { $this->notes=$notes; }
function setDescription($desc) { $this->description=$desc; }
/* --------------> Database access methods <---------------- */
function update($vars, &$errors, $validation=false) {
// Cleanup.
$vars['name'] = Format::striptags(trim($vars['name']));
// Validate
if ($vars['id'] && $this->getId() != $vars['id'])
$errors['err'] = __('Internal error occurred');
if (!$vars['name'])
$errors['name'] = __('Category name is required');
elseif (strlen($vars['name']) < 3)
$errors['name'] = __('Name is too short. 3 chars minimum');
elseif (($cid=self::findIdByName($vars['name'])) && $cid != $vars['id'])
$errors['name'] = __('Category already exists');
if (!$vars['description'])
$errors['description'] = __('Category description is required');
if ($errors)
return false;
/* validation only */
if ($validation)
return true;
$this->ispublic = $vars['ispublic'];
$this->name = $vars['name'];
$this->description = Format::sanitize($vars['description']);
$this->notes = Format::sanitize($vars['notes']);
if (!$this->save())
return false;
if (isset($vars['trans']) && !$this->saveTranslations($vars))
return false;
// TODO: Move FAQs if requested.
return true;
}
function delete() {
try {
parent::delete();
$this->faqs->expunge();
catch (OrmException $e) {
return false;
}
return true;
function save($refetch=false) {
if ($this->dirty)
$this->updated = SqlFunction::NOW();
return parent::save($refetch || $this->dirty);
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
function saveTranslations($vars) {
global $thisstaff;
foreach ($this->getAllTranslations() as $t) {
$trans = @$vars['trans'][$t->lang];
if (!$trans || !array_filter($trans))
// Not updating translations
continue;
// Content is not new and shouldn't be added below
unset($vars['trans'][$t->lang]);
$content = array('name' => $trans['name'],
'description' => Format::sanitize($trans['description']));
// Don't update content which wasn't updated
if ($content == $t->getComplex())
continue;
$t->text = $content;
$t->agent_id = $thisstaff->getId();
$t->updated = SqlFunction::NOW();
if (!$t->save())
return false;
}
// New translations (?)
$tag = $this->getTranslateTag('c:d');
foreach ($vars['trans'] as $lang=>$parts) {
$content = array('name' => @$parts['name'],
'description' => Format::sanitize(@$parts['description']));
if (!array_filter($content))
continue;
$t = CustomDataTranslation::create(array(
'type' => 'article',
'object_hash' => $tag,
'lang' => $lang,
'text' => $content,
'revision' => 1,
'agent_id' => $thisstaff->getId(),
'updated' => SqlFunction::NOW(),
));
if (!$t->save())
return false;
}
return true;
}
/* ------------------> Static methods <--------------------- */
static function findIdByName($name) {
$object = self::objects()->filter(array(
'name'=>$name
))->values_flat('category_id')->one();
if ($object)
return $object[0];
static function findByName($name) {
return self::objects()->filter(array(
'name'=>$name
))->one();
static function getFeatured() {
return self::objects()->filter(array(
'ispublic'=>2
));
}
static function create($vars=false) {
$category = parent::create($vars);
$category->created = SqlFunction::NOW();
return $category;