Cheetah
Admin.php
Go to the documentation of this file.
1 <?php
2 
8 // admin functions
9 
10 class Admin extends ThingPage
11 {
15  function __construct ()
16  {
17  global $f;
18  $this->_admin = $f->isAdmin ();
19  }
20 
26  function deleteCategory ($cat_id)
27  {
28  if (!$this->_admin || 0 !== strcasecmp($_SERVER['REQUEST_METHOD'], 'POST'))
29  return '<ret>0</ret>';
30 
31  $db = new DbAdmin ();
32  return $db->deleteCategoryAll ((int)$cat_id) ? '<ret>1</ret>' : '<ret>0</ret>';
33  }
34 
40  function deleteForum ($forum_id)
41  {
42  if (!$this->_admin || 0 !== strcasecmp($_SERVER['REQUEST_METHOD'], 'POST'))
43  return '<ret>0</ret>';
44 
45  $db = new DbAdmin ();
46 
47  $cat = $db->getCatByForumId($forum_id);
48 
49  if ($db->deleteForumAll ((int)$forum_id))
50  return '<root><cat_uri>' . $cat['cat_uri'] . '</cat_uri><cat_id>' . $cat['cat_id'] . '</cat_id></root>';
51  else
52  return '<root><cat_id>0</cat_id></root>';
53  }
54 
60  function editCategory ($cat_id)
61  {
62  $db = new DbForum ();
63  $a = $db->getCat ((int)$cat_id);
64 
65  $cu = $this->getUrlsXml ();
66 
67  encode_post_text ($a['cat_name']);
68 
69  return <<<EOS
70 <root>
71 $cu
72 <cat cat_id="$cat_id">
73  <cat_name>{$a['cat_name']}</cat_name>
74  <cat_order>{$a['cat_order']}</cat_order>
75  <cat_expanded>{$a['cat_expanded']}</cat_expanded>
76 </cat>
77 </root>
78 EOS;
79  }
80 
87  function editCategorySubmit ($cat_id, $cat_name, $cat_order, $cat_expanded)
88  {
89  if (!$this->_admin || 0 !== strcasecmp($_SERVER['REQUEST_METHOD'], 'POST'))
90  return '<ret>0</ret>';
91 
92  $cat_name = unicode_urldecode($cat_name);
93  prepare_to_db($cat_name, 0);
94 
95  // cat_name check
96 
97  $db = new DbAdmin ();
98  $cat_name = $db->unescape($cat_name);
99  if ($cat_id) {
100  return $db->editCategory ((int)$cat_id, $cat_name, (int)$cat_order, $cat_expanded ? 1 : 0) ? '<ret>1</ret>' : '<ret>0</ret>';
101  } else {
102  global $f;
103  $cat_uri = $f->uriGenerate ($cat_name, TF_FORUM_CAT, 'cat_uri');
104  return $db->insertCategory ($cat_name, $cat_uri, (int)$cat_order, $cat_expanded ? 1 : 0) ? '<ret>1</ret>' : '<ret>0</ret>';
105  }
106  }
107 
114  function editForum ($forum_id, $cat_id)
115  {
116  $db = new DbAdmin ();
117  $fdb = new DbForum ();
118 
119  if ($forum_id)
120  $a = $db->getForum ((int)$forum_id);
121  else
122  $a['cat_id'] = $cat_id;
123 
124  $c = $fdb->getCat ($a['cat_id']);
125  $a['cat_uri'] = $c['cat_uri'];
126 
127  $cu = $this->getUrlsXml ();
128 
129  encode_post_text ($a['forum_title']);
130  encode_post_text ($a['forum_desc']);
131 
132  return <<<OES
133 <root>
134 $cu
135 <forum forum_id="$forum_id">
136  <cat_id>{$a['cat_id']}</cat_id>
137  <cat_uri>{$a['cat_uri']}</cat_uri>
138  <title>{$a['forum_title']}</title>
139  <desc>{$a['forum_desc']}</desc>
140  <type>{$a['forum_type']}</type>
141  <order>{$a['forum_order']}</order>
142 </forum>
143 </root>
144 OES;
145  }
146 
156  function editFormSubmit ($cat_id, $forum_id, $title, $desc, $type, $order)
157  {
158  if (!$this->_admin || 0 !== strcasecmp($_SERVER['REQUEST_METHOD'], 'POST'))
159  return '<ret>0</ret>';
160 
161  $title = unicode_urldecode ($title);
162  $desc = unicode_urldecode ($desc);
163 
164  prepare_to_db($title, 0);
165  prepare_to_db($desc, 0);
166  prepare_to_db($type, 0);
167 
168  $db = new DbAdmin ();
169 
170  $title = $db->unescape($title);
171  $desc = $db->unescape($desc);
172 
173  if ($forum_id > 0) {
174  return $db->editForum ((int)$forum_id, $title, $desc, $type, (int)$order) ? '<ret>1</ret>' : '<ret>0</ret>';
175  } else {
176  global $f;
177  $forum_uri = $f->uriGenerate ($title, TF_FORUM, 'forum_uri');
178  return $db->insertForum ((int)$cat_id, $title, $desc, $type, $forum_uri, (int)$order) ? '<ret>1</ret>' : '<ret>0</ret>';
179  }
180 
181  }
182 
186  function getHiddenPostsXML ($wp)
187  {
188  return $this->getXxxPostsXML ($wp, 'getHiddenPosts', '[L[Hidden Posts]]');
189  }
190 
194  function getReportedPostsXML ($wp)
195  {
196  return $this->getXxxPostsXML ($wp, 'getReportedPosts', '[L[Reported Posts]]', '<allow_clear_report>1</allow_clear_report>');
197  }
198 
199  function getXxxPostsXML ($wp, $sDbFunc, $sTitle, $sAddXml = '')
200  {
201  global $gConf;
202  global $f;
203 
204  $ui = array ();
205 
206  $fdb = new DbForum ();
207  $adb = new DbAdmin ();
208 
209  if (!$this->_admin) {
210  if ($wp) {
211  $GLOBALS['f']->setTitle ('<![CDATA[' . $sTitle . ']]>');
212  $li = $GLOBALS['f']->_getLoginInfo ($u);
213  return $this->addHeaderFooter ($li, "<posts></posts>");
214  } else {
215  return "<root><posts></posts></root>";
216  }
217  }
218 
219  // check user permissions to delete or edit posts
220  $gl_allow_edit = 1;
221  $gl_allow_del = 1;
222  $gl_allow_hide_posts = 1;
223  $gl_allow_unhide_posts = 1;
224  $gl_allow_clear_report = 1;
225  $gl_allow_download = 1;
226 
227  $u = $f->_getLoginUser();
228 
229  $a = $adb->$sDbFunc($u);
230  $p = '';
231  foreach ($a as $r) {
232  // acquire user info
233  if (!isset($ui[$r['user']]) && ($aa = $f->_getUserInfoReadyArray ($r['user'])))
234  $ui[$r['user']] = $aa;
235 
236  $allow_edit = $gl_allow_edit;
237  $allow_del = $gl_allow_del;
238 
239  $files = $GLOBALS['f']->_getAttachmentsXML ($r['post_id']);
240 
241  encode_post_text ($r['post_text']);
242 
243  $r['when'] = orca_format_date($r['when']);
244 
245  $p .= <<<EOF
246 <post id="{$r['post_id']}" force_show="1">
247  <text>{$r['post_text']}</text>
248  <when>{$r['when']}</when>
249  <allow_edit>$allow_edit</allow_edit>
250  <allow_del>$allow_del</allow_del>
251  <allow_hide_posts>$gl_allow_hide_posts</allow_hide_posts>
252  <allow_unhide_posts>$gl_allow_unhide_posts</allow_unhide_posts>
253  <allow_download>$gl_allow_download</allow_download>
254  $sAddXml
255  <points>{$r['votes']}</points>
256  <hidden>{$r['hidden']}</hidden>
257  <vote_user_point>{$r['vote_user_point']}</vote_user_point>
258  <user posts="{$ui[$r['user']]['posts']}" name="{$r['user']}">
259  <avatar>{$ui[$r['user']]['avatar']}</avatar>
260  <url>{$ui[$r['user']]['url']}</url>
261  <title>{$ui[$r['user']]['title']}</title>
262  <onclick>{$ui[$r['user']]['onclick']}</onclick>
263  <role>{$ui[$r['user']]['role']}</role>
264  </user>
265  <attachments>$files</attachments>
266  <min_point>{$gConf['min_point']}</min_point>
267 </post>
268 EOF;
269  $rr = $r;
270 
271  }
272 
273  if ($wp) {
274  $GLOBALS['f']->setTitle ('<![CDATA[' . $sTitle . ']]>');
275  $li = $GLOBALS['f']->_getLoginInfo ($u);
276  return $this->addHeaderFooter ($li, "<posts><topic><title>$sTitle</title><id>0</id></topic><forum><id>0</id></forum>{$p}</posts>");
277  } else {
278  $cu = $this->getUrlsXml ();
279  return "<root>$cu<posts><topic><title>$sTitle</title><id>0</id></topic><forum><id>0</id></forum>{$p}</posts></root>";
280  }
281 
282  }
283 
284  function compileLangs ()
285  {
286  global $gConf;
287 
288  if (!$this->_admin || 0 !== strcasecmp($_SERVER['REQUEST_METHOD'], 'POST')) {
289  return '<ret>0</ret>';
290  }
291 
292  require_once( './classes/ChLang.php' );
293  require_once( $gConf['dir']['xml'].'lang.php' );
294 
295  $sLang = isset($_GET['lang']) && preg_match("/^[a-z]{2}$/", $_GET['lang']) ? $_GET['lang'] : $gConf['lang'];
296  $l = new ChLang ($sLang, $gConf['skin']);
297  $l->setVisualProcessing(0);
298  if ($l->compile ())
299  return '<ret>1</ret>';
300  return '<ret>0</ret>';
301  }
302 
303  function clearReport ($post_id)
304  {
305  if (!$post_id || !$this->_admin || 0 !== strcasecmp($_SERVER['REQUEST_METHOD'], 'POST'))
306  return '<ret>0</ret>';
307 
308  $db = new DbAdmin ();
309  if (!$db->clearReport ((int)$post_id))
310  return '<ret>0</ret>';
311 
312  return '<ret>1</ret>';
313  }
314 }
Admin\deleteCategory
deleteCategory($cat_id)
Definition: Admin.php:26
$f
global $f
Definition: callback.php:13
orca_format_date
orca_format_date($iTimestamp)
Definition: util.inc.php:273
name
Core AllowHostnameUnderscore underscores are not permitted in host most browsers do the right thing when faced with an underscore in the host name
Definition: Core.AllowHostnameUnderscore.txt:11
$db
if(!defined("DB_HOST")) define("DB_HOST" $db['host']
Definition: header.inc.php:18
post
post($sTable, $sId, $sAuthor, $sParent, $sMood, $sFileId)
Definition: customFunctions.inc.php:8
encode_post_text
encode_post_text(&$s, $bEncodeSpecialChars=false, $bAutohyperlink=false)
Definition: util.inc.php:146
order
</code > This is a workaround for a bug in FCKeditor which causes it to swap attributes order
Definition: Output.SortAttr.txt:10
unicode_urldecode
unicode_urldecode($url)
Definition: util.inc.php:170
php
DbAdmin
Definition: DbAdmin.php:38
Admin
Definition: Admin.php:11
Admin\deleteForum
deleteForum($forum_id)
Definition: Admin.php:40
DbForum
Definition: DbForum.php:35
Admin\getXxxPostsXML
getXxxPostsXML($wp, $sDbFunc, $sTitle, $sAddXml='')
Definition: Admin.php:199
Admin\editCategory
editCategory($cat_id)
Definition: Admin.php:60
Admin\__construct
__construct()
Definition: Admin.php:15
Admin\clearReport
clearReport($post_id)
Definition: Admin.php:303
$_GET
$_GET['debug']
Definition: index.php:67
$sTitle
$sTitle
Definition: actions.inc.php:13
ThingPage\getUrlsXml
getUrlsXml()
Definition: ThingPage.php:43
Admin\editFormSubmit
editFormSubmit($cat_id, $forum_id, $title, $desc, $type, $order)
Definition: Admin.php:156
type
if(!defined("USER_STATUS_TYPE")) define("USER_STATUS_TYPE" type
Definition: constants.inc.php:13
Admin\editForum
editForum($forum_id, $cat_id)
Definition: Admin.php:114
ChLang
Definition: ChLang.php:11
global
if(!defined("GLOBAL_MODULE")) define("GLOBAL_MODULE" global
Definition: header.inc.php:25
Admin\getReportedPostsXML
getReportedPostsXML($wp)
Definition: Admin.php:194
TF_FORUM
const TF_FORUM
Definition: DbForum.php:8
TF_FORUM_CAT
const TF_FORUM_CAT
Definition: DbForum.php:9
Admin\compileLangs
compileLangs()
Definition: Admin.php:284
Admin\editCategorySubmit
editCategorySubmit($cat_id, $cat_name, $cat_order, $cat_expanded)
Definition: Admin.php:87
Admin\getHiddenPostsXML
getHiddenPostsXML($wp)
Definition: Admin.php:186
ThingPage
Definition: ThingPage.php:11
$gConf
global $gConf
Definition: header.inc.php:8
as
as
Definition: Filter.ExtractStyleBlocks.Escaping.txt:10
prepare_to_db
prepare_to_db(&$s, $iAllowHTML=1)
Definition: util.inc.php:110
ThingPage\addHeaderFooter
addHeaderFooter(&$li, $content)
Definition: ThingPage.php:63
$GLOBALS
$GLOBALS['iAdminPage']
Definition: advanced_settings.php:10