X-Git-Url: http://git.osdn.net/view?p=nucleus-jp%2Fnucleus-next.git;a=blobdiff_plain;f=nucleus%2Flibs%2FADMIN.php;h=2bbcc40ad859852772641899e2816e2296776bbe;hp=3426a5ae4d28889abb143ac48a88dbe8acea3f07;hb=c90b0980cfa3e79cd4bc7eed551a64a5e2b02a5c;hpb=e1da5b20c069e0b90ae1a93fca17a448920b05b2 diff --git a/nucleus/libs/ADMIN.php b/nucleus/libs/ADMIN.php index 3426a5a..2bbcc40 100644 --- a/nucleus/libs/ADMIN.php +++ b/nucleus/libs/ADMIN.php @@ -1,6059 +1,11513 @@ -isLoggedIn()) - { - $memskin = $member->getAdminSkin(); - if ( $memskin ) - { - $skinid = $memskin; - } - } - */ - - /* NOTE: 2. make an instance of skin object */ - if ( !Skin::existsID($skinid) ) - { - return FALSE; - } - - /* NOTE: 3. initializing each members */ - self::$skin = new Skin($skinid, 'AdminActions', 'AdminSkin'); - self::$action = ''; - self::$extrahead = ''; - self::$passvar = ''; - self::$headMess = ''; - self::$aOptions = ''; - return TRUE; - } - - /** - * Admin::action() - * Executes an action - * - * @param string $action action to be performed - * @return void - */ - static public function action($action) - { - global $CONF, $DIR_LIBS, $manager, $member; - - /* 1. decide action name */ - $customAction = postvar('customaction'); - if ( !empty($customAction) ) - { - $alias = array( - 'login' => $customAction, - '' => $customAction - ); - } - else - { - $alias = array( - 'login' => 'overview', - '' => 'overview' - ); - } - if ( array_key_exists($action, $alias) && isset($alias[$action]) ) - { - $action = $alias[$action]; - } - $methodName = "action_{$action}"; - self::$action = strtolower($action); - - /* 2. check the action */ - $synonimActions = array( - 'banlistnewfromitem', - 'memberedit', - 'login', - ); - $allowActions = array_merge($synonimActions, self::$skinless_actions); - $aActionsNotToCheck = array_merge(self::$actions_needless_to_check, self::$edit_actions, $allowActions); - if ( !in_array(self::$action, $aActionsNotToCheck) && !self::existsSkinContents($action) ) - { - if (!$manager->checkTicket()) - { - self::error(_ERROR_BADTICKET); - } - } - - /* 3. parse according to the action */ - if ( !method_exists('Admin', $methodName) && !in_array(self::$action, $allowActions) && self::existsSkinContents($action) ) - { - /* TODO: what is this? - self::action_parseSpecialskin(); - */ - } - elseif ( method_exists('Admin', $methodName) ) - { - call_user_func(array(__CLASS__, $methodName)); - } - else if ( self::existsSkinContents('adminerrorpage') ) - { - self::error(_BADACTION . ENTITY::hsc($action)); - } - elseif ( $id != $CONF['DefaultAdminSkin'] ) - { - self::$skin = new Skin($CONF['DefaultAdminSkin']); - if ( self::$skin && self::existsSkinContents('adminerrorpage') ) - { - self::error(_BADACTION . ENTITY::hsc($action)); - } - } - else - { - self::error(_BADACTION . ENTITY::hsc($action)); - } - exit; - } - - /** - * Action::existsSkinContents() - * Check skin contents - * - * @param string $action action type - * @return boolean - */ - static private function existsSkinContents($action) - { - $in_array = in_array($action, self::$skinless_actions); - - if ( $in_array ) - { - return $in_array; - } - else - { - $query = "SELECT scontent as result FROM %s WHERE sdesc=%d AND stype='%s';"; - /* TODO: skinid should be a default */ - if ( !is_object(self::$skin) ) - { - global $CONF; - return quickQuery(sprintf($query, sql_table('skin'), $CONF['DefaultAdminSkin'], sql_real_escape_string($action))); - } - else - { - return quickQuery(sprintf($query, sql_table('skin'), self::$skin->getID(), sql_real_escape_string($action))); - } - } - return; - } - - /** - * Action::specialActionsAllow() - * Check exists specialskinparts - * - * @param string $action action type - * @return boolean - */ - static private function specialActionsAllow($action) - { - $query = "SELECT sdesc as result FROM %s WHERE sdesc = %d AND stype = '%s';"; - $query = sprintf($query, sql_table('skin'), (integer) self::$skin->id, sql_real_escape_string($action)); - return quickQuery($query); - } - - /** - * Action::action_showlogin() - * - * @param void - * @return void - */ - static private function action_showlogin() - { - global $error; - self::action_login($error); - return; - } - - /** - * Action::action_login() - * - * @param string $msg message for pageheader - * @param integer $passvars ??? - */ - static private function action_login($msg = '', $passvars = 1) - { - global $member; - - // skip to overview when allowed - if ( $member->isLoggedIn() && $member->canLogin() ) - { - self::action_overview(); - exit; - } - - /* TODO: needless variable??? */ - self::$passvar = $passvars; - if ( $msg ) - { - self::$headMess = $msg; - } - - self::pagehead(); - self::$skin->parse('showlogin'); - self::pagefoot(); - } - - /** - * Action::action_overview() - * provides a screen with the overview of the actions available - * - * @param string $msg message for pageheader - * @return void - */ - static private function action_overview($msg = '') - { - if ( $msg ) - { - self::$headMess = $msg; - } - - self::pagehead(); - self::$skin->parse('overview'); - self::pagefoot(); - return; - } - - /** - * Admin::action_manage() - * - * @param string $msg message for pageheader - * @retrn void - */ - static private function action_manage($msg = '') - { - global $member; - - if ( $msg ) - { - self::$headMess = $msg; - } - $member->isAdmin() or self::disallow(); - - self::pagehead(); - self::$skin->parse('manage'); - self::pagefoot(); - return; - } - - /** - * Action::action_itemlist() - * - * @param integer id for weblod - * @return void - */ - static private function action_itemlist($blogid = '') - { - global $member, $manager, $CONF; - - if ( $blogid == '' ) - { - $blogid = intRequestVar('blogid'); - } - - $member->teamRights($blogid) or $member->isAdmin() or self::disallow(); - - self::pagehead(); - self::$skin->parse('itemlist'); - self::pagefoot(); - return; - } - - /** - * Action::action_batchitem() - * - * @param void - * @return void - */ - static private function action_batchitem() - { - global $member, $manager; - - $member->isLoggedIn() or self::disallow(); - - $selected = requestIntArray('batch'); - $action = requestVar('batchaction'); - - if ( !is_array($selected) || sizeof($selected) == 0 ) - { - self::error(_BATCH_NOSELECTION); - } - - // On move: when no destination blog/category chosen, show choice now - $destCatid = intRequestVar('destcatid'); - if ( ($action == 'move') && (!$manager->existsCategory($destCatid)) ) - { - self::batchMoveSelectDestination('item', $selected); - } - - // On delete: check if confirmation has been given - if ( ($action == 'delete') && (requestVar('confirmation') != 'yes') ) - { - self::batchAskDeleteConfirmation('item', $selected); - } - - self::pagehead(); - self::$skin->parse('batchitem'); - self::pagefoot(); - return; - } - - /** - * Action::action_batchcomment() - * - * @param void - * @return void - */ - static private function action_batchcomment() - { - global $member; - - $member->isLoggedIn() or self::disallow(); - - $selected = requestIntArray('batch'); - $action = requestVar('batchaction'); - - // Show error when no items were selected - if ( !is_array($selected) || sizeof($selected) == 0 ) - { - self::error(_BATCH_NOSELECTION); - } - - // On delete: check if confirmation has been given - if ( ($action == 'delete') && (requestVar('confirmation') != 'yes') ) - { - self::batchAskDeleteConfirmation('comment',$selected); - } - - self::pagehead(); - self::$skin->parse('batchcomment'); - self::pagefoot(); - return; - } - - /** - * Admin::setAdminAction() - * - * @param string $action - * @return void - */ - static public function setAdminAction($action) - { - self::$action = $action; - return; - } - - /** - * Admin::action_batchmember() - * - * @param void - * @return void - */ - static private function action_batchmember() - { - global $member; - - ($member->isLoggedIn() && $member->isAdmin()) or self::disallow(); - - $selected = requestIntArray('batch'); - $action = requestVar('batchaction'); - - // Show error when no members selected - if ( !is_array($selected) || sizeof($selected) == 0 ) - { - self::error(_BATCH_NOSELECTION); - } - - // On delete: check if confirmation has been given - if ( ($action == 'delete') && (requestVar('confirmation') != 'yes') ) - { - self::batchAskDeleteConfirmation('member',$selected); - } - - self::pagehead(); - self::$skin->parse('batchmember'); - self::pagefoot(); - return; - } - - /** - * Admin::action_batchteam() - * - * @param void - * @return void - */ - static private function action_batchteam() - { - global $member; - - $blogid = intRequestVar('blogid'); - - ($member->isLoggedIn() && $member->blogAdminRights($blogid)) or self::disallow(); - - $selected = requestIntArray('batch'); - $action = requestVar('batchaction'); - - if ( !is_array($selected) || sizeof($selected) == 0 ) - { - self::error(_BATCH_NOSELECTION); - } - - // On delete: check if confirmation has been given - if ( ($action == 'delete') && (requestVar('confirmation') != 'yes') ) - { - self::batchAskDeleteConfirmation('team',$selected); - } - - self::pagehead(); - self::$skin->parse('batchteam'); - self::pagefoot(); - return; - } - - /** - * Admin::action_batchcategory() - * - * @param void - * @return void - */ - static private function action_batchcategory() - { - global $member, $manager; - - $member->isLoggedIn() or self::disallow(); - - $selected = requestIntArray('batch'); - $action = requestVar('batchaction'); - - if ( !is_array($selected) || sizeof($selected) == 0 ) - { - self::error(_BATCH_NOSELECTION); - } - - // On move: when no destination blog chosen, show choice now - $destBlogId = intRequestVar('destblogid'); - if ( ($action == 'move') && (!$manager->existsBlogID($destBlogId)) ) - { - self::batchMoveCategorySelectDestination('category', $selected); - } - - // On delete: check if confirmation has been given - if ( ($action == 'delete') && (requestVar('confirmation') != 'yes') ) - { - self::batchAskDeleteConfirmation('category', $selected); - } - - self::pagehead(); - self::$skin->parse('batchcategory'); - self::pagefoot(); - return; - } - - /** - * Admin::batchMoveSelectDestination() - * - * @param string $type type of batch action - * @param integer $ids needless??? - * @return void - * - * TODO: remove needless argument - */ - static private function batchMoveSelectDestination($type, $ids) - { - $_POST['batchmove'] = $type; - self::pagehead(); - self::$skin->parse('batchmove'); - self::pagefoot(); - return; - } - - /** - * Admin::batchMoveCategorySelectDestination() - * - * @param string $type type of batch action - * @param integer $ids needless??? - * @return void - * - * TODO: remove needless argument - */ - static private function batchMoveCategorySelectDestination($type, $ids) - { - $_POST['batchmove'] = $type; - global $manager; - self::pagehead(); - self::$skin->parse('batchmovecat'); - self::pagefoot(); - return; - } - - /** - * Admin::batchAskDeleteConfirmation() - * - * @param string $type type of batch action - * @param integer $ids needless??? - * @return void - * - * TODO: remove needless argument - */ - static private function batchAskDeleteConfirmation($type, $ids) - { - self::pagehead(); - self::$skin->parse('batchdelete'); - self::pagefoot(); - return; - } - - /** - * Admin::selectBlogCategory() - * Inserts a HTML select element with choices for all categories to which the current - * member has access - * - * @see function selectBlog - * @param string $name name of weblod - * @param integer $selected - * @param integer $tabindex - * @param integer $showNewCat - * @param integer $iForcedBlogInclude ID for weblog always included - * @return void - * - * NOTE: callback from AdminAction - */ - static public function selectBlogCategory($name, $selected = 0, $tabindex = 0, $showNewCat = 0, $iForcedBlogInclude = -1) - { - Admin::selectBlog($name, 'category', $selected, $tabindex, $showNewCat, $iForcedBlogInclude); - return; - } - - /** - * Admin::selectBlog() - * Inserts a HTML select element with choices for all blogs to which the user has access - * mode = 'blog' => shows blognames and values are blogids - * mode = 'category' => show category names and values are catids - * - * @param string $name name of weblod - * @param string $mode - * @param integer $selected - * @param integer $tabindex - * @param integer $showNewCat - * @param integer $iForcedBlogInclude ID for weblog always included - * @param $iForcedBlogInclude - * ID of a blog that always needs to be included, without checking if the - * member is on the blog team (-1 = none) - * @return void - */ - static private function selectBlog($name, $mode='blog', $selected = 0, $tabindex = 0, $showNewCat = 0, $iForcedBlogInclude = -1) - { - global $member, $CONF; - - // 0. get IDs of blogs to which member can post items (+ forced blog) - $aBlogIds = array(); - if ( $iForcedBlogInclude != -1 ) - { - $aBlogIds[] = intval($iForcedBlogInclude); - } - - if ( $member->isAdmin() && array_key_exists('ShowAllBlogs', $CONF) && $CONF['ShowAllBlogs'] ) - { - $query = "SELECT bnumber FROM %s ORDER BY bname;"; - $query = sprintf($query, sql_table('blog')); - } - else - { - $query = "SELECT bnumber FROM %s, %s WHERE tblog=bnumber AND tmember=%d;"; - $query = sprintf($query, sql_table('blog'), sql_table('team'), (integer) $member->getID()); - } - - $rblogids = sql_query($query); - while ($o = sql_fetch_object($rblogids)) - { - if ( $o->bnumber != $iForcedBlogInclude ) - { - $aBlogIds[] = intval($o->bnumber); - } - } - - if ( count($aBlogIds) == 0 ) - { - return; - } - - /* TODO: we should consider to use the other way instead of this */ - $_REQUEST['selectData'] = array( - 'name' => $name, - 'tabindex' => $tabindex, - 'mode' => $mode, - 'selected' => $selected, - 'showNewCat' => $showNewCat, - 'aBlogIds' => $aBlogIds, - ); - self::$skin->parse('blogselectbox'); - return; - } - - /** - * Admin::action_browseownitems() - * - * @param void - * @return void - */ - static private function action_browseownitems() - { - global $member, $manager, $CONF; - - self::pagehead(); - self::$skin->parse('browseownitems'); - self::pagefoot(); - return; - } - - /** - * Admin::action_itemcommentlist() - * Show all the comments for a given item - * - * @param integer $itemid ID for item - * @return void - */ - static private function action_itemcommentlist($itemid = '') - { - global $member, $manager, $CONF; - - if ( $itemid == '' ) - { - $itemid = intRequestVar('itemid'); - } - - /* TODO: we consider to use the other way insterad of this */ - $_REQUEST['itemid'] = $itemid; - $_REQUEST['blogid'] = getBlogIdFromItemId($itemid); - - // only allow if user is allowed to alter item - $member->canAlterItem($itemid) or self::disallow(); - - $blogid = getBlogIdFromItemId($itemid); - - self::pagehead(); - self::$skin->parse('itemcommentlist'); - self::pagefoot(); - return; - } - - /** - * Admin::action_browseowncomments() - * Browse own comments - * - * @param void - * @return void - */ - static private function action_browseowncomments() - { - self::pagehead(); - self::$skin->parse('browseowncomments'); - self::pagefoot(); - return; - } - - /** - * Admin::action_blogcommentlist() - * Browse all comments for a weblog - * - * @param integer $blogid ID for weblog - * @return void - */ - static private function action_blogcommentlist($blogid = '') - { - global $member, $manager, $CONF; - - if ( $blogid == '' ) - { - $blogid = intRequestVar('blogid'); - } - else - { - $blogid = intval($blogid); - } - - $member->teamRights($blogid) or $member->isAdmin() or self::disallow(); - - /* TODO: we consider to use the other way insterad of this */ - $_REQUEST['blogid'] = $blogid; - - self::pagehead(); - self::$skin->parse('blogcommentlist'); - self::pagefoot(); - return; - } - - /** - * Admin::action_createitem() - * Provide a page to item a new item to the given blog - * - * @param void - * @return void - */ - static private function action_createitem() - { - global $member, $manager; - - $blogid = intRequestVar('blogid'); - - // check if allowed - $member->teamRights($blogid) or self::disallow(); - - $memberid = $member->getID(); - - $blog =& $manager->getBlog($blogid); - - self::pagehead(); - self::$skin->parse('createitem'); - self::pagefoot(); - return; - } - - /** - * Admin::action_itemedit() - * - * @param void - * @return void - */ - static private function action_itemedit() - { - global $member, $manager; - - $itemid = intRequestVar('itemid'); - - // only allow if user is allowed to alter item - $member->canAlterItem($itemid) or self::disallow(); - - $itemid = intRequestVar('itemid'); - $blogid = getBlogIDFromItemID($itemid); - $item =& $manager->getItem($itemid, 1, 1); - $manager->notify( - 'PrepareItemForEdit', - array( - 'item' => &$item - ) - ); - - self::pagehead(); - self::$skin->parse('itemedit'); - self::pagefoot(); - return; - } - - /** - * Admin::action_itemupdate() - * - * @param void - * @return void - */ - static private function action_itemupdate() - { - global $member, $manager, $CONF; - - $itemid = intRequestVar('itemid'); - $catid = postVar('catid'); - - // only allow if user is allowed to alter item - $member->canUpdateItem($itemid, $catid) or self::disallow(); - - $actiontype = postVar('actiontype'); - - // delete actions are handled by itemdelete (which has confirmation) - if ( $actiontype == 'delete' ) - { - self::action_itemdelete(); - return; - } - - $body = postVar('body'); - $title = postVar('title'); - $more = postVar('more'); - $closed = intPostVar('closed'); - $draftid = intPostVar('draftid'); - - // default action = add now - if ( !$actiontype ) - { - $actiontype='addnow'; - } - - // create new category if needed - if ( i18n::strpos($catid,'newcat') === 0 ) - { - // get blogid - list($blogid) = sscanf($catid,"newcat-%d"); - - // create - $blog =& $manager->getBlog($blogid); - $catid = $blog->createNewCategory(); - - // show error when sth goes wrong - if ( !$catid ) - { - self::doError(_ERROR_CATCREATEFAIL); - } - } - - /* - set some variables based on actiontype - - actiontypes: - draft items -> addnow, addfuture, adddraft, delete - non-draft items -> edit, changedate, delete - - variables set: - $timestamp: set to a nonzero value for future dates or date changes - $wasdraft: set to 1 when the item used to be a draft item - $publish: set to 1 when the edited item is not a draft - */ - $blogid = getBlogIDFromItemID($itemid); - $blog =& $manager->getBlog($blogid); - - $wasdrafts = array('adddraft', 'addfuture', 'addnow'); - $wasdraft = in_array($actiontype, $wasdrafts) ? 1 : 0; - $publish = ($actiontype != 'adddraft' && $actiontype != 'backtodrafts') ? 1 : 0; - if ( $actiontype == 'addfuture' || $actiontype == 'changedate' ) - { - $timestamp = mktime(intPostVar('hour'), intPostVar('minutes'), 0, intPostVar('month'), intPostVar('day'), intPostVar('year')); - } - else - { - $timestamp =0; - } - - // edit the item for real - Item::update($itemid, $catid, $title, $body, $more, $closed, $wasdraft, $publish, $timestamp); - - self::updateFuturePosted($blogid); - - if ( $draftid > 0 ) - { - // delete permission is checked inside Item::delete() - Item::delete($draftid); - } - - if ( $catid != intPostVar('catid') ) - { - self::action_categoryedit( - $catid, - $blog->getID(), - $CONF['AdminURL'] . 'index.php?action=itemlist&blogid=' . getBlogIDFromItemID($itemid) - ); - } - else - { - // TODO: set start item correctly for itemlist - $item = Item::getItem($itemid, 0, 0); - $cnt = quickQuery('SELECT COUNT(*) FROM ' . sql_table('item') . ' WHERE unix_timestamp(itime) <= ' . $item['timestamp']); - $_REQUEST['start'] = $cnt + 1; - self::action_itemlist(getBlogIDFromItemID($itemid)); - } - return; - } - - /** - * Admin::action_itemdelete() - * Delete item - * - * @param Void - * @return Void - */ - static private function action_itemdelete() - { - global $member, $manager; - - $itemid = intRequestVar('itemid'); - - // only allow if user is allowed to alter item - $member->canAlterItem($itemid) or self::disallow(); - - if ( !$manager->existsItem($itemid,1,1) ) - { - self::error(_ERROR_NOSUCHITEM); - } - - self::pagehead(); - self::$skin->parse('itemdelete'); - self::pagefoot(); - return; - } - - /** - * Admin::action_itemdeleteconfirm() - * - * @param void - * @return void - */ - static private function action_itemdeleteconfirm() - { - global $member; - - $itemid = intRequestVar('itemid'); - - // only allow if user is allowed to alter item - $member->canAlterItem($itemid) or self::disallow(); - - // get blogid first - $blogid = getBlogIdFromItemId($itemid); - - // delete item (note: some checks will be performed twice) - self::deleteOneItem($itemid); - - self::action_itemlist($blogid); - return; - } - - /** - * Admin::deleteOneItem() - * Deletes one item and returns error if something goes wrong - * - * @param integer $itemid ID for item - * @return void - */ - static private function deleteOneItem($itemid) - { - global $member, $manager; - - // only allow if user is allowed to alter item (also checks if itemid exists) - if ( !$member->canAlterItem($itemid) ) - { - return _ERROR_DISALLOWED; - } - - // need to get blogid before the item is deleted - $blogid = getBlogIDFromItemId($itemid); - - $manager->loadClass('ITEM'); - Item::delete($itemid); - - // update blog's futureposted - self::updateFuturePosted($blogid); - return; - } - - /** - * Admin::updateFuturePosted() - * Update a blog's future posted flag - * - * @param integer $blogid - * @return void - */ - static private function updateFuturePosted($blogid) - { - global $manager; - - $blogid = intval($blogid); - $blog =& $manager->getBlog($blogid); - $currenttime = $blog->getCorrectTime(time()); - - $query = "SELECT * FROM %s WHERE iblog=%d AND iposted=0 AND itime>'%s'"; - $query = sprintf($query, sql_table('item'), (integer) $blogid, i18n::formatted_datetime('mysql', $currenttime)); - $result = sql_query($query); - - if ( sql_num_rows($result) > 0 ) - { - $blog->setFuturePost(); - } - else - { - $blog->clearFuturePost(); - } - return; - } - - /** - * Admin::action_itemmove() - * - * @param void - * @return void - */ - static private function action_itemmove() - { - global $member, $manager; - - $itemid = intRequestVar('itemid'); - - $member->canAlterItem($itemid) or self::disallow(); - - self::pagehead(); - self::$skin->parse('itemmove'); - self::pagefoot(); - return; - } - - /** - * Admin::action_itemmoveto() - * - * @param void - * @return void - */ - static private function action_itemmoveto() - { - global $member, $manager; - - $itemid = intRequestVar('itemid'); - $catid = requestVar('catid'); - - // create new category if needed - if ( i18n::strpos($catid,'newcat') === 0 ) - { - // get blogid - list($blogid) = sscanf($catid,'newcat-%d'); - - // create - $blog =& $manager->getBlog($blogid); - $catid = $blog->createNewCategory(); - - // show error when sth goes wrong - if ( !$catid ) - { - self::doError(_ERROR_CATCREATEFAIL); - } - } - - // only allow if user is allowed to alter item - $member->canUpdateItem($itemid, $catid) or self::disallow(); - - $old_blogid = getBlogIDFromItemId($itemid); - - Item::move($itemid, $catid); - - // set the futurePosted flag on the blog - self::updateFuturePosted(getBlogIDFromItemId($itemid)); - - // reset the futurePosted in case the item is moved from one blog to another - self::updateFuturePosted($old_blogid); - - if ( $catid != intRequestVar('catid') ) - { - self::action_categoryedit($catid, $blog->getID()); - } - else - { - self::action_itemlist(getBlogIDFromCatID($catid)); - } - return; - } - - /** - * Admin::moveOneItem() - * Moves one item to a given category (category existance should be checked by caller) - * errors are returned - * - * @param integer $itemid ID for item - * @param integer $destCatid ID for category to which the item will be moved - * @return void - */ - static private function moveOneItem($itemid, $destCatid) - { - global $member; - - // only allow if user is allowed to move item - if ( !$member->canUpdateItem($itemid, $destCatid) ) - { - return _ERROR_DISALLOWED; - } - - Item::move($itemid, $destCatid); - return; - } - - /** - * Admin::action_additem() - * Adds a item to the chosen blog - * - * @param void - * @return void - */ - static private function action_additem() - { - global $manager, $CONF; - - $manager->loadClass('ITEM'); - - $result = Item::createFromRequest(); - - if ( $result['status'] == 'error' ) - { - self::error($result['message']); - } - - $blogid = getBlogIDFromItemID($result['itemid']); - $blog =& $manager->getBlog($blogid); - $btimestamp = $blog->getCorrectTime(); - $item = $manager->getItem(intval($result['itemid']), 1, 1); - - if ( $result['status'] == 'newcategory' ) - { - $distURI = $manager->addTicketToUrl($CONF['AdminURL'] . 'index.php?action=itemList&blogid=' . intval($blogid)); - self::action_categoryedit($result['catid'], $blogid, $distURI); - } - else - { - $methodName = 'action_itemList'; - call_user_func(array(&$this, $methodName), $blogid); - } - return; - } - - /** - * Admin::action_commentedit() - * Allows to edit previously made comments - * - * @param void - * @return void - */ - static private function action_commentedit() - { - global $member, $manager; - - $commentid = intRequestVar('commentid'); - - $member->canAlterComment($commentid) or self::disallow(); - - self::pagehead(); - self::$skin->parse('commentedit'); - self::pagefoot(); - return; - } - - /** - * Admin::action_commentupdate() - * - * @param void - * @return void - */ - static private function action_commentupdate() - { - global $member, $manager; - - $commentid = intRequestVar('commentid'); - - $member->canAlterComment($commentid) or self::disallow(); - - $url = postVar('url'); - $email = postVar('email'); - $body = postVar('body'); - - // intercept words that are too long - if (preg_match('#[a-zA-Z0-9|\.,;:!\?=\/\\\\]{90,90}#', $body) != FALSE) - { - self::error(_ERROR_COMMENT_LONGWORD); - } - - // check length - if ( i18n::strlen($body) < 3 ) - { - self::error(_ERROR_COMMENT_NOCOMMENT); - } - - if ( i18n::strlen($body) > 5000 ) - { - self::error(_ERROR_COMMENT_TOOLONG); - } - - // prepare body - $body = Comment::prepareBody($body); - - // call plugins - $data = array( - 'body' => &$body - ); - $manager->notify('PreUpdateComment', $data); - - $query = "UPDATE %s SET cmail='%s', cemail = '%s', cbody= '%s' WHERE cnumber=%d;"; - $query = sprintf($query, sql_real_escape_string($url), sql_real_escape_string($url), sql_real_escape_string($url), (integer) $commentid); - sql_query($query); - - // get itemid - $query = "SELECT citem FROM %s WHERE cnumber=%d;"; - $query = sprintf($query, sql_table('comment'), (integer) $commentid); - - $res = sql_query($query); - $o = sql_fetch_object($res); - $itemid = $o->citem; - - if ( $member->canAlterItem($itemid) ) - { - self::action_itemcommentlist($itemid); - } - else - { - self::action_browseowncomments(); - } - return; - } - - /** - * Admin::action_commentdelete() - * Update comment - * - * @param void - * @return void - */ - static private function action_commentdelete() - { - global $member, $manager; - - $commentid = intRequestVar('commentid'); - $member->canAlterComment($commentid) or self::disallow(); - - self::pagehead(); - self::$skin->parse('commentdelete'); - self::pagefoot(); - return; - } - - /** - * Admin::action_commentdeleteconfirm() - * - * @param void - * @return void - */ - static private function action_commentdeleteconfirm() - { - global $member; - - $commentid = intRequestVar('commentid'); - - // get item id first - $query = "SELECT citem FROM %s WHERE cnumber=%d;"; - $query = sprintf($query, sql_table('comment'), (integer) $commentid); - - $res = sql_query($query); - $o = sql_fetch_object($res); - $itemid = $o->citem; - - $error = self::deleteOneComment($commentid); - if ( $error ) - { - self::doError($error); - } - - if ( $member->canAlterItem($itemid) ) - { - self::action_itemcommentlist($itemid); - } - else - { - self::action_browseowncomments(); - } - return; - } - - /** - * Admin::deleteOneComment() - * - * @param integer $commentid ID for comment - * @return void - */ - static private function deleteOneComment($commentid) - { - global $member, $manager; - - $commentid = (integer) $commentid; - - if ( !$member->canAlterComment($commentid) ) - { - return _ERROR_DISALLOWED; - } - - $data = array( - 'commentid' => $commentid - ); - - $manager->notify('PreDeleteComment', $data); - - // delete the comments associated with the item - $query = "DELETE FROM %s WHERE cnumber=%d;"; - $query = sprintf($query, sql_table('comment'), (integer) $commentid); - sql_query($query); - - $data = array( - 'commentid' => $commentid - ); - - $manager->notify('PostDeleteComment', $data); - - return ''; - } - - /** - * Admin::action_usermanagement() - * Usermanagement main - * - * @param void - * @return void - */ - static private function action_usermanagement() - { - global $member, $manager; - - // check if allowed - $member->isAdmin() or self::disallow(); - - self::pagehead(); - self::$skin->parse('usermanagement'); - self::pagefoot(); - return; - } - - /** - * Admin::action_memberedit() - * Edit member settings - * - * @param void - * @return void - */ - static private function action_memberedit() - { - self::action_editmembersettings(intRequestVar('memberid')); - return; - } - - /** - * Admin::action_editmembersettings() - * - * @param integer $memberid ID for member - * @return void - * - */ - static private function action_editmembersettings($memberid = '') - { - global $member, $manager, $CONF; - - if ( $memberid == '' ) - { - $memberid = $member->getID(); - } - - /* TODO: we should consider to use the other way insterad of this */ - $_REQUEST['memberid'] = $memberid; - - // check if allowed - ($member->getID() == $memberid) or $member->isAdmin() or self::disallow(); - - $extrahead = ''; - self::pagehead($extrahead); - self::$skin->parse('editmembersettings'); - self::pagefoot(); - return; - } - - /** - * Admin::action_changemembersettings() - * - * @param void - * @return void - */ - static private function action_changemembersettings() - { - global $member, $CONF, $manager; - - $memberid = intRequestVar('memberid'); - - // check if allowed - ($member->getID() == $memberid) or $member->isAdmin() or self::disallow(); - - $name = trim(strip_tags(postVar('name'))); - $realname = trim(strip_tags(postVar('realname'))); - $password = postVar('password'); - $repeatpassword = postVar('repeatpassword'); - $email = strip_tags(postVar('email')); - $url = strip_tags(postVar('url')); - $adminskin = intPostVar('adminskin'); - - // begin if: sometimes user didn't prefix the URL with http:// or https://, this cause a malformed URL. Let's fix it. - if ( !preg_match('#^https?://#', $url) ) - { - $url = 'http://' . $url; - } - - $admin = postVar('admin'); - $canlogin = postVar('canlogin'); - $notes = strip_tags(postVar('notes')); - $locale = postVar('locale'); - - $mem = Member::createFromID($memberid); - - if ( $CONF['AllowLoginEdit'] || $member->isAdmin() ) - { - if ( !isValidDisplayName($name) ) - { - self::error(_ERROR_BADNAME); - } - - if ( ($name != $mem->getDisplayName()) && Member::exists($name) ) - { - self::error(_ERROR_NICKNAMEINUSE); - } - - if ( $password != $repeatpassword ) - { - self::error(_ERROR_PASSWORDMISMATCH); - } - - if ( $password && (i18n::strlen($password) < 6) ) - { - self::error(_ERROR_PASSWORDTOOSHORT); - } - - if ( $password ) - { - $pwdvalid = true; - $pwderror = ''; - - $data = array( - 'password' => $password, - 'errormessage' => &$pwderror, - 'valid' => &$pwdvalid - ); - $manager->notify('PrePasswordSet', $data); - - if ( !$pwdvalid ) - { - self::error($pwderror); - } - } - } - - if ( !NOTIFICATION::address_validation($email) ) - { - self::error(_ERROR_BADMAILADDRESS); - } - if ( !$realname ) - { - self::error(_ERROR_REALNAMEMISSING); - } - if ( ($locale != '') && (!in_array($locale, i18n::get_available_locale_list())) ) - { - self::error(_ERROR_NOSUCHTRANSLATION); - } - - // check if there will remain at least one site member with both the logon and admin rights - // (check occurs when taking away one of these rights from such a member) - if ( (!$admin && $mem->isAdmin() && $mem->canLogin()) - || (!$canlogin && $mem->isAdmin() && $mem->canLogin()) - ) - { - $r = sql_query('SELECT * FROM '.sql_table('member').' WHERE madmin=1 and mcanlogin=1'); - if ( sql_num_rows($r) < 2 ) - { - self::error(_ERROR_ATLEASTONEADMIN); - } - } - - if ( $CONF['AllowLoginEdit'] || $member->isAdmin() ) - { - $mem->setDisplayName($name); - if ( $password ) - { - $mem->setPassword($password); - } - } - - $oldEmail = $mem->getEmail(); - - $mem->setRealName($realname); - $mem->setEmail($email); - $mem->setURL($url); - $mem->setNotes($notes); - $mem->setLocale($locale); - - // only allow super-admins to make changes to the admin status - if ( $member->isAdmin() ) - { - $mem->setAdmin($admin); - $mem->setCanLogin($canlogin); - } - - $autosave = postVar('autosave'); - $mem->setAutosave($autosave); - - $mem->write(); - - // store plugin options - $aOptions = requestArray('plugoption'); - NucleusPlugin::apply_plugin_options($aOptions); - $data = array( - 'context' => 'member', - 'memberid' => $memberid, - 'member' => &$mem - ); - $manager->notify('PostPluginOptionsUpdate', $data); - - // if email changed, generate new password - if ( $oldEmail != $mem->getEmail() ) - { - $mem->sendActivationLink('addresschange', $oldEmail); - // logout member - $mem->newCookieKey(); - - // only log out if the member being edited is the current member. - if ( $member->getID() == $memberid ) - { - $member->logout(); - } - self::action_login(_MSG_ACTIVATION_SENT, 0); - return; - } - - if ( ($mem->getID() == $member->getID()) - && ($mem->getDisplayName() != $member->getDisplayName()) ) - { - $mem->newCookieKey(); - $member->logout(); - self::action_login(_MSG_LOGINAGAIN, 0); - } - else - { - self::action_overview(_MSG_SETTINGSCHANGED); - } - return; - } - - /** - * Admin::action_memberadd() - * - * @param void - * @return void - * - */ - static private function action_memberadd() - { - global $member, $manager; - - // check if allowed - $member->isAdmin() or self::disallow(); - - if ( postVar('password') != postVar('repeatpassword') ) - { - self::error(_ERROR_PASSWORDMISMATCH); - } - - if ( i18n::strlen(postVar('password')) < 6 ) - { - self::error(_ERROR_PASSWORDTOOSHORT); - } - - $res = Member::create( - postVar('name'), - postVar('realname'), - postVar('password'), - postVar('email'), - postVar('url'), - postVar('admin'), - postVar('canlogin'), - postVar('notes') - ); - - if ( $res != 1 ) - { - self::error($res); - } - - // fire PostRegister event - $newmem = new Member(); - $newmem->readFromName(postVar('name')); - $data = array( - 'member' => &$newmem - ); - $manager->notify('PostRegister', $data); - - self::action_usermanagement(); - return; - } - - /** - * Admin::action_activate() - * Account activation - * - * @param void - * @return void - */ - static private function action_activate() - { - $key = getVar('key'); - self::showActivationPage($key); - return; - } - - /** - * Admin::showActivationPage() - * - * @param void - * @return void - */ - static private function showActivationPage($key, $message = '') - { - global $manager; - - // clean up old activation keys - Member::cleanupActivationTable(); - - // get activation info - $info = Member::getActivationInfo($key); - - if ( !$info ) - { - self::error(_ERROR_ACTIVATE); - } - - $mem = Member::createFromId($info->vmember); - - if ( !$mem ) - { - self::error(_ERROR_ACTIVATE); - } - - /* TODO: we should consider to use the other way insterad of this */ - $_POST['ackey'] = $key; - $_POST['bNeedsPasswordChange'] = TRUE; - - self::$headMess = $message; - self::pagehead(); - self::$skin->parse('activate'); - self::pagefoot(); - return; - } - - /** - * Admin::action_activatesetpwd() - * Account activation - set password part - * - * @param void - * @return void - */ - static private function action_activatesetpwd() - { - global $manager; - $key = postVar('key'); - - // clean up old activation keys - Member::cleanupActivationTable(); - - // get activation info - $info = Member::getActivationInfo($key); - - if ( !$info || ($info->type == 'addresschange') ) - { - return self::showActivationPage($key, _ERROR_ACTIVATE); - } - - $mem = Member::createFromId($info->vmember); - - if ( !$mem ) - { - return self::showActivationPage($key, _ERROR_ACTIVATE); - } - - $password = postVar('password'); - $repeatpassword = postVar('repeatpassword'); - - if ( $password != $repeatpassword ) - { - return self::showActivationPage($key, _ERROR_PASSWORDMISMATCH); - } - - if ( $password && (i18n::strlen($password) < 6) ) - { - return self::showActivationPage($key, _ERROR_PASSWORDTOOSHORT); - } - - if ( $password ) - { - $pwdvalid = true; - $pwderror = ''; - - $data = array( - 'password' => $password, - 'errormessage' => &$pwderror, - 'valid' => &$pwdvalid - ); - $manager->notify('PrePasswordSet', $data); - if ( !$pwdvalid ) - { - return self::showActivationPage($key,$pwderror); - } - } - - $error = ''; - - $data = array( - 'type' => 'activation', - 'member' => $mem, - 'error' => &$error - ); - $manager->notify('ValidateForm', $data); - if ( $error != '' ) - { - return self::showActivationPage($key, $error); - } - - // set password - $mem->setPassword($password); - $mem->write(); - - // do the activation - Member::activate($key); - - self::pagehead(); - self::$skin->parse('activatesetpwd'); - self::pagefoot(); - return; - } - - /** - * Admin::action_manageteam() - * Manage team - * - * @param void - * @return void - */ - static private function action_manageteam() - { - global $member, $manager; - - $blogid = intRequestVar('blogid'); - - // check if allowed - $member->blogAdminRights($blogid) or self::disallow(); - - self::pagehead(); - self::$skin->parse('manageteam'); - self::pagefoot(); - return; - } - - /** - * Admin::action_teamaddmember() - * Add member to team - * - * @param void - * @return void - */ - static private function action_teamaddmember() - { - global $member, $manager; - - $memberid = intPostVar('memberid'); - $blogid = intPostVar('blogid'); - $admin = intPostVar('admin'); - - // check if allowed - $member->blogAdminRights($blogid) or self::disallow(); - - $blog =& $manager->getBlog($blogid); - if ( !$blog->addTeamMember($memberid, $admin) ) - { - self::error(_ERROR_ALREADYONTEAM); - } - - self::action_manageteam(); - return; - } - - /** - * Admin::action_teamdelete() - * - * @param void - * @return void - */ - static private function action_teamdelete() - { - global $member, $manager; - - $memberid = intRequestVar('memberid'); - $blogid = intRequestVar('blogid'); - - // check if allowed - $member->blogAdminRights($blogid) or self::disallow(); - - $teammem = Member::createFromID($memberid); - $blog =& $manager->getBlog($blogid); - - self::pagehead(); - self::$skin->parse('teamdelete'); - self::pagefoot(); - return; - } - - /** - * Admin::action_teamdeleteconfirm() - * - * @param void - * @return void - */ - static private function action_teamdeleteconfirm() - { - global $member; - - $memberid = intRequestVar('memberid'); - $blogid = intRequestVar('blogid'); - - $error = self::deleteOneTeamMember($blogid, $memberid); - if ( $error ) - { - self::error($error); - } - self::action_manageteam(); - return; - } - - /** - * Admin::deleteOneTeamMember() - * - * @param void - * @return void - */ - static private function deleteOneTeamMember($blogid, $memberid) - { - global $member, $manager; - - $blogid = intval($blogid); - $memberid = intval($memberid); - - // check if allowed - if ( !$member->blogAdminRights($blogid) ) - { - return _ERROR_DISALLOWED; - } - - // check if: - there remains at least one blog admin - // - (there remains at least one team member) - $tmem = Member::createFromID($memberid); - - - $data = array( - 'member' => &$tmem, - 'blogid' => $blogid - ); $manager->notify('PreDeleteTeamMember', $data); - - if ( $tmem->isBlogAdmin($blogid) ) - { - /* TODO: why we did double check? */ - // check if there are more blog members left and at least one admin - // (check for at least two admins before deletion) - $query = "SELECT * FROM %s WHERE tblog=%d and tadmin=1;"; - $query = sprintf($query, sql_table('team'), (integer) $blogid); - $r = sql_query($query); - if ( sql_num_rows($r) < 2 ) - { - return _ERROR_ATLEASTONEBLOGADMIN; - } - } - - $query = "DELETE FROM %s WHERE tblog=%d AND tmember=%d;"; - $query = sprintf($query, sql_table('team'), (integer) $blogid, (integer) $memberid); - sql_query($query); - - $data = array( - 'member' => &$tmem, - 'blogid' => $blogid - ); - $manager->notify('PostDeleteTeamMember', $data); - - return ''; - } - - /** - * Admin::action_teamchangeadmin() - * - * @param void - * @return void - */ - static private function action_teamchangeadmin() - { - global $member; - - $blogid = intRequestVar('blogid'); - $memberid = intRequestVar('memberid'); - - // check if allowed - $member->blogAdminRights($blogid) or self::disallow(); - - $mem = Member::createFromID($memberid); - - // don't allow when there is only one admin at this moment - if ( $mem->isBlogAdmin($blogid) ) - { - $query = "SELECT * FROM %s WHERE tblog=%d AND tadmin=1;"; - $query = sprintf($query, sql_table('team'), (integer) $blogid); - $r = sql_query($query); - if ( sql_num_rows($r) == 1 ) - { - self::error(_ERROR_ATLEASTONEBLOGADMIN); - } - } - - if ( $mem->isBlogAdmin($blogid) ) - { - $newval = 0; - } - else - { - $newval = 1; - } - - $query = "UPDATE %s SET tadmin=%d WHERE tblog=%d and tmember=%d;"; - $query = sprintf($query, (integer) $blogid, (integer) $newval, (integer) $blogid, (integer) $memberid); - sql_query($query); - - // only show manageteam if member did not change its own admin privileges - if ( $member->isBlogAdmin($blogid) ) - { - self::action_manageteam(); - } - else - { - self::action_overview(_MSG_ADMINCHANGED); - } - return; - } - - /** - * Admin::action_blogsettings() - * - * @param void - * @return void - */ - static private function action_blogsettings() - { - global $member, $manager; - - $blogid = intRequestVar('blogid'); - - // check if allowed - $member->blogAdminRights($blogid) or self::disallow(); - - $blog =& $manager->getBlog($blogid); - - $extrahead = ''; - self::pagehead($extrahead); - self::$skin->parse('blogsettings'); - self::pagefoot(); - return; - } - - /** - * Admin::action_categorynew() - * - * @param void - * @return void - */ - static private function action_categorynew() - { - global $member, $manager; - - $blogid = intRequestVar('blogid'); - - $member->blogAdminRights($blogid) or self::disallow(); - - $cname = postVar('cname'); - $cdesc = postVar('cdesc'); - - if ( !isValidCategoryName($cname) ) - { - self::error(_ERROR_BADCATEGORYNAME); - } - - $query = "SELECT * FROM %s WHERE cname='%s' AND cblog=%d;"; - $query = sprintf($query, sql_table('category'), sql_real_escape_string($cname), (integer) $blogid); - $res = sql_query($query); - if ( sql_num_rows($res) > 0 ) - { - self::error(_ERROR_DUPCATEGORYNAME); - } - - $blog =& $manager->getBlog($blogid); - $newCatID = $blog->createNewCategory($cname, $cdesc); - - self::action_blogsettings(); - return; - } - - /** - * Admin::action_categoryedit() - * - * @param void - * @return void - */ - static private function action_categoryedit($catid = '', $blogid = '', $desturl = '') - { - global $member, $manager; - - if ( $blogid == '' ) - { - $blogid = intGetVar('blogid'); - } - else - { - $blogid = intval($blogid); - } - if ( $catid == '' ) - { - $catid = intGetVar('catid'); - } - else - { - $catid = intval($catid); - } - - /* TODO: we should consider to use the other way insterad of this */ - $_REQUEST['blogid'] = $blogid; - $_REQUEST['catid'] = $catid; - $_REQUEST['desturl'] = $desturl; - $member->blogAdminRights($blogid) or self::disallow(); - - $extrahead = ''; - self::pagehead($extrahead); - self::$skin->parse('categoryedit'); - self::pagefoot(); - return; - } - - /** - * Admin::action_categoryupdate() - * - * @param void - * @return void - */ - static private function action_categoryupdate() - { - global $member, $manager; - - $blogid = intPostVar('blogid'); - $catid = intPostVar('catid'); - $cname = postVar('cname'); - $cdesc = postVar('cdesc'); - $desturl = postVar('desturl'); - - $member->blogAdminRights($blogid) or self::disallow(); - - if ( !isValidCategoryName($cname) ) - { - self::error(_ERROR_BADCATEGORYNAME); - } - - $query = "SELECT * FROM %s WHERE cname='%s' AND cblog=%d AND not(catid=%d);"; - $query = sprintf($query, sql_table('category'), sql_real_escape_string($cname), (integer) $blogid, (integer) $catid); - $res = sql_query($query); - if ( sql_num_rows($res) > 0 ) - { - self::error(_ERROR_DUPCATEGORYNAME); - } - - $query = "UPDATE %s SET cname='%s', cdesc='%s' WHERE catid=%d;"; - $query = sprintf($query, sql_table('category'), sql_real_escape_string($cname), sql_real_escape_string($cdesc), (integer) $catid); - sql_query($query); - - // store plugin options - $aOptions = requestArray('plugoption'); - NucleusPlugin::apply_plugin_options($aOptions); - $data = array( - 'context' => 'category', - 'catid' => $catid - ); - $manager->notify('PostPluginOptionsUpdate', $data); - - if ( $desturl ) - { - redirect($desturl); - exit; - } - else - { - self::action_blogsettings(); - } - return; - } - - /** - * Admin::action_categorydelete() - * - * @param void - * @return void - */ - static private function action_categorydelete() - { - global $member, $manager; - - $blogid = intRequestVar('blogid'); - $catid = intRequestVar('catid'); - - $member->blogAdminRights($blogid) or self::disallow(); - - $blog =& $manager->getBlog($blogid); - - // check if the category is valid - if ( !$blog->isValidCategory($catid) ) - { - self::error(_ERROR_NOSUCHCATEGORY); - } - - // don't allow deletion of default category - if ( $blog->getDefaultCategory() == $catid ) - { - self::error(_ERROR_DELETEDEFCATEGORY); - } - - // check if catid is the only category left for blogid - $query = "SELECT catid FROM %s WHERE cblog=%d;"; - $query = sprintf($query, sql_table('category'), $blogid); - $res = sql_query($query); - if ( sql_num_rows($res) == 1 ) - { - self::error(_ERROR_DELETELASTCATEGORY); - } - - self::pagehead(); - self::$skin->parse('categorydelete'); - self::pagefoot(); - return; - } - - /** - * Admin::action_categorydeleteconfirm() - * - * @param void - * @return void - */ - static private function action_categorydeleteconfirm() - { - global $member, $manager; - - $blogid = intRequestVar('blogid'); - $catid = intRequestVar('catid'); - - $member->blogAdminRights($blogid) or self::disallow(); - - $error = self::deleteOneCategory($catid); - if ( $error ) - { - self::error($error); - } - - self::action_blogsettings(); - return; - } - - /** - * Admin::deleteOneCategory() - * Delete a category by its id - * - * @param String $catid category id for deleting - * @return Void - */ - static private function deleteOneCategory($catid) - { - global $manager, $member; - - $catid = intval($catid); - $blogid = getBlogIDFromCatID($catid); - - if ( !$member->blogAdminRights($blogid) ) - { - return ERROR_DISALLOWED; - } - - // get blog - $blog =& $manager->getBlog($blogid); - - // check if the category is valid - if ( !$blog || !$blog->isValidCategory($catid) ) - { - return _ERROR_NOSUCHCATEGORY; - } - - $destcatid = $blog->getDefaultCategory(); - - // don't allow deletion of default category - if ( $blog->getDefaultCategory() == $catid ) - { - return _ERROR_DELETEDEFCATEGORY; - } - - // check if catid is the only category left for blogid - $query = "SELECT catid FROM %s WHERE cblog=%d;"; - $query = sprintf(sql_table('category'), (integer) $blogid); - - $res = sql_query($query); - if ( sql_num_rows($res) == 1 ) - { - return _ERROR_DELETELASTCATEGORY; - } - - $data = array('catid' => $catid); - $manager->notify('PreDeleteCategory', $data); - - // change category for all items to the default category - $query = "UPDATE %s SET icat=%d WHERE icat=%d;"; - $query =sprintf($query, sql_table('item'), (integer) $destcatid, (integer) $catid); - sql_query($query); - - // delete all associated plugin options - NucleusPlugin::delete_option_values('category', $catid); - - // delete category - $query = "DELETE FROM %s WHERE catid=%d;"; - $query = sprintf($query, (integer) $catid); - sql_query($query); - - $data = array('catid' => $catid); - $manager->notify('PostDeleteCategory', $data); - return; - } - - /** - * Admin::action_blogsettingsupdate - * Updating blog settings - * - * @param Void - * @return Void - */ - static private function action_blogsettingsupdate() - { - global $member, $manager; - - $blogid = intRequestVar('blogid'); - - $member->blogAdminRights($blogid) or self::disallow(); - - $blog =& $manager->getBlog($blogid); - - $notify_address = trim(postVar('notify')); - $shortname = trim(postVar('shortname')); - $updatefile = trim(postVar('update')); - - $notifyComment = intPostVar('notifyComment'); - $notifyVote = intPostVar('notifyVote'); - $notifyNewItem = intPostVar('notifyNewItem'); - - if ( $notifyComment == 0 ) - { - $notifyComment = 1; - } - if ( $notifyVote == 0 ) - { - $notifyVote = 1; - } - if ( $notifyNewItem == 0 ) - { - $notifyNewItem = 1; - } - $notifyType = $notifyComment * $notifyVote * $notifyNewItem; - - if ( $notify_address && !NOTIFICATION::address_validation($notify_address) ) - { - self::error(_ERROR_BADNOTIFY); - } - - if ( !isValidShortName($shortname) ) - { - self::error(_ERROR_BADSHORTBLOGNAME); - } - - if ( ($blog->getShortName() != $shortname) && $manager->existsBlog($shortname) ) - { - self::error(_ERROR_DUPSHORTBLOGNAME); - } - // check if update file is writable - if ( $updatefile && !is_writeable($updatefile) ) - { - self::error(_ERROR_UPDATEFILE); - } - - $blog->setName(trim(postVar('name'))); - $blog->setShortName($shortname); - $blog->setNotifyAddress($notify_address); - $blog->setNotifyType($notifyType); - $blog->setMaxComments(postVar('maxcomments')); - $blog->setCommentsEnabled(postVar('comments')); - $blog->setTimeOffset(postVar('timeoffset')); - $blog->setUpdateFile($updatefile); - $blog->setURL(trim(postVar('url'))); - $blog->setDefaultSkin(intPostVar('defskin')); - $blog->setDescription(trim(postVar('desc'))); - $blog->setPublic(postVar('public')); - $blog->setConvertBreaks(intPostVar('convertbreaks')); - $blog->setAllowPastPosting(intPostVar('allowpastposting')); - $blog->setDefaultCategory(intPostVar('defcat')); - $blog->setSearchable(intPostVar('searchable')); - $blog->setEmailRequired(intPostVar('reqemail')); - $blog->writeSettings(); - - // store plugin options - $aOptions = requestArray('plugoption'); - NucleusPlugin::apply_plugin_options($aOptions); - - $data = array( - 'context' => 'blog', - 'blogid' => $blogid, - 'blog' => &$blog - ); - $manager->notify('PostPluginOptionsUpdate', $data); - - self::action_overview(_MSG_SETTINGSCHANGED); - return; - } - - /** - * Admin::action_deleteblog() - * - * @param void - * @return void - */ - static private function action_deleteblog() - { - global $member, $CONF, $manager; - - $blogid = intRequestVar('blogid'); - - $member->blogAdminRights($blogid) or self::disallow(); - - // check if blog is default blog - if ( $CONF['DefaultBlog'] == $blogid ) - { - self::error(_ERROR_DELDEFBLOG); - } - - $blog =& $manager->getBlog($blogid); - - self::pagehead(); - self::$skin->parse('deleteblog'); - self::pagefoot(); - return; - } - - /** - * Admin::action_deleteblogconfirm() - * Delete Blog - * - * @param Void - * @return Void - */ - static private function action_deleteblogconfirm() - { - global $member, $CONF, $manager; - - $blogid = intRequestVar('blogid'); - - $data = array('blogid' => $blogid); - $manager->notify('PreDeleteBlog', $data); - - $member->blogAdminRights($blogid) or self::disallow(); - - // check if blog is default blog - if ( $CONF['DefaultBlog'] == $blogid ) - { - self::error(_ERROR_DELDEFBLOG); - } - - // delete all comments - $query = 'DELETE FROM ' . sql_table('comment') . ' WHERE cblog='.$blogid; - sql_query($query); - - // delete all items - $query = 'DELETE FROM ' . sql_table('item') . ' WHERE iblog=' . $blogid; - sql_query($query); - - // delete all team members - $query = 'DELETE FROM ' . sql_table('team') . ' WHERE tblog=' . $blogid; - sql_query($query); - - // delete all bans - $query = 'DELETE FROM ' . sql_table('ban') . ' WHERE blogid=' . $blogid; - sql_query($query); - - // delete all categories - $query = 'DELETE FROM ' . sql_table('category') . ' WHERE cblog=' . $blogid; - sql_query($query); - - // delete all associated plugin options - NucleusPlugin::delete_option_values('blog', $blogid); - - // delete the blog itself - $query = 'DELETE FROM ' . sql_table('blog') . ' WHERE bnumber=' . $blogid; - sql_query($query); - - $data = array('blogid' => $blogid); - $manager->notify('PostDeleteBlog', $data); - - self::action_overview(_DELETED_BLOG); - return; - } - - /** - * Admin::action_memberdelete() - * - * @param void - * @return void - */ - static private function action_memberdelete() - { - global $member, $manager; - - $memberid = intRequestVar('memberid'); - - ($member->getID() == $memberid) or $member->isAdmin() or self::disallow(); - - $mem = Member::createFromID($memberid); - - self::pagehead(); - self::$skin->parse('memberdelete'); - self::pagefoot(); - return; - } - - /** - * Admin::action_memberdeleteconfirm() - * - * @param void - * @return void - */ - static private function action_memberdeleteconfirm() - { - global $member; - - $memberid = intRequestVar('memberid'); - - ($member->getID() == $memberid) or $member->isAdmin() or self::disallow(); - - $error = self::deleteOneMember($memberid); - if ( $error ) - { - self::error($error); - } - - if ( $member->isAdmin() ) - { - self::action_usermanagement(); - } - else - { - self::action_overview(_DELETED_MEMBER); - } - return; - } - - /** - * Admin::deleteOneMember() - * Delete a member by id - * - * @static - * @params Integer $memberid member id - * @return String null string or error messages - */ - static private function deleteOneMember($memberid) - { - global $manager; - - $memberid = intval($memberid); - $mem = Member::createFromID($memberid); - - if ( !$mem->canBeDeleted() ) - { - return _ERROR_DELETEMEMBER; - } - - $data = array('member' => &$mem); - $manager->notify('PreDeleteMember', $data); - - /* unlink comments from memberid */ - if ( $memberid ) - { - $query = "UPDATE %s SET cmember=0, cuser='%s' WHERE cmember=%d;"; - $query = sprintf($query, sql_table('comment'), sql_real_escape_string($mem->getDisplayName()), $memberid); - sql_query($query); - } - - $query = 'DELETE FROM ' . sql_table('member') . ' WHERE mnumber=' . $memberid; - sql_query($query); - - $query = 'DELETE FROM ' . sql_table('team') . ' WHERE tmember=' . $memberid; - sql_query($query); - - $query = 'DELETE FROM ' . sql_table('activation') . ' WHERE vmember=' . $memberid; - sql_query($query); - - // delete all associated plugin options - NucleusPlugin::delete_option_values('member', $memberid); - - $data = array('member' => &$mem); - $manager->notify('PostDeleteMember', $data); - - return ''; - } - - /** - * Admin::action_createnewlog() - * - * @param void - * @return void - */ - static private function action_createnewlog() - { - global $member, $CONF, $manager; - - // Only Super-Admins can do this - $member->isAdmin() or self::disallow(); - - self::pagehead(); - self::$skin->parse('createnewlog'); - self::pagefoot(); - return; - } - - /** - * Admin::action_addnewlog() - * - * @param void - * @return void - */ - static private function action_addnewlog() - { - global $member, $manager, $CONF; - - // Only Super-Admins can do this - $member->isAdmin() or self::disallow(); - - $bname = trim(postVar('name')); - $bshortname = trim(postVar('shortname')); - $btimeoffset = postVar('timeoffset'); - $bdesc = trim(postVar('desc')); - $bdefskin = postVar('defskin'); - - if ( !isValidShortName($bshortname) ) - { - self::error(_ERROR_BADSHORTBLOGNAME); - } - - if ( $manager->existsBlog($bshortname) ) - { - self::error(_ERROR_DUPSHORTBLOGNAME); - } - - $data = array( - 'name' => &$bname, - 'shortname' => &$bshortname, - 'timeoffset' => &$btimeoffset, - 'description' => &$bdesc, - 'defaultskin' => &$bdefskin - ); - $manager->notify('PreAddBlog', $data); - - // add slashes for sql queries - $bname = sql_real_escape_string($bname); - $bshortname = sql_real_escape_string($bshortname); - $btimeoffset = sql_real_escape_string($btimeoffset); - $bdesc = sql_real_escape_string($bdesc); - $bdefskin = sql_real_escape_string($bdefskin); - - // create blog - $query = "INSERT INTO %s (bname, bshortname, bdesc, btimeoffset, bdefskin) VALUES ('%s', '%s', '%s', '%s', '%s');"; - $query = sprintf(sql_table('blog'), $bname, $bshortname, $bdesc, $btimeoffset, $bdefskin); - sql_query($query); - - $blogid = sql_insert_id(); - $blog =& $manager->getBlog($blogid); - - // create new category - $catdefname = (!defined('_EBLOGDEFAULTCATEGORY_NAME') ? 'General' : _EBLOGDEFAULTCATEGORY_NAME); - $catdefdesc = (!defined('_EBLOGDEFAULTCATEGORY_DESC') ? 'Items that do not fit in other categories' : _EBLOGDEFAULTCATEGORY_DESC); - - $query = 'INSERT INTO %s (cblog, cname, cdesc) VALUES (%d, "%s", "%s")'; - sql_query(sprintf($query, sql_table('category'), (integer) $blogid, $catdefname, $catdefdesc)); - $catid = sql_insert_id(); - - // set as default category - $blog->setDefaultCategory($catid); - $blog->writeSettings(); - - // create team member - $query = "INSERT INTO %s (tmember, tblog, tadmin) VALUES (%d, %d, 1);"; - $query = sprintf($query, sql_table('team'), (integer) $member->getID(), (integer) $blogid); - sql_query($query); - - $itemdeftitle = (defined('_EBLOG_FIRSTITEM_TITLE') ? _EBLOG_FIRSTITEM_TITLE : 'First Item'); - $itemdefbody = (defined('_EBLOG_FIRSTITEM_BODY') ? _EBLOG_FIRSTITEM_BODY : 'This is the first item in your weblog. Feel free to delete it.'); - - $blog->additem( - $blog->getDefaultCategory(), - $itemdeftitle,$itemdefbody, - '', - $blogid, - $member->getID(), - $blog->getCorrectTime(), - 0, - 0, - 0 - ); - - $data = array('blog' => &$blog); - $manager->notify('PostAddBlog', $data); - - $data = array( - 'blog' => &$blog, - 'name' => _EBLOGDEFAULTCATEGORY_NAME, - 'description' => _EBLOGDEFAULTCATEGORY_DESC, - 'catid' => $catid - ); - $manager->notify('PostAddCategory', $data); - - /* TODO: we should consider to use the other way insterad of this */ - $_REQUEST['blogid'] = $blogid; - $_REQUEST['catid'] = $catid; - self::pagehead(); - self::$skin->parse('addnewlog'); - self::pagefoot(); - return; - } - - /** - * Admin::action_addnewlog2() - * - * @param void - * @return void - */ - static private function action_addnewlog2() - { - global $member, $manager; - $blogid = intRequestVar('blogid'); - - $member->blogAdminRights($blogid) or self::disallow(); - - $burl = requestVar('url'); - - $blog =& $manager->getBlog($blogid); - $blog->setURL(trim($burl)); - $blog->writeSettings(); - - self::action_overview(_MSG_NEWBLOG); - return; - } - - /** - * Admin::action_skinieoverview() - * - * @param void - * @return void - */ - static private function action_skinieoverview() - { - global $member, $DIR_LIBS, $manager; - - $member->isAdmin() or self::disallow(); - - include_once($DIR_LIBS . 'skinie.php'); - - self::pagehead(); - self::$skin->parse('skinieoverview'); - self::pagefoot(); - return; - } - - /** - * Admin::action_skinieimport() - * - * @param void - * @return void - */ - static private function action_skinieimport() - { - global $member, $DIR_LIBS, $DIR_SKINS, $manager; - - $member->isAdmin() or self::disallow(); - - // load skinie class - include_once($DIR_LIBS . 'skinie.php'); - - $skinFileRaw = postVar('skinfile'); - $mode = postVar('mode'); - - $importer = new SkinImport(); - - // get full filename - if ($mode == 'file') - { - $skinFile = $DIR_SKINS . $skinFileRaw . '/skinbackup.xml'; - - /* TODO: remove this - // backwards compatibilty (in v2.0, exports were saved as skindata.xml) - if ( !file_exists($skinFile) ) - { - $skinFile = $DIR_SKINS . $skinFileRaw . '/skindata.xml'; - } - */ - } - else - { - $skinFile = $skinFileRaw; - } - - // read only metadata - $error = $importer->readFile($skinFile, 1); - - /* TODO: we should consider to use the other way insterad of this */ - $_REQUEST['skininfo'] = $importer->getInfo(); - $_REQUEST['skinnames'] = $importer->getSkinNames(); - $_REQUEST['tpltnames'] = $importer->getTemplateNames(); - - // clashes - $skinNameClashe = $importer->checkSkinNameClashes(); - $templateNameClashes = $importer->checkTemplateNameClashes(); - $hasNameClashes = (count($skinNameClashes) > 0) || (count($templateNameClashes) > 0); - - /* TODO: we should consider to use the other way insterad of this */ - $_REQUEST['skinclashes'] = $skinNameClashes; - $_REQUEST['tpltclashes'] = $templateNameClashes; - $_REQUEST['nameclashes'] = $hasNameClashes ? 1 : 0; - - if ( $error ) - { - self::error($error); - } - - self::pagehead(); - self::$skin->parse('skinieimport'); - self::pagefoot(); - return; - } - - /** - * Admin::action_skiniedoimport() - * - * @param void - * @return void - */ - static private function action_skiniedoimport() - { - global $member, $DIR_LIBS, $DIR_SKINS; - - $member->isAdmin() or self::disallow(); - - // load skinie class - include_once($DIR_LIBS . 'skinie.php'); - - $skinFileRaw = postVar('skinfile'); - $mode = postVar('mode'); - - $allowOverwrite = intPostVar('overwrite'); - - // get full filename - if ( $mode == 'file' ) - { - $skinFile = $DIR_SKINS . $skinFileRaw . '/skinbackup.xml'; - - /* TODO: remove this - // backwards compatibilty (in v2.0, exports were saved as skindata.xml) - if ( !file_exists($skinFile) ) - { - $skinFile = $DIR_SKINS . $skinFileRaw . '/skindata.xml'; - } - */ - } - else - { - $skinFile = $skinFileRaw; - } - - $importer = new SkinImport(); - - $error = $importer->readFile($skinFile); - - if ( $error ) - { - self::error($error); - } - - $error = $importer->writeToDatabase($allowOverwrite); - - if ( $error ) - { - self::error($error); - } - - /* TODO: we should consider to use the other way insterad of this */ - $_REQUEST['skininfo'] = $importer->getInfo(); - $_REQUEST['skinnames'] = $importer->getSkinNames(); - $_REQUEST['tpltnames'] = $importer->getTemplateNames(); - - self::pagehead(); - self::$skin->parse('skiniedoimport'); - self::pagefoot(); - return; - } - - /** - * Admin::action_skinieexport() - * - * @param void - * @return void - */ - static private function action_skinieexport() - { - global $member, $DIR_LIBS; - - $member->isAdmin() or self::disallow(); - - // load skinie class - include_once($DIR_LIBS . 'skinie.php'); - - $aSkins = requestIntArray('skin'); - $aTemplates = requestIntArray('template'); - - if ( !is_array($aTemplates) ) - { - $aTemplates = array(); - } - if ( !is_array($aSkins) ) - { - $aSkins = array(); - } - - $skinList = array_keys($aSkins); - $templateList = array_keys($aTemplates); - - $info = postVar('info'); - - $exporter = new SkinExport(); - foreach ( $skinList as $skinId ) - { - $exporter->addSkin($skinId); - } - foreach ($templateList as $templateId) - { - $exporter->addTemplate($templateId); - } - $exporter->setInfo($info); - - $exporter->export(); - return; - } - - /** - * Admin::action_templateoverview() - * - * @param void - * @return void - */ - static private function action_templateoverview() - { - global $member, $manager; - - $member->isAdmin() or self::disallow(); - - self::pagehead(); - self::$skin->parse('templateoverview'); - self::pagefoot(); - return; - } - - /** - * Admin::action_templateedit() - * - * @param string $msg message for pageheader - * @return void - */ - static private function action_templateedit($msg = '') - { - global $member, $manager; - if ( $msg ) - { - self::$headMess = $msg; - } - - $templateid = intRequestVar('templateid'); - - $member->isAdmin() or self::disallow(); - - $extrahead = "\n"; - $extrahead .= '\n"; - - self::pagehead($extrahead); - self::$skin->parse('templateedit'); - self::pagefoot(); - return; - } - - /** - * TODO: remove this - * - static private function _templateEditRow(&$template, $description, $name, $help = '', $tabindex = 0, $big = 0) { - static $count = 1; - if (!isset($template[$name])) $template[$name] = ''; - ?> - - - - isAdmin() or self::disallow(); - - $name = postVar('tname'); - $desc = postVar('tdesc'); - - if ( !isValidTemplateName($name) ) - { - self::error(_ERROR_BADTEMPLATENAME); - } - - if ( (Template::getNameFromId($templateid) != $name) && Template::exists($name) ) - { - self::error(_ERROR_DUPTEMPLATENAME); - } - - $name = sql_real_escape_string($name); - $desc = sql_real_escape_string($desc); - - // 1. Remove all template parts - $query = "DELETE FROM %s WHERE tdesc=%d;"; - $query = sprintf($query, sql_table('template'), (integer) $templateid); - sql_query($query); - - // 2. Update description - $query = "UPDATE %s SET tdname='%s',tddesc='%s' WHERE tdnumber=%d;"; - $query = sprintf($query, sql_real_escape_string($name), sql_real_escape_string($desc), (integer) $templateid); - sql_query($query); - - // 3. Add non-empty template parts - self::addToTemplate($templateid, 'ITEM_HEADER', postVar('ITEM_HEADER')); - self::addToTemplate($templateid, 'ITEM', postVar('ITEM')); - self::addToTemplate($templateid, 'ITEM_FOOTER', postVar('ITEM_FOOTER')); - self::addToTemplate($templateid, 'MORELINK', postVar('MORELINK')); - self::addToTemplate($templateid, 'EDITLINK', postVar('EDITLINK')); - self::addToTemplate($templateid, 'NEW', postVar('NEW')); - self::addToTemplate($templateid, 'COMMENTS_HEADER', postVar('COMMENTS_HEADER')); - self::addToTemplate($templateid, 'COMMENTS_BODY', postVar('COMMENTS_BODY')); - self::addToTemplate($templateid, 'COMMENTS_FOOTER', postVar('COMMENTS_FOOTER')); - self::addToTemplate($templateid, 'COMMENTS_CONTINUED', postVar('COMMENTS_CONTINUED')); - self::addToTemplate($templateid, 'COMMENTS_TOOMUCH', postVar('COMMENTS_TOOMUCH')); - self::addToTemplate($templateid, 'COMMENTS_AUTH', postVar('COMMENTS_AUTH')); - self::addToTemplate($templateid, 'COMMENTS_ONE', postVar('COMMENTS_ONE')); - self::addToTemplate($templateid, 'COMMENTS_MANY', postVar('COMMENTS_MANY')); - self::addToTemplate($templateid, 'COMMENTS_NONE', postVar('COMMENTS_NONE')); - self::addToTemplate($templateid, 'ARCHIVELIST_HEADER', postVar('ARCHIVELIST_HEADER')); - self::addToTemplate($templateid, 'ARCHIVELIST_LISTITEM', postVar('ARCHIVELIST_LISTITEM')); - self::addToTemplate($templateid, 'ARCHIVELIST_FOOTER', postVar('ARCHIVELIST_FOOTER')); - self::addToTemplate($templateid, 'BLOGLIST_HEADER', postVar('BLOGLIST_HEADER')); - self::addToTemplate($templateid, 'BLOGLIST_LISTITEM', postVar('BLOGLIST_LISTITEM')); - self::addToTemplate($templateid, 'BLOGLIST_FOOTER', postVar('BLOGLIST_FOOTER')); - self::addToTemplate($templateid, 'CATLIST_HEADER', postVar('CATLIST_HEADER')); - self::addToTemplate($templateid, 'CATLIST_LISTITEM', postVar('CATLIST_LISTITEM')); - self::addToTemplate($templateid, 'CATLIST_FOOTER', postVar('CATLIST_FOOTER')); - self::addToTemplate($templateid, 'DATE_HEADER', postVar('DATE_HEADER')); - self::addToTemplate($templateid, 'DATE_FOOTER', postVar('DATE_FOOTER')); - self::addToTemplate($templateid, 'FORMAT_DATE', postVar('FORMAT_DATE')); - self::addToTemplate($templateid, 'FORMAT_TIME', postVar('FORMAT_TIME')); - self::addToTemplate($templateid, 'LOCALE', postVar('LOCALE')); - self::addToTemplate($templateid, 'SEARCH_HIGHLIGHT', postVar('SEARCH_HIGHLIGHT')); - self::addToTemplate($templateid, 'SEARCH_NOTHINGFOUND', postVar('SEARCH_NOTHINGFOUND')); - self::addToTemplate($templateid, 'POPUP_CODE', postVar('POPUP_CODE')); - self::addToTemplate($templateid, 'MEDIA_CODE', postVar('MEDIA_CODE')); - self::addToTemplate($templateid, 'IMAGE_CODE', postVar('IMAGE_CODE')); - - $data = array('fields' => array()); - $manager->notify('TemplateExtraFields', $data); - foreach ( $data['fields'] as $pfkey=>$pfvalue ) - { - foreach ( $pfvalue as $pffield => $pfdesc ) - { - self::addToTemplate($templateid, $pffield, postVar($pffield)); - } - } - - // jump back to template edit - self::action_templateedit(_TEMPLATE_UPDATED); - return; - } - - /** - * Admin::addToTemplate() - * - * @param Integer $id ID for template - * @param String $partname parts name - * @param String $content template contents - * @return Integer record index - * - */ - static private function addToTemplate($id, $partname, $content) - { - // don't add empty parts: - if ( !trim($content) ) - { - return -1; - } - - $partname = sql_real_escape_string($partname); - $content = sql_real_escape_string($content); - - $query = "INSERT INTO %s (tdesc, tpartname, tcontent) VALUES (%d, '%s', '%s');"; - $query = sprintf($query, sql_table('template'), (integer) $id, $partname, $content); - sql_query($query) or exit(_ADMIN_SQLDIE_QUERYERROR . sql_error()); - return sql_insert_id(); - } - - /** - * Admin::action_templatedelete() - * - * @param void - * @return void - */ - static private function action_templatedelete() - { - global $member, $manager; - - $member->isAdmin() or self::disallow(); - - $templateid = intRequestVar('templateid'); - // TODO: check if template can be deleted - - self::pagehead(); - self::$skin->parse('templatedelete'); - self::pagefoot(); - return; - } - - /** - * Admin::action_templatedeleteconfirm() - * - * @param void - * @return void - */ - static private function action_templatedeleteconfirm() - { - global $member, $manager; - - $templateid = intRequestVar('templateid'); - - $member->isAdmin() or self::disallow(); - - $data = array('templateid' => $templateid); - $manager->notify('PreDeleteTemplate', $data); - - // 1. delete description - sql_query('DELETE FROM ' . sql_table('template_desc') . ' WHERE tdnumber=' . $templateid); - - // 2. delete parts - sql_query('DELETE FROM ' . sql_table('template') . ' WHERE tdesc=' . $templateid); - - - $data = array('templateid' => $templateid); - $manager->notify('PostDeleteTemplate', $data); - - self::action_templateoverview(); - return; - } - - /** - * Admin::action_templatenew() - * - * @param void - * @return void - */ - static private function action_templatenew() - { - global $member; - - $member->isAdmin() or self::disallow(); - - $name = postVar('name'); - $desc = postVar('desc'); - - if ( !isValidTemplateName($name) ) - { - self::error(_ERROR_BADTEMPLATENAME); - } - - if ( Template::exists($name) ) - { - self::error(_ERROR_DUPTEMPLATENAME); - } - - $newTemplateId = Template::createNew($name, $desc); - - self::action_templateoverview(); - return; - } - - /** - * Admin::action_templateclone() - * - * @param void - * @return void - */ - static private function action_templateclone() - { - global $member; - - $templateid = intRequestVar('templateid'); - - $member->isAdmin() or self::disallow(); - - // 1. read old template - $name = Template::getNameFromId($templateid); - $desc = Template::getDesc($templateid); - - // 2. create desc thing - $name = "cloned" . $name; - - // if a template with that name already exists: - if ( Template::exists($name) ) - { - $i = 1; - while (Template::exists($name . $i)) - { - $i++; - } - $name .= $i; - } - - $newid = Template::createNew($name, $desc); - - // 3. create clone - // go through parts of old template and add them to the new one - $query = "SELECT tpartname, tcontent FROM %s WHERE tdesc=%d;"; - $query = sprintf($query, sql_table('template'), (integer) $templateid); - - $res = sql_query($query); - while ( $o = sql_fetch_object($res) ) - { - self::addToTemplate($newid, $o->tpartname, $o->tcontent); - } - - self::action_templateoverview(); - return; - } - - /** - * Admin::action_admintemplateoverview() - * - * @param void - * @return void - */ - static private function action_admintemplateoverview() - { - global $member, $manager; - $member->isAdmin() or self::disallow(); - self::pagehead(); - self::$skin->parse('admntemplateoverview'); - self::pagefoot(); - return; - } - - /** - * Admin::action_admintemplateedit() - * - * @param string $msg message for pageheader - * @return void - */ - static private function action_admintemplateedit($msg = '') - { - global $member, $manager; - if ( $msg ) - { - self::$headMess = $msg; - } - $member->isAdmin() or self::disallow(); - $extrahead = "\n"; - $extrahead .= '' . "\n"; - self::pagehead($extrahead); - self::$skin->parse('admintemplateedit'); - self::pagefoot(); - return; - } - - /** - * Admin::action_admintemplateupdate() - * - * @param void - * @return void - */ - static private function action_admintemplateupdate() - { - global $member, $manager; - $templateid = intRequestVar('templateid'); - $member->isAdmin() or self::disallow(); - $name = postVar('tname'); - $desc = postVar('tdesc'); - - if ( !isValidTemplateName($name) ) - { - self::error(_ERROR_BADTEMPLATENAME); - } - - if ( (Template::getNameFromId($templateid) != $name) && Template::exists($name) ) - { - self::error(_ERROR_DUPTEMPLATENAME); - } - $name = sql_real_escape_string($name); - $desc = sql_real_escape_string($desc); - - // 1. Remove all template parts - $query = "DELETE FROM %s WHERE tdesc=%d;"; - $query = sprintf($query, (integer) $templateid); - sql_query($query); - - // 2. Update description - $query = 'UPDATE %s SET tdname=%s tddesc=%s WHERE tdnumber=%d;'; - $query = sprintf($query, sql_real_escape_string($name), sql_real_escape_string($desc), (integer) $templateid); - sql_query($query); - - // 3. Add non-empty template parts - self::addToAdminTemplate($templateid, 'ADMINSKINTYPELIST_HEAD', postVar('ADMINSKINTYPELIST_HEAD')); - self::addToAdminTemplate($templateid, 'ADMINSKINTYPELIST_BODY', postVar('ADMINSKINTYPELIST_BODY')); - self::addToAdminTemplate($templateid, 'ADMINSKINTYPELIST_FOOT', postVar('ADMINSKINTYPELIST_FOOT')); - self::addToAdminTemplate($templateid, 'ADMIN_CUSTOMHELPLINK_ICON', postVar('ADMIN_CUSTOMHELPLINK_ICON')); - self::addToAdminTemplate($templateid, 'ADMIN_CUSTOMHELPLINK_ANCHOR', postVar('ADMIN_CUSTOMHELPLINK_ANCHOR')); - self::addToAdminTemplate($templateid, 'ADMIN_BLOGLINK', postVar('ADMIN_BLOGLINK')); - self::addToAdminTemplate($templateid, 'ADMIN_BATCHLIST', postVar('ADMIN_BATCHLIST')); - self::addToAdminTemplate($templateid, 'ACTIVATE_FORGOT_TITLE', postVar('ACTIVATE_FORGOT_TITLE')); - self::addToAdminTemplate($templateid, 'ACTIVATE_FORGOT_TEXT', postVar('ACTIVATE_FORGOT_TEXT')); - self::addToAdminTemplate($templateid, 'ACTIVATE_REGISTER_TITLE', postVar('ACTIVATE_REGISTER_TITLE')); - self::addToAdminTemplate($templateid, 'ACTIVATE_REGISTER_TEXT', postVar('ACTIVATE_REGISTER_TEXT')); - self::addToAdminTemplate($templateid, 'ACTIVATE_CHANGE_TITLE', postVar('ACTIVATE_CHANGE_TITLE')); - self::addToAdminTemplate($templateid, 'ACTIVATE_CHANGE_TEXT', postVar('ACTIVATE_CHANGE_TEXT')); - self::addToAdminTemplate($templateid, 'TEMPLATE_EDIT_EXPLUGNAME', postVar('TEMPLATE_EDIT_EXPLUGNAME')); - self::addToAdminTemplate($templateid, 'TEMPLATE_EDIT_ROW_HEAD', postVar('TEMPLATE_EDIT_ROW_HEAD')); - self::addToAdminTemplate($templateid, 'TEMPLATE_EDIT_ROW_TAIL', postVar('TEMPLATE_EDIT_ROW_TAIL')); - self::addToAdminTemplate($templateid, 'SPECIALSKINLIST_HEAD', postVar('SPECIALSKINLIST_HEAD')); - self::addToAdminTemplate($templateid, 'SPECIALSKINLIST_BODY', postVar('SPECIALSKINLIST_BODY')); - self::addToAdminTemplate($templateid, 'SPECIALSKINLIST_FOOT', postVar('SPECIALSKINLIST_FOOT')); - self::addToAdminTemplate($templateid, 'SYSTEMINFO_GDSETTINGS', postVar('SYSTEMINFO_GDSETTINGS')); - self::addToAdminTemplate($templateid, 'BANLIST_DELETED_LIST', postVar('BANLIST_DELETED_LIST')); - self::addToAdminTemplate($templateid, 'INSERT_PLUGOPTION_TITLE', postVar('INSERT_PLUGOPTION_TITLE')); - self::addToAdminTemplate($templateid, 'INSERT_PLUGOPTION_BODY', postVar('INSERT_PLUGOPTION_BODY')); - self::addToAdminTemplate($templateid, 'INPUTYESNO_TEMPLATE_ADMIN', postVar('INPUTYESNO_TEMPLATE_ADMIN')); - self::addToAdminTemplate($templateid, 'INPUTYESNO_TEMPLATE_NORMAL', postVar('INPUTYESNO_TEMPLATE_NORMAL')); - self::addToAdminTemplate($templateid, 'ADMIN_SPECIALSKINLIST_HEAD', postVar('ADMIN_SPECIALSKINLIST_HEAD')); - self::addToAdminTemplate($templateid, 'ADMIN_SPECIALSKINLIST_BODY', postVar('ADMIN_SPECIALSKINLIST_BODY')); - self::addToAdminTemplate($templateid, 'ADMIN_SPECIALSKINLIST_FOOT', postVar('ADMIN_SPECIALSKINLIST_FOOT')); - self::addToAdminTemplate($templateid, 'SKINIE_EXPORT_LIST', postVar('SKINIE_EXPORT_LIST')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_SELECT_HEAD', postVar('SHOWLIST_LISTPLUG_SELECT_HEAD')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_SELECT_BODY', postVar('SHOWLIST_LISTPLUG_SELECT_BODY')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_SELECT_FOOT', postVar('SHOWLIST_LISTPLUG_SELECT_FOOT')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_HEAD', postVar('SHOWLIST_LISTPLUG_TABLE_HEAD')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_BODY', postVar('SHOWLIST_LISTPLUG_TABLE_BODY')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_FOOT', postVar('SHOWLIST_LISTPLUG_TABLE_FOOT')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_MEMBLIST_HEAD', postVar('SHOWLIST_LISTPLUG_TABLE_MEMBLIST_HEAD')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_MEMBLIST_BODY', postVar('SHOWLIST_LISTPLUG_TABLE_MEMBLIST_BODY')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_MEMBLIST_FOOT', postVar('SHOWLIST_LISTPLUG_TABLE_MEMBLIST_FOOT')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_TEAMLIST_HEAD', postVar('SHOWLIST_LISTPLUG_TABLE_TEAMLIST_HEAD')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_TEAMLIST_BODY', postVar('SHOWLIST_LISTPLUG_TABLE_TEAMLIST_BODY')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_TEAMLIST_FOOT', postVar('SHOWLIST_LISTPLUG_TABLE_TEAMLIST_FOOT')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLUGLIST_HEAD', postVar('SHOWLIST_LISTPLUG_TABLE_PLUGLIST_HEAD')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLUGLIST_BODY', postVar('SHOWLIST_LISTPLUG_TABLE_PLUGLIST_BODY')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLUGLIST_GURL', postVar('SHOWLIST_LISTPLUG_TABLE_PLUGLIST_GURL')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLUGEVENTLIST', postVar('SHOWLIST_LISTPLUG_TABLE_PLUGEVENTLIST')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLUGNEDUPDATE', postVar('SHOWLIST_LISTPLUG_TABLE_PLUGNEDUPDATE')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLUGIN_DEPEND', postVar('SHOWLIST_LISTPLUG_TABLE_PLUGIN_DEPEND')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLUGIN_DEPREQ', postVar('SHOWLIST_LISTPLUG_TABLE_PLUGIN_DEPREQ')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLUGLISTFALSE', postVar('SHOWLIST_LISTPLUG_TABLE_PLUGLISTFALSE')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLUGLIST_ACTN', postVar('SHOWLIST_LISTPLUG_TABLE_PLUGLIST_ACTN')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLUGLIST_ADMN', postVar('SHOWLIST_LISTPLUG_TABLE_PLUGLIST_ADMN')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLUGLIST_HELP', postVar('SHOWLIST_LISTPLUG_TABLE_PLUGLIST_HELP')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLUGOPTSETURL', postVar('SHOWLIST_LISTPLUG_TABLE_PLUGOPTSETURL')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLUGLIST_FOOT', postVar('SHOWLIST_LISTPLUG_TABLE_PLUGLIST_FOOT')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_POPTLIST_HEAD', postVar('SHOWLIST_LISTPLUG_TABLE_POPTLIST_HEAD')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_POPTLIST_BODY', postVar('SHOWLIST_LISTPLUG_TABLE_POPTLIST_BODY')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLGOPT_OYESNO', postVar('SHOWLIST_LISTPLUG_TABLE_PLGOPT_OYESNO')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLGOPT_OPWORD', postVar('SHOWLIST_LISTPLUG_TABLE_PLGOPT_OPWORD')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLGOPT_OSELEP', postVar('SHOWLIST_LISTPLUG_TABLE_PLGOPT_OSELEP')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLGOPT_OSELEO', postVar('SHOWLIST_LISTPLUG_TABLE_PLGOPT_OSELEO')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLGOPT_OSELEC', postVar('SHOWLIST_LISTPLUG_TABLE_PLGOPT_OSELEC')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLGOPT_OTAREA', postVar('SHOWLIST_LISTPLUG_TABLE_PLGOPT_OTAREA')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLGOPT_OITEXT', postVar('SHOWLIST_LISTPLUG_TABLE_PLGOPT_OITEXT')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLUGOPTN_FOOT', postVar('SHOWLIST_LISTPLUG_TABLE_PLUGOPTN_FOOT')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_POPTLIST_FOOT', postVar('SHOWLIST_LISTPLUG_TABLE_POPTLIST_FOOT')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_ITEMLIST_HEAD', postVar('SHOWLIST_LISTPLUG_TABLE_ITEMLIST_HEAD')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_ITEMLIST_BODY', postVar('SHOWLIST_LISTPLUG_TABLE_ITEMLIST_BODY')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_ITEMLIST_FOOT', postVar('SHOWLIST_LISTPLUG_TABLE_ITEMLIST_FOOT')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_CMNTLIST_HEAD', postVar('SHOWLIST_LISTPLUG_TABLE_CMNTLIST_HEAD')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_CMNTLIST_BODY', postVar('SHOWLIST_LISTPLUG_TABLE_CMNTLIST_BODY')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_CMNTLIST_ABAN', postVar('SHOWLIST_LISTPLUG_TABLE_CMNTLIST_ABAN')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_CMNTLIST_FOOT', postVar('SHOWLIST_LISTPLUG_TABLE_CMNTLIST_FOOT')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_BLOGLIST_HEAD', postVar('SHOWLIST_LISTPLUG_TABLE_BLOGLIST_HEAD')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_BLOGLIST_BODY', postVar('SHOWLIST_LISTPLUG_TABLE_BLOGLIST_BODY')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_BLIST_BD_TADM', postVar('SHOWLIST_LISTPLUG_TABLE_BLIST_BD_TADM')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_BLIST_BD_SADM', postVar('SHOWLIST_LISTPLUG_TABLE_BLIST_BD_SADM')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_BLOGLIST_FOOT', postVar('SHOWLIST_LISTPLUG_TABLE_BLOGLIST_FOOT')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_BLOGSNAM_HEAD', postVar('SHOWLIST_LISTPLUG_TABLE_BLOGSNAM_HEAD')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_BLOGSNAM_BODY', postVar('SHOWLIST_LISTPLUG_TABLE_BLOGSNAM_BODY')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_BLOGSNAM_FOOT', postVar('SHOWLIST_LISTPLUG_TABLE_BLOGSNAM_FOOT')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_SHORTNAM_HEAD', postVar('SHOWLIST_LISTPLUG_TABLE_SHORTNAM_HEAD')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_SHORTNAM_BODY', postVar('SHOWLIST_LISTPLUG_TABLE_SHORTNAM_BODY')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_SHORTNAM_FOOT', postVar('SHOWLIST_LISTPLUG_TABLE_SHORTNAM_FOOT')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_CATELIST_HEAD', postVar('SHOWLIST_LISTPLUG_TABLE_CATELIST_HEAD')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_CATELIST_BODY', postVar('SHOWLIST_LISTPLUG_TABLE_CATELIST_BODY')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_CATELIST_FOOT', postVar('SHOWLIST_LISTPLUG_TABLE_CATELIST_FOOT')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_TPLTLIST_HEAD', postVar('SHOWLIST_LISTPLUG_TABLE_TPLTLIST_HEAD')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_TPLTLIST_BODY', postVar('SHOWLIST_LISTPLUG_TABLE_TPLTLIST_BODY')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_TPLTLIST_FOOT', postVar('SHOWLIST_LISTPLUG_TABLE_TPLTLIST_FOOT')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_SKINLIST_HEAD', postVar('SHOWLIST_LISTPLUG_TABLE_SKINLIST_HEAD')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_SKINLIST_BODY', postVar('SHOWLIST_LISTPLUG_TABLE_SKINLIST_BODY')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_SKINLIST_FOOT', postVar('SHOWLIST_LISTPLUG_TABLE_SKINLIST_FOOT')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_DRFTLIST_HEAD', postVar('SHOWLIST_LISTPLUG_TABLE_DRFTLIST_HEAD')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_DRFTLIST_BODY', postVar('SHOWLIST_LISTPLUG_TABLE_DRFTLIST_BODY')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_DRFTLIST_FOOT', postVar('SHOWLIST_LISTPLUG_TABLE_DRFTLIST_FOOT')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_ACTNLIST_HEAD', postVar('SHOWLIST_LISTPLUG_TABLE_ACTNLIST_HEAD')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_ACTNLIST_BODY', postVar('SHOWLIST_LISTPLUG_TABLE_ACTNLIST_BODY')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_ACTNLIST_FOOT', postVar('SHOWLIST_LISTPLUG_TABLE_ACTNLIST_FOOT')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_IBANLIST_HEAD', postVar('SHOWLIST_LISTPLUG_TABLE_IBANLIST_HEAD')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_IBANLIST_BODY', postVar('SHOWLIST_LISTPLUG_TABLE_IBANLIST_BODY')); - self::addToAdminTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_IBANLIST_FOOT', postVar('SHOWLIST_LISTPLUG_TABLE_IBANLIST_FOOT')); - self::addToAdminTemplate($templateid, 'PLUGIN_QUICKMENU_TITLE', postVar('PLUGIN_QUICKMENU_TITLE')); - self::addToAdminTemplate($templateid, 'PLUGIN_QUICKMENU_HEAD', postVar('PLUGIN_QUICKMENU_HEAD')); - self::addToAdminTemplate($templateid, 'PLUGIN_QUICKMENU_BODY', postVar('PLUGIN_QUICKMENU_BODY')); - self::addToAdminTemplate($templateid, 'PLUGIN_QUICKMENU_FOOT', postVar('PLUGIN_QUICKMENU_FOOT')); - - $data = array('fields' => array()); - $manager->notify('TemplateExtraFields', $data); - foreach ( $data['fields'] as $pfkey => $pfvalue ) - { - foreach ( $pfvalue as $pffield => $pfdesc ) - { - self::addToAdminTemplate($templateid, $pffield, postVar($pffield)); - } - } - - // jump back to template edit - self::action_admintemplateedit(_TEMPLATE_UPDATED); - return; - } - - /** - * Admin::addToAdminTemplate() - * - * @param integer $id ID for template - * @param string $partname name of part for template - * @param void $contents content for part of template - * @return integer ID for newly inserted Template - */ - static private function addToAdminTemplate($id, $partname, $content) - { - // don't add empty parts: - if ( !trim($content) ) - { - return -1; - } - - $query = "INSERT INTO (tdesc, tpartname, tcontent ) VALUES (%d, '%s', '%s');"; - $query = sprintf($query, sql_table('template'), (integer) $id, sql_real_escape_string($partname), sql_real_escape_string($contents)); - sql_query($query) or exit(_ADMIN_SQLDIE_QUERYERROR . sql_error()); - return sql_insert_id(); - } - - /** - * Admin::action_admintemplatedelete() - * - * @param void - * @return void - */ - static private function action_admintemplatedelete() - { - global $member, $manager; - $member->isAdmin() or self::disallow(); - - // TODO: check if template can be deleted - self::pagehead(); - self::$skin->parse('admintemplatedelete'); - self::pagefoot(); - return; - } - - /** - * Admin::action_admintemplatedeleteconfirm() - * - * @param void - * @return void - */ - static private function action_admintemplatedeleteconfirm() - { - global $member, $manager; - - $templateid = intRequestVar('templateid'); - $member->isAdmin() or self::disallow(); - - $data = array('templateid' => $templateid); - $manager->notify('PreDeleteAdminTemplate', $data); - - // 1. delete description - $query = "DELETE FROM %s WHERE tdnumber=%s;"; - $query = sprintf($query, sql_table('template_desc'), (integer) $templateid); - sql_query($query); - - // 2. delete parts - $query = "DELETE FROM %s WHERE tdesc=%d;"; - $query = sprintf($query, sql_table('template'), (integer) $templateid); - sql_query(); - - $data = array('templateid' => $templateid); - $manager->notify('PostDeleteAdminTemplate', $data); - - self::action_admintemplateoverview(); - return; - } - - /** - * Admin::action_admintemplatenew() - * - * @param void - * @return void - */ - static private function action_admintemplatenew() - { - global $member; - $member->isAdmin() or self::disallow(); - $name = postVar('name'); - $desc = postVar('desc'); - - if ( !isValidTemplateName($name) ) - { - self::error(_ERROR_BADTEMPLATENAME); - } - if ( Template::exists($name) ) - { - self::error(_ERROR_DUPTEMPLATENAME); - } - - $newTemplateId = Template::createNew($name, $desc); - self::action_admintemplateoverview(); - return; - } - - /** - * Admin::action_admintemplateclone() - * - * @param void - * @return void - */ - static private function action_admintemplateclone() - { - global $member; - $templateid = intRequestVar('templateid'); - $member->isAdmin() or self::disallow(); - - // 1. read old template - $name = Template::getNameFromId($templateid); - $desc = Template::getDesc($templateid); - - // 2. create desc thing - $name = "cloned" . $name; - - // if a template with that name already exists: - if ( Template::exists($name) ) - { - $i = 1; - while ( Template::exists($name . $i) ) - { - $i++; - } - $name .= $i; - } - - $newid = Template::admincreateNew($name, $desc); - - // 3. create clone - // go through parts of old template and add them to the new one - $query = "SELECT tpartname, tcontent FROM %sWHERE tdesc=%d;"; - $query = sprintf($query, sql_table('template'), (integer) $templateid); - - $res = sql_query($query); - while ( $o = sql_fetch_object($res) ) - { - self::addToAdminTemplate($newid, $o->tpartname, $o->tcontent); - } - - self::action_admintemplateoverview(); - return; - } - - /** - * Admin::action_skinoverview() - * - * @param void - * @return void - */ - static private function action_skinoverview() - { - global $member, $manager; - - $member->isAdmin() or self::disallow(); - - self::pagehead(); - self::$skin->parse('skinoverview'); - self::pagefoot(); - return; - } - - /** - * Admin::action_skinnew() - * - * @param void - * @return void - */ - static private function action_skinnew() - { - global $member; - - $member->isAdmin() or self::disallow(); - - $name = trim(postVar('name')); - $desc = trim(postVar('desc')); - - if ( !isValidSkinName($name) ) - { - self::error(_ERROR_BADSKINNAME); - } - - if ( SKIN::exists($name) ) - { - self::error(_ERROR_DUPSKINNAME); - } - - $newId = SKIN::createNew($name, $desc); - - self::action_skinoverview(); - return; - } - - /** - * Admin::action_skinedit() - * - * @param void - * @return void - */ - static private function action_skinedit() - { - global $member, $manager; - - $member->isAdmin() or self::disallow(); - - self::pagehead(); - self::$skin->parse('skinedit'); - self::pagefoot(); - return; - } - - /** - * Admin::action_skineditgeneral() - * - * @param void - * @return void - */ - static private function action_skineditgeneral() - { - global $member; - - $skinid = intRequestVar('skinid'); - - $member->isAdmin() or self::disallow(); - - $name = postVar('name'); - $desc = postVar('desc'); - $type = postVar('type'); - $inc_mode = postVar('inc_mode'); - $inc_prefix = postVar('inc_prefix'); - - $skin = new Skin($skinid); - - // 1. Some checks - if ( !isValidSkinName($name) ) - { - self::error(_ERROR_BADSKINNAME); - } - - if ( ($skin->getName() != $name) && SKIN::exists($name) ) - { - self::error(_ERROR_DUPSKINNAME); - } - - if ( !$type ) - { - $type = 'text/html'; - } - if ( !$inc_mode ) - { - $inc_mode = 'normal'; - } - - // 2. Update description - $skin->updateGeneralInfo($name, $desc, $type, $inc_mode, $inc_prefix); - - self::action_skinedit(); - return; - } - - static private function action_skinedittype($msg = '') - { - global $member, $manager; - - $member->isAdmin() or self::disallow(); - - if ( $msg ) - { - self::$headMess = $msg; - } - - $skinid = intRequestVar('skinid'); - $type = requestVar('type'); - $type = trim($type); - $type = strtolower($type); - - if ( !isValidShortName($type) ) - { - self::error(_ERROR_SKIN_PARTS_SPECIAL_FORMAT); - } - - self::pagehead(); - self::$skin->parse('skinedittype'); - self::pagefoot(); - return; - } - - /** - * Admin::action_skinupdate() - * - * @param void - * @return void - */ - static private function action_skinupdate() - { - global $member; - - $skinid = intRequestVar('skinid'); - $content = trim(postVar('content')); - $type = postVar('type'); - - $member->isAdmin() or self::disallow(); - - $skin = new SKIN($skinid); - $skin->update($type, $content); - - self::action_skinedittype(_SKIN_UPDATED); - return; - } - - /** - * Admin::action_skindelete() - * - * @param void - * @return void - */ - static private function action_skindelete() - { - global $member, $manager, $CONF; - - $skinid = intRequestVar('skinid'); - - $member->isAdmin() or self::disallow(); - - // don't allow default skin to be deleted - if ( $skinid == $CONF['BaseSkin'] ) - { - self::error(_ERROR_DEFAULTSKIN); - } - - // don't allow deletion of default skins for blogs - $query = "SELECT bname FROM %s WHERE bdefskin=%d"; - $query = sprintf($query, sql_table('blog'), (integer) $skinid); - - $r = sql_query($query); - if ( $o = sql_fetch_object($r) ) - { - self::error(_ERROR_SKINDEFDELETE . Entity::hsc($o->bname)); - } - - self::pagehead(); - self::$skin->parse('skindelete'); - self::pagefoot(); - return; - } - - /** - * Admin::action_skindeleteconfirm() - * - * @param void - * @return void - */ - static private function action_skindeleteconfirm() - { - global $member, $CONF, $manager; - - $skinid = intRequestVar('skinid'); - - $member->isAdmin() or self::disallow(); - - // don't allow default skin to be deleted - if ( $skinid == $CONF['BaseSkin'] ) - { - self::error(_ERROR_DEFAULTSKIN); - } - - // don't allow deletion of default skins for blogs - $query = "SELECT bname FROM %s WHERE bdefskin=%d;"; - $query = sprintf($query, sql_table('blog'), (integer) $skinid); - - $r = sql_query($query); - if ( $o = sql_fetch_object($r) ) - { - self::error(_ERROR_SKINDEFDELETE .$o->bname); - } - - $data = array('skinid' => $skinid); - $manager->notify('PreDeleteSkin', $data); - - // 1. delete description - $query = "DELETE FROM %s WHERE sdnumber=%d;"; - $query = sprintf($query, sql_table('skin_desc'), (integer) $skinid); - sql_query($query); - - // 2. delete parts - $query = "DELETE FROM %s WHERE sdesc=%d;"; - $query = sprintf($query, sql_table('skin'), (integer) $skinid); - sql_query($query); - - $data = array('skinid' => $skinid); - $manager->notify('PostDeleteSkin', $data); - - self::action_skinoverview(); - return; - } - - /** - * Admin::action_skinremovetype() - * - * @param void - * @return void - */ - static private function action_skinremovetype() - { - global $member, $manager, $CONF; - - $member->isAdmin() or self::disallow(); - - $skinid = intRequestVar('skinid'); - $skintype = requestVar('type'); - - if ( !isValidShortName($skintype) ) - { - self::error(_ERROR_SKIN_PARTS_SPECIAL_DELETE); - } - - // don't allow default skinparts to be deleted - /* TODO: this array should be retrieved from Action class */ - if ( in_array($skintype, array('index', 'item', 'archivelist', 'archive', 'search', 'error', 'member', 'imagepopup')) ) - { - self::error(_ERROR_SKIN_PARTS_SPECIAL_DELETE); - } - - self::pagehead(); - self::$skin->parse('skinremovetype'); - self::pagefoot(); - return; - } - - /** - * Admin::action_skinremovetypeconfirm() - * - * @param void - * @return void - */ - static private function action_skinremovetypeconfirm() - { - global $member, $CONF, $manager; - - $member->isAdmin() or self::disallow(); - - $skinid = intRequestVar('skinid'); - $skintype = requestVar('type'); - - if ( !isValidShortName($skintype) ) - { - self::error(_ERROR_SKIN_PARTS_SPECIAL_DELETE); - } - - // don't allow default skinparts to be deleted - /* TODO: this array should be retrieved from Action class */ - if ( in_array($skintype, array('index', 'item', 'archivelist', 'archive', 'search', 'error', 'member', 'imagepopup')) ) - { - self::error(_ERROR_SKIN_PARTS_SPECIAL_DELETE); - } - - $data = array( - 'skinid' => $skinid, - 'skintype' => $skintype - ); - $manager->notify('PreDeleteSkinPart', $data); - - // delete part - $query = "DELETE FROM %s WHERE sdesc=%d AND stype='%s';"; - $query = sprintf($query, sql_table('skin'), (integer) $skinid, (integer) $skintype); - sql_query($query); - - $data = array( - 'skinid' => $skinid, - 'skintype' => $skintype - ); - $manager->notify('PostDeleteSkinPart', $data); - - self::action_skinedit(); - return; - } - - /** - * Admin::action_skinclone() - * - * @param void - * @return void - */ - static private function action_skinclone() - { - global $member; - - $member->isAdmin() or self::disallow(); - - $skinid = intRequestVar('skinid'); - - // 1. read skin to clone - $skin = new Skin($skinid); - - $name = "clone_{$skin->getName()}"; - - // if a skin with that name already exists: - if ( Skin::exists($name) ) - { - $i = 1; - while (Skin::exists($name . $i)) - $i++; - $name .= $i; - } - - // 2. create skin desc - $newid = Skin::createNew( - $name, - $skin->getDescription(), - $skin->getContentType(), - $skin->getIncludeMode(), - $skin->getIncludePrefix() - ); - - // 3. clone - $query = "SELECT stype FROM %s WHERE sdesc=%d;"; - $query = sprintf($query, sql_table('skin'), (integer) $skinid); - - $res = sql_query($query); - while ( $row = sql_fetch_assoc($res) ) - { - self::$skinclonetype($skin, $newid, $row['stype']); - } - - self::action_skinoverview(); - return; - } - - /** - * Admin::skinclonetype() - * - * @param String $skin Skin object - * @param Integer $newid ID for this clone - * @param String $type type of skin - * @return Void - */ - static private function skinclonetype($skin, $newid, $type) - { - $newid = intval($newid); - $content = $skin->getContent($type); - - if ( $content ) - { - $query = "INSERT INTO %s (sdesc, scontent, stype) VALUES (%d, '%s', '%s')"; - $query = sprintf($query, sql_table('skin'), (integer) $newid, $content, $type); - sql_query($query); - } - return; - } - - /** - * Admin::action_adminskinoverview() - * - * @param void - * @return void - */ - static private function action_adminskinoverview() - { - global $member, $manager; - - $member->isAdmin() or self::disallow(); - - self::pagehead(); - self::$skin->parse('adminskinoverview'); - self::pagefoot(); - return; - } - - /** - * Admin::action_adminskinnew() - * - * @param void - * @return void - */ - static private function action_adminskinnew() - { - global $member; - $member->isAdmin() or self::disallow(); - $name = trim(postVar('name')); - $desc = trim(postVar('desc')); - - if ( !isValidSkinName($name) ) - { - self::error(_ERROR_BADSKINNAME); - } - if ( Skin::exists($name) ) - { - self::error(_ERROR_DUPSKINNAME); - } - /* TODO: $newId is not reused... */ - $newId = Skin::createNew($name, $desc); - self::action_adminskinoverview(); - return; - } - - /** - * Admin::action_adminskinedit() - * - * @param void - * @return void - */ - static private function action_adminskinedit() - { - global $member, $manager; - - $member->isAdmin() or self::disallow(); - self::pagehead(); - self::$skin->parse('adminskinedit'); - self::pagefoot(); - return; - } - - /** - * Admin::action_adminskineditgeneral() - * - * @param void - * @return void - */ - static private function action_adminskineditgeneral() - { - global $member; - - $skinid = intRequestVar('skinid'); - - $member->isAdmin() or self::disallow(); - - $name = postVar('name'); - $desc = postVar('desc'); - $type = postVar('type'); - $inc_mode = postVar('inc_mode'); - $inc_prefix = postVar('inc_prefix'); - - $skin = new Skin($skinid, 'AdminActions', 'AdminSkin'); - - // 1. Some checks - if ( !isValidSkinName($name) ) - { - self::error(_ERROR_BADSKINNAME); - } - if ( ($skin->getName() != $name) && Skin::exists($name) ) - { - self::error(_ERROR_DUPSKINNAME); - } - if ( !$type ) - { - $type = 'text/html'; - } - if ( !$inc_mode ) - { - $inc_mode = 'normal'; - } - // 2. Update description - $skin->updateGeneralInfo($name, $desc, $type, $inc_mode, $inc_prefix); - self::action_adminskinedit(); - return; - } - - /** - * Admin::action_adminskinedittype() - * - * @param string $msg message for pageheader - * @return void - */ - static private function action_adminskinedittype($msg = '') - { - global $member, $manager; - - $member->isAdmin() or self::disallow(); - - if ( $msg ) - { - self::$headMess = $msg; - } - $type = requestVar('type'); - $type = trim($type); - $type = strtolower($type); - - if ( !isValidShortName($type) ) - { - self::error(_ERROR_SKIN_PARTS_SPECIAL_FORMAT); - } - - self::pagehead(); - self::$skin->parse('adminskinedittype'); - self::pagefoot(); - return; - } - - /** - * Admin::action_adminskinupdate() - * - * @param void - * @return void - */ - static private function action_adminskinupdate() - { - global $member; - $skinid = intRequestVar('skinid'); - $content = trim(postVar('content')); - $type = postVar('type'); - - $member->isAdmin() or self::disallow(); - - $skin = new Skin($skinid, 'Admin', 'AdminSkin'); - $skin->update($type, $content); - self::action_adminskinedittype(_SKIN_UPDATED); - return; - } - - /** - * Admin::action_adminskindelete() - * - * @param void - * @return void - */ - static private function action_adminskindelete() - { - global $member, $manager, $CONF; - $member->isAdmin() or self::disallow(); - - /* TODO: needless variable $skinid... */ - $skinid = intRequestVar('skinid'); - self::pagehead(); - self::$skin->parse('adminskindelete'); - self::pagefoot(); - return; - } - - /** - * Admin::action_adminskindeleteconfirm() - * - * @param void - * @return void - */ - static private function action_adminskindeleteconfirm() - { - global $member, $CONF, $manager; - $member->isAdmin() or self::disallow(); - $skinid = intRequestVar('skinid'); - // don't allow default skin to be deleted - if ( $skinid == $CONF['DefaultAdminSkin'] ) - { - self::error(_ERROR_DEFAULTSKIN); - } - - // don't allow deletion of default skins for members - $memberDefaults = $member->getAdminSkin(); - foreach ( $memberDefaults as $memID => $adminskin ) - { - if ( $skinid == $adminskin ) - { - $mem = MEMBER::createFromID($memID); - self::error(_ERROR_SKINDEFDELETE . $mem->displayname); - } - } - - $data = array('skinid' => (integer) $skinid); - $manager->notify('PreDeleteAdminSkin', $data); - - // 1. delete description - $query = "DELETE FROM %s WHERE tdnumber=%s;"; - $query = sprintf($query, sql_table('template_desc'), (integer) $templateid); - sql_query($query); - - // 2. delete parts - $query = "DELETE FROM %s WHERE tdesc=%d;"; - $query = sprintf($query, sql_table('template'), (integer) $templateid); - - sql_query($query); - - $data = array('skinid' => intval($skinid)); - $manager->notify('PostDeleteAdminSkin', $data); - self::action_adminskinoverview(); - return; - } - - /** - * Admin::action_adminskinremovetype() - * - * @param void - * @return void - */ - static private function action_adminskinremovetype() - { - global $member, $manager, $CONF; - - $member->isAdmin() or self::disallow(); - - $skinid = intRequestVar('skinid'); - $skintype = requestVar('type'); - - if ( !isValidShortName($skintype) ) - { - self::error(_ERROR_SKIN_PARTS_SPECIAL_DELETE); - } - - self::pagehead(); - self::$skin->parse('adminskinremovetype'); - self::pagefoot(); - return; - } - - /** - * Admin::action_adminskinremovetypeconfirm() - * - * @param void - * @return void - */ - static private function action_adminskinremovetypeconfirm() - { - global $member, $CONF, $manager; - - $member->isAdmin() or self::disallow(); - - $skinid = intRequestVar('skinid'); - $skintype = requestVar('type'); - - if ( !isValidShortName($skintype) ) - { - self::error(_ERROR_SKIN_PARTS_SPECIAL_DELETE); - } - - $data =array( - 'skinid' => $skinid, - 'skintype' => $skintype - ); - $manager->notify('PreDeleteAdminSkinPart', $data); - - // delete part - $query = 'DELETE FROM %s WHERE sdesc = %d AND stype ="%s"'; - $query = sprintf($query, sql_table('skin'), (integer) $skinid, $skintype); - sql_query($query); - - $data = array( - 'skinid' => $skinid, - 'skintype' => $skintype - ); - $manager->notify('PostDeleteAdminSkinPart', $data); - - self::action_adminskinedit(); - return; - } - - /** - * Admin::action_adminskinclone() - * - * @param void - * @return void - */ - static private function action_adminskinclone() - { - global $member; - - $member->isAdmin() or self::disallow(); - - $skinid = intRequestVar('skinid'); - - // 1. read skin to clone - $skin = new Skin($skinid, 'Admin', 'AdminSkin'); - $name = "clone_{$skin->getName()}"; - - // if a skin with that name already exists: - if ( Skin::exists($name) ) - { - $i = 1; - while ( Skin::exists($name . $i) ) - { - $i++; - } - $name .= $i; - } - - // 2. create skin desc - $newid = Skin::createNew( - $name, - $skin->getDescription(), - $skin->getContentType(), - $skin->getIncludeMode(), - $skin->getIncludePrefix() - ); - - $query = "SELECT stype %s FROM WHERE sdesc=%d;"; - $query = sprintf($query, sql_table('skin'), (integer) $skinid); - - $res = sql_query($query); - while ( $row = sql_fetch_assoc($res) ) - { - self::$skinclonetype($skin, $newid, $row['stype']); - } - self::action_adminskinoverview(); - return; - } - - /** - * Admin::adminskinclonetype() - * - * @param string $skin an instance of Skin class - * @param integer $newid ID for new skin - * @param string $type skin type - * @return void - */ - static private function adminskinclonetype($skin, $newid, $type) - { - $content = $skin->getContentFromDB($type); - - if ( $content ) - { - $content = sql_real_escape_string($content); - $type = sql_real_escape_string($type); - - $query = "INSERT INTO %s (sdesc, scontent, stype) VALUES (%d, '%s', '%s')"; - $query = sprintf(sql_table('skin'), (integer) $newid, $content, $type); - sql_query($query); - } - return; - } - - /** - * Admin::action_adminskinieoverview() - * - * @param void - * @return void - */ - static private function action_adminskinieoverview() - { - global $member, $DIR_LIBS, $manager; - - $member->isAdmin() or self::disallow(); - - // load skinie class - include_once($DIR_LIBS . 'skinie.php'); - - self::pagehead(); - self::$skin->parse('adminskinieoverview'); - self::pagefoot(); - return; - } - - /** - * Admin::action_adminskinieimport() - * - * @param void - * @return void - */ - static private function action_adminskinieimport() - { - global $DIR_LIBS, $DIR_ADMINSKINS, $manager, $member; - - $member->isAdmin() or self::disallow(); - - // load skinie class - include_once($DIR_LIBS . 'skinie.php'); - - $skinFileRaw = postVar('skinfile'); - $mode = postVar('mode'); - - $importer = new SKINIMPORT(); - - // get full filename - if ( $mode == 'file' ) - { - $skinFile = $DIR_ADMINSKINS . $skinFileRaw . '/skinbackup.xml'; - - // backwards compatibilty (in v2.0, exports were saved as skindata.xml) - if ( !file_exists($skinFile) ) - { - $skinFile = $DIR_ADMINSKINS . $skinFileRaw . '/skindata.xml'; - } - } - else - { - $skinFile = $skinFileRaw; - } - - // read only metadata - $error = $importer->readFile($skinFile, 1); - if ( $error ) - { - self::error($error); - } - - /* TODO: we should consider to use the other way instead of this */ - $_REQUEST['skininfo'] = $importer->getInfo(); - $_REQUEST['skinnames'] = $importer->getSkinNames(); - $_REQUEST['tpltnames'] = $importer->getTemplateNames(); - - // clashes - $skinNameClashes = $importer->checkSkinNameClashes(); - $templateNameClashes = $importer->checkTemplateNameClashes(); - $hasNameClashes = (count($skinNameClashes) > 0) || (count($templateNameClashes) > 0); - /* TODO: we should consider to use the other way instead of this */ - $_REQUEST['skinclashes'] = $skinNameClashes; - $_REQUEST['tpltclashes'] = $templateNameClashes; - $_REQUEST['nameclashes'] = $hasNameClashes ? 1 : 0; - - self::pagehead(); - self::$skin->parse('adminskinieimport'); - self::pagefoot(); - return; - } - - /** - * Admin::action_adminskiniedoimport() - * - * @param void - * @return void - */ - static private function action_adminskiniedoimport() - { - global $DIR_LIBS, $DIR_ADMINSKINS, $member; - - $member->isAdmin() or self::disallow(); - - // load skinie class - include_once($DIR_LIBS . 'skinie.php'); - - $skinFileRaw = postVar('skinfile'); - $mode = postVar('mode'); - $allowOverwrite = intPostVar('overwrite'); - - // get full filename - if ( $mode == 'file' ) - { - $skinFile = $DIR_ADMINSKINS . $skinFileRaw . '/skinbackup.xml'; - // backwards compatibilty (in v2.0, exports were saved as skindata.xml) - if ( !file_exists($skinFile) ) - { - $skinFile = $DIR_ADMINSKINS . $skinFileRaw . '/skindata.xml'; - } - } - else - { - $skinFile = $skinFileRaw; - } - - $importer = new SKINIMPORT(); - - $error = $importer->readFile($skinFile); - if ( $error ) - { - self::error($error); - } - - $error = $importer->writeToDatabase($allowOverwrite); - if ( $error ) - { - self::error($error); - } - - /* TODO: we should consider to use the other way instead of this */ - $_REQUEST['skininfo'] = $importer->getInfo(); - $_REQUEST['skinnames'] = $importer->getSkinNames(); - $_REQUEST['tpltnames'] = $importer->getTemplateNames(); - - self::pagehead(); - self::$skin->parse('adminskiniedoimport'); - self::pagefoot(); - return; - } - - /** - * Admin::action_adminskinieexport() - * - * @param void - * @return void - */ - static private function action_adminskinieexport() - { - global $member, $DIR_PLUGINS; - - $member->isAdmin() or self::disallow(); - - // load skinie class - $aSkins = requestIntArray('skin'); - if (!is_array($aSkins)) { - $aSkins = array(); - } - $skinList = array_keys($aSkins); - - $aTemplates = requestIntArray('template'); - if (!is_array($aTemplates)) - { - $aTemplates = array(); - } - $templateList = array_keys($aTemplates); - - $info = postVar('info'); - - include_libs('skinie.php'); - $exporter = new SkinExport(); - foreach ( $skinList as $skinId ) - { - $exporter->addSkin($skinId); - } - foreach ( $templateList as $templateId ) - { - $exporter->addTemplate($templateId); - } - $exporter->setInfo($info); - $exporter->export(); - return; - } - - /** - * Admin::action_settingsedit() - * - * @param Void - * @return Void - */ - static private function action_settingsedit() - { - global $member, $manager, $CONF, $DIR_NUCLEUS, $DIR_MEDIA; - - $member->isAdmin() or self::disallow(); - - self::pagehead(); - self::$skin->parse('settingsedit'); - self::pagefoot(); - return; - } - - /** - * Admin::action_settingsupdate() - * Update $CONFIG and redirect - * - * @param void - * @return void - */ - static private function action_settingsupdate() - { - global $member, $CONF; - - $member->isAdmin() or self::disallow(); - - // check if email address for admin is valid - if ( !NOTIFICATION::address_validation(postVar('AdminEmail')) ) - { - self::error(_ERROR_BADMAILADDRESS); - } - - // save settings - self::updateConfig('DefaultBlog', postVar('DefaultBlog')); - self::updateConfig('BaseSkin', postVar('BaseSkin')); - self::updateConfig('IndexURL', postVar('IndexURL')); - self::updateConfig('AdminURL', postVar('AdminURL')); - self::updateConfig('PluginURL', postVar('PluginURL')); - self::updateConfig('SkinsURL', postVar('SkinsURL')); - self::updateConfig('ActionURL', postVar('ActionURL')); - self::updateConfig('Locale', postVar('Locale')); - self::updateConfig('AdminEmail', postVar('AdminEmail')); - self::updateConfig('SessionCookie', postVar('SessionCookie')); - self::updateConfig('AllowMemberCreate', postVar('AllowMemberCreate')); - self::updateConfig('AllowMemberMail', postVar('AllowMemberMail')); - self::updateConfig('NonmemberMail', postVar('NonmemberMail')); - self::updateConfig('ProtectMemNames', postVar('ProtectMemNames')); - self::updateConfig('SiteName', postVar('SiteName')); - self::updateConfig('NewMemberCanLogon', postVar('NewMemberCanLogon')); - self::updateConfig('DisableSite', postVar('DisableSite')); - self::updateConfig('DisableSiteURL', postVar('DisableSiteURL')); - self::updateConfig('LastVisit', postVar('LastVisit')); - self::updateConfig('MediaURL', postVar('MediaURL')); - self::updateConfig('AllowedTypes', postVar('AllowedTypes')); - self::updateConfig('AllowUpload', postVar('AllowUpload')); - self::updateConfig('MaxUploadSize', postVar('MaxUploadSize')); - self::updateConfig('MediaPrefix', postVar('MediaPrefix')); - self::updateConfig('AllowLoginEdit', postVar('AllowLoginEdit')); - self::updateConfig('DisableJsTools', postVar('DisableJsTools')); - self::updateConfig('CookieDomain', postVar('CookieDomain')); - self::updateConfig('CookiePath', postVar('CookiePath')); - self::updateConfig('CookieSecure', postVar('CookieSecure')); - self::updateConfig('URLMode', postVar('URLMode')); - self::updateConfig('CookiePrefix', postVar('CookiePrefix')); - self::updateConfig('DebugVars', postVar('DebugVars')); - self::updateConfig('DefaultListSize', postVar('DefaultListSize')); - self::updateConfig('AdminCSS', postVar('AdminCSS')); - - // load new config and redirect (this way, the new locale will be used is necessary) - // note that when changing cookie settings, this redirect might cause the user - // to have to log in again. - getConfig(); - redirect($CONF['AdminURL'] . '?action=manage'); - return; - } - - /** - * Admin::action_systemoverview() - * Output system overview - * - * @param void - * @return void - */ - static private function action_systemoverview() - { - self::pagehead(); - self::$skin->parse('systemoverview'); - self::pagefoot(); - return; - } - - /** - * Admin::updateConfig() - * - * @param string $name - * @param string $val - * @return integer return the ID in which the latest query posted - */ - static private function updateConfig($name, $val) - { - $name = sql_real_escape_string($name); - $val = trim(sql_real_escape_string($val)); - - $query = "UPDATE %s SET value='%s' WHERE name='%s'"; - $query = sprintf($query, sql_table('config'), $val, $name); - sql_query($query) or die(_ADMIN_SQLDIE_QUERYERROR . sql_error()); - return sql_insert_id(); - } - - /** - * Admin::error() - * Error message - * - * @param string $msg message that will be shown - * @return void - */ - static private function error($msg) - { - self::pagehead(); - self::$skin->parse('adminerrorpage'); - self::pagefoot(); - return; - } - - /** - * Admin::disallow() - * add error log and show error page - * - * @param void - * @return void - */ - static private function disallow() - { - ActionLog::add(WARNING, _ACTIONLOG_DISALLOWED . serverVar('REQUEST_URI')); - self::error(_ERROR_DISALLOWED); - return; - } - - /** - * Admin::PluninAdminPagehead() - * Output pluginadmin page head - * - * @param string $extrahead - * @return void - */ - static public function PluninAdminPagehead($extrahead = '') - { - self::pagehead(); - return; - } - - /** - * Admin::PluninAdminPagefoot() - * Output pluginadmin page foot - * - * @param void - * @return void - */ - static public function PluninAdminPagefoot() - { - self::pagefoot(); - return; - } - - /** - * Admin::pagehead() - * Output admin page head - * - * @param string PluninAdminPagehead - * @return void - */ - static private function pagehead($extrahead = '') - { - global $member, $nucleus, $CONF, $manager; - - if ( self::existsSkinContents('pagehead') ) - { - if ( isset($extrahead) && !empty($extrahead) ) - { - self::$extrahead = $extrahead; - } - self::$skin->parse('pagehead'); - } - else - { - $data = array( - 'extrahead' => &$extrahead, - 'action' => self::$action - ); - - $manager->notify('AdminPrePageHead', $data); - - $baseUrl = Entity::hsc($CONF['SkinsURL']); - - /* - * TODO: obsoleted - if ( !array_key_exists('AdminCSS', $CONF) ) - { - sql_query("INSERT INTO " . sql_table('config') . " VALUES ('AdminCSS', 'original')"); - $CONF['AdminCSS'] = 'original'; - } - */ - - /* HTTP 1.1 application for no caching */ - header("Cache-Control: no-cache, must-revalidate"); - header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); - - $root_element = 'html'; - $charset = i18n::get_current_charset(); - $locale = preg_replace('#_#', '-', i18n::get_current_locale()); - $xml_version_info = self::$xml_version_info; - $formal_public_identifier = self::$formal_public_identifier; - $system_identifier = self::$system_identifier; - $xhtml_namespace = self::$xhtml_namespace; - - echo "\n"; - echo "\n"; - echo "<{$root_element} xmlns=\"{$xhtml_namespace}\" xml:lang=\"{$locale}\" lang=\"{$locale}\">\n"; - echo "\n"; - echo '' . Entity::hsc($CONF['SiteName']) . " - Admin\n"; - /* - * TODO: obsoleted - echo "\n"; - */ - echo "\n"; - echo "\n"; - echo "\n"; - echo "\n"; - echo "{$extrahead}\n"; - echo "\n\n"; - echo "\n"; - echo "
\n"; - echo "
\n"; - echo '

' . Entity::hsc($CONF['SiteName']) . "

\n"; - echo "
\n"; - echo "
\n"; - echo "
\n"; - echo "
\n"; - if ( $member->isLoggedIn() ) - { - echo _LOGGEDINAS . ' ' . $member->getDisplayName() ." - " . _LOGOUT. "
\n"; - echo "" . _ADMINHOME . " - "; - } - else - { - echo '' . _NOTLOGGEDIN . "
\n"; - } - echo ""._YOURSITE."
\n"; - echo '('; - - if (array_key_exists('codename', $nucleus) && $nucleus['codename'] != '' ) - { - $codenamestring = ' "' . $nucleus['codename'].'"'; - } - else - { - $codenamestring = ''; - } - - if ( $member->isLoggedIn() && $member->isAdmin() ) - { - $checkURL = sprintf(_ADMIN_SYSTEMOVERVIEW_VERSIONCHECK_URL, getNucleusVersion(), getNucleusPatchLevel()); - echo 'Nucleus CMS ' . $nucleus['version'] . $codenamestring . ''; - - $newestVersion = getLatestVersion(); - $newestCompare = str_replace('/', '.', $newestVersion); - $currentVersion = str_replace(array('/','v'), array('.',''), $nucleus['version']); - - if ( $newestVersion && version_compare($newestCompare, $currentVersion) > 0 ) - { - echo "
\n"; - echo ''; - echo _ADMIN_SYSTEMOVERVIEW_LATESTVERSION_TEXT . $newestVersion; - echo ""; - } - } - else - { - echo "Nucleus CMS {$nucleus['version']}{$codenamestring}"; - } - echo ')'; - echo '
'; - } - return; - } - - /** - * Admin::pagefoot() - * Output admin page foot include quickmenu - * - * @param void - * @return void - */ - static private function pagefoot() - { - global $action, $member, $manager; - - if ( self::existsSkinContents('pagefoot') ) - { - self::$skin->parse('pagefoot'); - exit; - } - else - { - $data = array( - 'action' => self::$action - ); - - $manager->notify('AdminPrePageFoot', $data); - - if ( $member->isLoggedIn() && ($action != 'showlogin') ) - { - echo '

' . _LOGOUT . "

\n"; - echo "\n"; - } - - echo "
\n"; - echo 'Nucleus CMS © 2002-' . date('Y') . ' ' . _ADMINPAGEFOOT_COPYRIGHT; - echo '-'; - echo '' . _ADMINPAGEFOOT_DONATE . "\n"; - echo "
\n"; - - echo "
\n"; - - if ( ($action != 'showlogin') && ($member->isLoggedIn()) ) - { - echo "\n"; - - echo '

' . _QMENU_ADD . "

\n"; - echo "
\n"; - echo "

\n"; - echo "\n"; - - $showAll = requestVar('showall'); - - if ( ($member->isAdmin()) && ($showAll == 'yes') ) - { - // Super-Admins have access to all blogs! (no add item support though) - $query = "SELECT bnumber as value, bname as text FROM %s ORDER BY bname;"; - $query = sprintf($query, sql_table('blog')); - } - else - { - $query = "SELECT bnumber as value, bname as text FROM %s, %s WHERE tblog=bnumber and tmember=%d ORDER BY bname;"; - $query = sprintf($query, sql_table('blog'), sql_table('team'), (integer) $member->getID()); - } - $template['name'] = 'blogid'; - $template['tabindex'] = 15000; - $template['extra'] = _QMENU_ADD_SELECT; - $template['selected'] = -1; - $template['shorten'] = 10; - $template['shortenel'] = ''; - $template['javascript'] = 'onchange="return form.submit()"'; - showlist($query, 'select', $template); - - echo "

\n"; - echo "
\n"; - - echo "

{$member->getDisplayName()}

\n"; - echo "\n"; - - if ( $member->isAdmin() ) - { - echo '

' . _QMENU_MANAGE . "

\n"; - echo "\n"; - - echo "

" . _QMENU_LAYOUT . "

\n"; - echo "\n"; - } - - $data = array('options' => array()); - - $manager->notify('QuickMenu', $data); - - if ( count($data['options']) > 0 ) - { - echo "

" . _QMENU_PLUGINS . "

\n"; - echo "\n"; - } - } - else if ( ($action == 'activate') || ($action == 'activatesetpwd') ) - { - - echo '

' . _QMENU_ACTIVATE . '

' . _QMENU_ACTIVATE_TEXT; - } - else - { - echo '

' . _QMENU_INTRO . '

' . _QMENU_INTRO_TEXT; - } - - echo "\n"; - echo "
\n"; - - echo "\n"; - echo "
\n"; - - echo "\n"; - echo "
\n"; - - echo "\n"; - echo "
\n"; - - echo "\n"; - echo "\n"; - } - return; - } - - /** - * Admin::action_bookmarklet() - * - * @param void - * @return void - */ - static private function action_bookmarklet() - { - global $member, $manager; - - $member->teamRights($blogid) or self::disallow(); - - $blogid = intRequestVar('blogid'); - - self::pagehead(); - self::$skin->parse('bookmarklet'); - self::pagefoot(); - return; - } - - /** - * Admin::action_actionlog() - * - * @param void - * @return void - */ - static private function action_actionlog() - { - global $member, $manager; - - $member->isAdmin() or self::disallow(); - - self::pagehead(); - self::$skin->parse('actionlog'); - self::pagefoot(); - return; - } - - /** - * Admin::action_banlist() - * - * @param void - * @return void - */ - static private function action_banlist() - { - global $member, $manager; - - $member->blogAdminRights($blogid) or self::disallow(); - - $blogid = intRequestVar('blogid'); - - self::pagehead(); - self::$skin->parse('banlist'); - self::pagefoot(); - return; - } - - /** - * Admin::action_banlistdelete() - * - * @param void - * @return void - */ - static private function action_banlistdelete() - { - global $member, $manager; - - $blogid = intRequestVar('blogid'); - $member->blogAdminRights($blogid) or self::disallow(); - - self::pagehead(); - self::$skin->parse('banlistdelete'); - self::pagefoot(); - return; - } - - /** - * Admin::action_banlistdeleteconfirm() - * - * @param void - * @return void - */ - static private function action_banlistdeleteconfirm() - { - global $member, $manager; - - $member->blogAdminRights($blogid) or self::disallow(); - - $blogid = intPostVar('blogid'); - $allblogs = postVar('allblogs'); - $iprange = postVar('iprange'); - - $deleted = array(); - - if ( !$allblogs ) - { - if ( Ban::removeBan($blogid, $iprange) ) - { - array_push($deleted, $blogid); - } - } - else - { - // get blogs fot which member has admin rights - $adminblogs = $member->getAdminBlogs(); - foreach ($adminblogs as $blogje) - { - if ( Ban::removeBan($blogje, $iprange) ) - { - array_push($deleted, $blogje); - } - } - } - - if ( sizeof($deleted) == 0 ) - { - self::error(_ERROR_DELETEBAN); - } - - self::pagehead(); - self::$skin->parse('banlistdeleteconfirm'); - self::pagefoot(); - return; - } - - /** - * Admin::action_banlistnewfromitem() - * - * @param void - * @return void - */ - static private function action_banlistnewfromitem() - { - self::action_banlistnew(getBlogIDFromItemID(intRequestVar('itemid'))); - return; - } - - /** - * Admin::action_banlistnew() - * - * @param integer $blogid ID for weblog - * @return void - */ - static private function action_banlistnew($blogid = '') - { - global $member, $manager; - - if ( $blogid == '' ) - { - $blogid = intRequestVar('blogid'); - } - - $ip = requestVar('ip'); - - $member->blogAdminRights($blogid) or self::disallow(); - - /* TODO: we should consider to use the other way instead of this */ - $_REQUEST['blogid'] = $blogid; - - self::pagehead(); - self::$skin->parse('banlistnew'); - self::pagefoot(); - - return; - } - - /** - * Admin::action_banlistadd() - * - * @param void - * @return void - */ - static private function action_banlistadd() - { - global $member; - - $blogid = intPostVar('blogid'); - $allblogs = postVar('allblogs'); - $iprange = postVar('iprange'); - - if ( $iprange == "custom" ) - { - $iprange = postVar('customiprange'); - } - $reason = postVar('reason'); - - $member->blogAdminRights($blogid) or self::disallow(); - - // TODO: check IP range validity - - if ( !$allblogs ) - { - if ( !Ban::addBan($blogid, $iprange, $reason) ) - { - self::error(_ERROR_ADDBAN); - } - } - else - { - // get blogs fot which member has admin rights - $adminblogs = $member->getAdminBlogs(); - $failed = 0; - foreach ($adminblogs as $blogje) - { - if ( !Ban::addBan($blogje, $iprange, $reason) ) - { - $failed = 1; - } - } - if ( $failed ) - { - self::error(_ERROR_ADDBAN); - } - } - self::action_banlist(); - return; - } - - /** - * Admin::action_clearactionlog() - * - * @param void - * @return void - */ - static private function action_clearactionlog() - { - global $member; - - $member->isAdmin() or self::disallow(); - - ActionLog::clear(); - - self::action_manage(_MSG_ACTIONLOGCLEARED); - return; - } - - /** - * Admin::action_backupoverview() - * - * @param void - * @return void - */ - static private function action_backupoverview() - { - global $member, $manager; - - $member->isAdmin() or self::disallow(); - - self::pagehead(); - self::$skin->parse('backupoverview'); - self::pagefoot(); - return; - } - - /** - * Admin::action_backupcreate() - * create file for backup - * - * @param void - * @return void - * - */ - static private function action_backupcreate() - { - global $member, $DIR_LIBS; - - $member->isAdmin() or self::disallow(); - - // use compression ? - $useGzip = (integer) postVar('gzip'); - - include($DIR_LIBS . 'backup.php'); - - // try to extend time limit - // (creating/restoring dumps might take a while) - @set_time_limit(1200); - - Backup::do_backup($useGzip); - exit; - } - - /** - * Admin::action_backuprestore() - * restoring from uploaded file - * - * @param void - * @return void - */ - static private function action_backuprestore() - { - global $member, $DIR_LIBS; - - $member->isAdmin() or self::disallow(); - - if ( intPostVar('letsgo') != 1 ) - { - self::error(_ERROR_BACKUP_NOTSURE); - } - - include($DIR_LIBS . 'backup.php'); - - // try to extend time limit - // (creating/restoring dumps might take a while) - @set_time_limit(1200); - - $message = Backup::do_restore(); - if ( $message != '' ) - { - self::error($message); - } - self::pagehead(); - self::$skin->parse('backuprestore'); - self::pagefoot(); - return; - } - - /** - * Admin::action_pluginlist() - * output the list of installed plugins - * - * @param void - * @return void - * - */ - static private function action_pluginlist() - { - global $DIR_PLUGINS, $member, $manager; - - // check if allowed - $member->isAdmin() or self::disallow(); - - self::pagehead(); - self::$skin->parse('pluginlist'); - self::pagefoot(); - return; - } - - /** - * Admin::action_pluginhelp() - * - * @param void - * @return void - */ - static private function action_pluginhelp() - { - global $member, $manager, $DIR_PLUGINS, $CONF; - - // check if allowed - $member->isAdmin() or self::disallow(); - - $plugid = intGetVar('plugid'); - - if ( !$manager->pidInstalled($plugid) ) - { - self::error(_ERROR_NOSUCHPLUGIN); - } - - self::pagehead(); - self::$skin->parse('pluginhelp'); - self::pagefoot(); - return; - } - - /** - * Admin::action_pluginadd() - * - * @param Void - * @return Void - * - */ - static private function action_pluginadd() - { - global $member, $manager, $DIR_PLUGINS; - - // check if allowed - $member->isAdmin() or self::disallow(); - - $name = postVar('filename'); - - if ( $manager->pluginInstalled($name) ) - { - self::error(_ERROR_DUPPLUGIN); - } - - if ( !checkPlugin($name) ) - { - self::error(_ERROR_PLUGFILEERROR . ' (' . Entity::hsc($name) . ')'); - } - - // get number of currently installed plugins - $res = sql_query('SELECT * FROM ' . sql_table('plugin')); - $numCurrent = sql_num_rows($res); - - // plugin will be added as last one in the list - $newOrder = $numCurrent + 1; - - $data = array('file' => &$name); - $manager->notify('PreAddPlugin', $data); - - // do this before calling getPlugin (in case the plugin id is used there) - $query = "INSERT INTO %s (porder, pfile) VALUES (%d, '%s');"; - $query = sprintf(sql_table('plugin'), (integer) $newOrder, sql_real_escape_string($name)); - sql_query($query); - $iPid = sql_insert_id(); - - $manager->clearCachedInfo('installedPlugins'); - - // Load the plugin for condition checking and instalation - $plugin =& $manager->getPlugin($name); - - // check if it got loaded (could have failed) - if ( !$plugin ) - { - $query = "DELETE FROM %s WHERE pid=%d;"; - $query = sprintf($query, sql_table('plugin'), (integer) $iPid); - - sql_query($query); - - $manager->clearCachedInfo('installedPlugins'); - self::error(_ERROR_PLUGIN_LOAD); - } - - // check if plugin needs a newer Nucleus version - if ( getNucleusVersion() < $plugin->getMinNucleusVersion() ) - { - // uninstall plugin again... - self::deleteOnePlugin($plugin->getID()); - - // ...and show error - self::error(_ERROR_NUCLEUSVERSIONREQ . Entity::hsc($plugin->getMinNucleusVersion())); - } - - // check if plugin needs a newer Nucleus version - if ( (getNucleusVersion() == $plugin->getMinNucleusVersion()) && (getNucleusPatchLevel() < $plugin->getMinNucleusPatchLevel()) ) - { - // uninstall plugin again... - self::deleteOnePlugin($plugin->getID()); - - // ...and show error - self::error(_ERROR_NUCLEUSVERSIONREQ . Entity::hsc( $plugin->getMinNucleusVersion() . ' patch ' . $plugin->getMinNucleusPatchLevel() ) ); - } - - $pluginList = $plugin->getPluginDep(); - foreach ( $pluginList as $pluginName ) - { - $res = sql_query('SELECT * FROM '.sql_table('plugin') . ' WHERE pfile="' . $pluginName . '"'); - if (sql_num_rows($res) == 0) - { - // uninstall plugin again... - self::deleteOnePlugin($plugin->getID()); - self::error(sprintf(_ERROR_INSREQPLUGIN, Entity::hsc($pluginName))); - } - } - - // call the install method of the plugin - $plugin->install(); - - $data = array('plugin' => &$plugin); - $manager->notify('PostAddPlugin', $data); - - // update all events - self::action_pluginupdate(); - return; - } - - /** - * ADMIN:action_pluginupdate(): - * - * @param Void - * @return Void - * - */ - static private function action_pluginupdate() - { - global $member, $manager, $CONF; - - // check if allowed - $member->isAdmin() or self::disallow(); - - // delete everything from plugin_events - sql_query('DELETE FROM '.sql_table('plugin_event')); - - // loop over all installed plugins - $res = sql_query('SELECT pid, pfile FROM '.sql_table('plugin')); - while ( $o = sql_fetch_object($res) ) - { - $pid = $o->pid; - $plug =& $manager->getPlugin($o->pfile); - if ( $plug ) - { - $eventList = $plug->getEventList(); - foreach ( $eventList as $eventName ) - { - $query = "INSERT INTO %s (pid, event) VALUES (%d, '%s')"; - $query = sprintf($query, sql_table('plugin_event'), (integer) $pid, sql_real_escape_string($eventName)); - sql_query($query); - } - } - } - redirect($CONF['AdminURL'] . '?action=pluginlist'); - return; - } - - /** - * Admin::action_plugindelete() - * - * @param void - * @return void - */ - static private function action_plugindelete() - { - global $member, $manager; - - // check if allowed - $member->isAdmin() or self::disallow(); - - $pid = intGetVar('plugid'); - - if ( !$manager->pidInstalled($pid) ) - { - self::error(_ERROR_NOSUCHPLUGIN); - } - - self::pagehead(); - self::$skin->parse('plugindelete'); - self::pagefoot(); - return; - } - - /** - * Admin::action_plugindeleteconfirm() - * - * @param void - * @return void - */ - static private function action_plugindeleteconfirm() - { - global $member, $manager, $CONF; - - // check if allowed - $member->isAdmin() or self::disallow(); - - $pid = intPostVar('plugid'); - - $error = self::deleteOnePlugin($pid, 1); - if ( $error ) - { - self::error($error); - } - - redirect($CONF['AdminURL'] . '?action=pluginlist'); - return; - } - - /** - * Admin:: - * - * @param void - * @return void - */ - static private function deleteOnePlugin($pid, $callUninstall = 0) - { - global $manager; - - $pid = intval($pid); - - if ( !$manager->pidInstalled($pid) ) - { - return _ERROR_NOSUCHPLUGIN; - } - - $query = "SELECT pfile as result FROM %s WHERE pid=%d;"; - $query = sprintf($query, sql_table('plugin'), (integer) $pid); - $name = quickQuery($query); - - // check dependency before delete - $res = sql_query('SELECT pfile FROM ' . sql_table('plugin')); - while ($o = sql_fetch_object($res)) - { - $plug =& $manager->getPlugin($o->pfile); - if ( $plug ) - { - $depList = $plug->getPluginDep(); - foreach ( $depList as $depName ) - { - if ( $name == $depName ) - { - return sprintf(_ERROR_DELREQPLUGIN, $o->pfile); - } - } - } - } - - $data = array('plugid' => $pid); - $manager->notify('PreDeletePlugin', $data); - - // call the unInstall method of the plugin - if ( $callUninstall ) - { - $plugin =& $manager->getPlugin($name); - if ( $plugin ) - { - $plugin->unInstall(); - } - } - - // delete all subscriptions - sql_query('DELETE FROM ' . sql_table('plugin_event') . ' WHERE pid=' . $pid); - - // delete all options - // get OIDs from plugin_option_desc - $res = sql_query('SELECT oid FROM ' . sql_table('plugin_option_desc') . ' WHERE opid=' . $pid); - $aOIDs = array(); - while ($o = sql_fetch_object($res)) - { - array_push($aOIDs, $o->oid); - } - - // delete from plugin_option and plugin_option_desc - sql_query('DELETE FROM ' . sql_table('plugin_option_desc') . ' WHERE opid=' . $pid); - if (count($aOIDs) > 0) - { - sql_query('DELETE FROM ' . sql_table('plugin_option') . ' WHERE oid in (' . implode(',', $aOIDs) . ')'); - } - - // update order numbers - $res = sql_query('SELECT porder FROM ' . sql_table('plugin') . ' WHERE pid=' . $pid); - $o = sql_fetch_object($res); - sql_query('UPDATE ' . sql_table('plugin') . ' SET porder=(porder - 1) WHERE porder>' . $o->porder); - - // delete row - sql_query('DELETE FROM ' . sql_table('plugin') . ' WHERE pid=' . $pid); - - $manager->clearCachedInfo('installedPlugins'); - $data = array('plugid' => $pid); - $manager->notify('PostDeletePlugin', $data); - - return ''; - } - - /** - * Admin::action_pluginup() - * - * @param void - * @return void - */ - static private function action_pluginup() - { - global $member, $manager, $CONF; - - // check if allowed - $member->isAdmin() or self::disallow(); - - $plugid = intGetVar('plugid'); - - if ( !$manager->pidInstalled($plugid) ) - { - self::error(_ERROR_NOSUCHPLUGIN); - } - - // 1. get old order number - $res = sql_query('SELECT porder FROM ' . sql_table('plugin') . ' WHERE pid=' . $plugid); - $o = sql_fetch_object($res); - $oldOrder = $o->porder; - - // 2. calculate new order number - $newOrder = ($oldOrder > 1) ? ($oldOrder - 1) : 1; - - // 3. update plug numbers - sql_query('UPDATE ' . sql_table('plugin') . ' SET porder=' . $oldOrder . ' WHERE porder=' . $newOrder); - sql_query('UPDATE ' . sql_table('plugin') . ' SET porder=' . $newOrder . ' WHERE pid=' . $plugid); - - //self::action_pluginlist(); - // To avoid showing ticket in the URL, redirect to pluginlist, instead. - redirect($CONF['AdminURL'] . '?action=pluginlist'); - return; - } - - /** - * Admin::action_plugindown() - * - * @param void - * @return void - */ - static private function action_plugindown() - { - global $member, $manager, $CONF; - - // check if allowed - $member->isAdmin() or self::disallow(); - - $plugid = intGetVar('plugid'); - if ( !$manager->pidInstalled($plugid) ) - { - self::error(_ERROR_NOSUCHPLUGIN); - } - - // 1. get old order number - $res = sql_query('SELECT porder FROM ' . sql_table('plugin') . ' WHERE pid=' . $plugid); - $o = sql_fetch_object($res); - $oldOrder = $o->porder; - - $res = sql_query('SELECT * FROM ' . sql_table('plugin')); - $maxOrder = sql_num_rows($res); - - // 2. calculate new order number - $newOrder = ($oldOrder < $maxOrder) ? ($oldOrder + 1) : $maxOrder; - - // 3. update plug numbers - sql_query('UPDATE ' . sql_table('plugin') . ' SET porder=' . $oldOrder . ' WHERE porder=' . $newOrder); - sql_query('UPDATE ' . sql_table('plugin') . ' SET porder=' . $newOrder . ' WHERE pid=' . $plugid); - - //self::action_pluginlist(); - // To avoid showing ticket in the URL, redirect to pluginlist, instead. - redirect($CONF['AdminURL'] . '?action=pluginlist'); - return; - } - - /** - * Admin::action_pluginoptions() - * - * Output Plugin option page - * - * @access public - * @param string $message message when fallbacked - * @return void - * - */ - static private function action_pluginoptions($message = '') - { - global $member, $manager; - - // check if allowed - $member->isAdmin() or self::disallow(); - - $pid = intRequestVar('plugid'); - if ( !$manager->pidInstalled($pid) ) - { - self::error(_ERROR_NOSUCHPLUGIN); - } - - if ( isset($message) ) - { - self::$headMess = $message; - } - $extrahead = "\n"; - self::pagehead($extrahead); - self::$skin->parse('pluginoptions'); - self::pagefoot(); - return; - } - - /** - * Admin::action_pluginoptionsupdate() - * - * Update plugin options and fallback to plugin option page - * - * @access public - * @param void - * @return void - */ - static private function action_pluginoptionsupdate() - { - global $member, $manager; - - // check if allowed - $member->isAdmin() or self::disallow(); - - $pid = intRequestVar('plugid'); - - if ( !$manager->pidInstalled($pid) ) - { - self::error(_ERROR_NOSUCHPLUGIN); - } - - $aOptions = requestArray('plugoption'); - NucleusPlugin::apply_plugin_options($aOptions); - - $data = array( - 'context' => 'global', - 'plugid' => $pid - ); - $manager->notify('PostPluginOptionsUpdate', $data); - - self::action_pluginoptions(_PLUGS_OPTIONS_UPDATED); - return; - } - - /** - * Admin::insertPluginOptions() - * - * Output plugin option field - * - * @access public - * @param string $context plugin option context - * @param integer $contextid plugin option context id - * @return void - */ - static public function insertPluginOptions($context, $contextid = 0) - { - global $manager; - - // get all current values for this contextid - // (note: this might contain doubles for overlapping contextids) - $aIdToValue = array(); - - $query = "SELECT oid, ovalue FROM %s WHERE ocontextid=%d;"; - $query = sprintf($query, sql_table('plugin_option'), (integer) $contextid); - - $res = sql_query($query); - while ( $object = sql_fetch_object($res) ) - { - $aIdToValue[$object->oid] = $object->ovalue; - } - - // get list of oids per pid - $query = "SELECT * FROM %s, %s WHERE opid=pid and ocontext= '%s' ORDER BY porder, oid ASC;"; - $query = sprintf($query, sql_table('plugin_option_desc'), sql_table('plugin'), sql_real_escape_string($context)); - $res = sql_query($query); - - $aOptions = array(); - while ( $object = sql_fetch_object($res) ) - { - if ( !in_array($object->oid, array_keys($aIdToValue)) ) - { - $value = $object->odef; - } - else - { - $value = $aIdToValue[$object->oid]; - } - - array_push( - $aOptions, - array( - 'pid' => $object->pid, - 'pfile' => $object->pfile, - 'oid' => $object->oid, - 'value' => $value, - 'name' => $object->oname, - 'description' => $object->odesc, - 'type' => $object->otype, - 'typeinfo' => $object->oextra, - 'contextid' => $contextid, - 'extra' => '' - ) - ); - } - - $data = array( - 'context' => $context, - 'contextid' => $contextid, - 'options' =>& $aOptions - ); - $manager->notify('PrePluginOptionsEdit', $data); - - self::$aOptions = $aOptions; - self::$skin->parse('insertpluginoptions'); - return; - } - - /** - * Admin::action_parseSpecialskin() - * - * @param void - * @return void - */ - static private function action_parseSpecialskin() - { - self::pagehead(); - self::$skin->parse(self::$action); - self::pagefoot(); - return; - } - - /** - * Admin::getAdminskinIDFromName() - * - * @param string $skinname name of skin - * @return integer ID for skin - */ - static private function getAdminskinIDFromName($skinname) - { - $query = "SELECT 'sdnumber' as result FROM %s WHERE sdname = '%s';"; - $query = sprintf($query, sql_table('skin_desc'), mysql_real_escape_string($skinname)); - $admnSknID = quickQuery($query); - return (integer) $adminSkinID; - } - - /** - * Admin::getAdminskinNameFromID() - * - * @param integer $skinid ID for skin - * @return integer ID for skin - */ - static private function getAdminskinNameFromID($skinid) - { - $query = "SELECT sdname as result FROM %s WHERE sdnumber = '%d';"; - $query = sprintf($query, sql_table('skin_desc'), (integer) $skinid); - $admnSknID = quickQuery($query); - return (integer) $adminSkinID; - } - - /** - * Admin::getAdminextrahead() - */ - static function getAdminextrahead() - { - return self::$extrahead; - } - - /** - * Admin::getAdminpassvar() - */ - static function getAdminpassvar() - { - return self::$passvar; - } - - /** - * Admin::getAdminAction() - */ - static function getAdminAction() - { - return self::$action; - } - - /** - * Admin::getAdminaOption() - */ - static function getAdminaOption() - { - return self::$aOptions; - } - - /** - * Admin::action_importAdmin() - * - * @param void - * @return void - */ - static private function action_importAdmin() - { - global $DIR_ADMINSKINS, $action; - if ( $action == 'adminskinieimport' ) - { - self::doAdminskinimport(); - } - $skn = array(); - if ( $action == 'showlogin' ) - { - $skinName = 'showlogin'; - $actnName = 'showlogin'; - } - else - { - $skinName = 'defaultimporter'; - $actnName = 'importAdmin'; - } - - /* TODO: why??? */ - $contents = file_get_contents($DIR_ADMINSKINS . $skinName . '.skn'); - $skn['id'] = 0; - $skn['description'] = $skinName; - $skn['contentType'] = 'importAdmin'; - $skn['includeMode'] = 'normal'; - $skn['includePrefix'] = ''; - $skn['name'] = 'defaultinporter'; - - self::$skin = (object) $skn; - $handler = new AdminActions($actnName, self::$skin, $this); - $handler->setSkin(self::$skin); - - $parser = new PARSER($handler); - $parser->parse($contents); - - return; - } - - /** - * Admin::doAdminskinimport() - * - * @param void - * @return void - */ - static private function doAdminskinimport() - { - global $DIR_LIBS, $DIR_ADMINSKINS, $CONF, $member; - - $member->isAdmin() or self::disallow(); - - include_once($DIR_LIBS . 'Skinie.php'); - $skinFileRaw = postVar('skinfile'); - $mode = postVar('mode'); - $allowOverwrite = intPostVar('overwrite'); - - if ( $mode == 'file' ) - { - $skinFile = $DIR_ADMINSKINS . $skinFileRaw . '/skinbackup.xml'; - } - else - { - $skinFile = $skinFileRaw; - } - - $importer = new SKINIMPORT(); - $error = $importer->readFile($skinFile); - if ( $error ) - { - self::error($error); - } - $error = $importer->writeToDatabase($allowOverwrite); - if ( $error ) - { - self::error($error); - } - - $_REQUEST['skininfo'] = $importer->getInfo(); - $_REQUEST['skinnames'] = $importer->getSkinNames(); - $_REQUEST['tpltnames'] = $importer->getTemplateNames(); - - header('Location: ' . $CONF['AdminURL']); - exit; - } -} + action_xxxx method) + */ + var $action; + + /** + * Class constructor + */ + function ADMIN() { + + } + + /** + * Executes an action + * + * @param string $action action to be performed + */ + function action($action) { + global $CONF, $manager; + + // list of action aliases + $alias = array( + 'login' => 'overview', + '' => 'overview' + ); + + if (isset($alias[$action])) + $action = $alias[$action]; + + $methodName = 'action_' . $action; + + $this->action = strtolower($action); + + // check ticket. All actions need a ticket, unless they are considered to be safe (a safe action + // is an action that requires user interaction before something is actually done) + // all safe actions are in this array: + $aActionsNotToCheck = array( + 'showlogin', + 'login', + 'overview', + 'itemlist', + 'blogcommentlist', + 'bookmarklet', + 'blogsettings', + 'banlist', + 'deleteblog', + 'editmembersettings', + 'browseownitems', + 'browseowncomments', + 'createitem', + 'itemedit', + 'itemmove', + 'categoryedit', + 'categorydelete', + 'manage', + 'actionlog', + 'settingsedit', + 'backupoverview', + 'pluginlist', + 'createnewlog', + 'usermanagement', + 'skinoverview', + 'templateoverview', + 'skinieoverview', + 'itemcommentlist', + 'commentedit', + 'commentdelete', + 'banlistnewfromitem', + 'banlistdelete', + 'itemdelete', + 'manageteam', + 'teamdelete', + 'banlistnew', + 'memberedit', + 'memberdelete', + 'pluginhelp', + 'pluginoptions', + 'plugindelete', + 'skinedittype', + 'skinremovetype', + 'skindelete', + 'skinedit', + 'templateedit', + 'templatedelete', + 'activate', + 'systemoverview' + ); +/* + // the rest of the actions needs to be checked + $aActionsToCheck = array('additem', 'itemupdate', 'itemmoveto', 'categoryupdate', 'categorydeleteconfirm', 'itemdeleteconfirm', 'commentdeleteconfirm', 'teamdeleteconfirm', 'memberdeleteconfirm', 'templatedeleteconfirm', 'skindeleteconfirm', 'banlistdeleteconfirm', 'plugindeleteconfirm', 'batchitem', 'batchcomment', 'batchmember', 'batchcategory', 'batchteam', 'commentupdate', 'banlistadd', 'changemembersettings', 'clearactionlog', 'settingsupdate', 'blogsettingsupdate', 'categorynew', 'teamchangeadmin', 'teamaddmember', 'memberadd', 'addnewlog', 'addnewlog2', 'backupcreate', 'backuprestore', 'pluginup', 'plugindown', 'pluginupdate', 'pluginadd', 'pluginoptionsupdate', 'skinupdate', 'skinclone', 'skineditgeneral', 'templateclone', 'templatenew', 'templateupdate', 'skinieimport', 'skinieexport', 'skiniedoimport', 'skinnew', 'deleteblogconfirm', 'activatesetpwd'); +*/ + if (!in_array($this->action, $aActionsNotToCheck)) + { + if (!$manager->checkTicket()) + $this->error(_ERROR_BADTICKET); + } + + if (method_exists($this, $methodName)) + call_user_func(array(&$this, $methodName)); + else + $this->error(_BADACTION . Entity::hsc(" ($action)")); + + } + + /** + * @todo document this + */ + function action_showlogin() { + global $error; + $this->action_login($error); + } + + /** + * @todo document this + */ + function action_login($msg = '', $passvars = 1) { + global $member; + + // skip to overview when allowed + if ($member->isLoggedIn() && $member->canLogin()) { + $this->action_overview(); + exit; + } + + $this->pagehead(); + + echo '

', _LOGIN ,'

'; + if ($msg) echo _MESSAGE , ': ', Entity::hsc($msg); + ?> + +

+
+
+
+
+ +
+ +
+ + +
+
+ +

+ pagefoot(); + } + + + /** + * provides a screen with the overview of the actions available + * @todo document parameter + */ + function action_overview($msg = '') { + global $member; + + $this->pagehead(); + + if ($msg) + echo _MESSAGE , ': ', $msg; + + /* ---- add items ---- */ + echo '

' . _OVERVIEW_YRBLOGS . '

'; + + $showAll = requestVar('showall'); + + if (($member->isAdmin()) && ($showAll == 'yes')) { + // Super-Admins have access to all blogs! (no add item support though) + $query = 'SELECT bnumber, bname, 1 as tadmin, burl, bshortname' + . ' FROM ' . sql_table('blog') + . ' ORDER BY bname'; + } else { + $query = 'SELECT bnumber, bname, tadmin, burl, bshortname' + . ' FROM ' . sql_table('blog') . ', ' . sql_table('team') + . ' WHERE tblog=bnumber and tmember=' . $member->getID() + . ' ORDER BY bname'; + } + $template['content'] = 'bloglist'; + $template['superadmin'] = $member->isAdmin(); + $amount = showlist($query,'table',$template); + + if (($showAll != 'yes') && ($member->isAdmin())) { + $total = DB::getValue('SELECT COUNT(*) as result FROM ' . sql_table('blog')); + if ($total > $amount) + echo '

' . _OVERVIEW_SHOWALL . '

'; + } + + if ($amount == 0) + echo _OVERVIEW_NOBLOGS; + + if ($amount != 0) { + echo '

' . _OVERVIEW_YRDRAFTS . '

'; + $query = 'SELECT ititle, inumber, bshortname' + . ' FROM ' . sql_table('item'). ', ' . sql_table('blog') + . ' WHERE iauthor='.$member->getID().' and iblog=bnumber and idraft=1'; + $template['content'] = 'draftlist'; + $amountdrafts = showlist($query, 'table', $template); + if ($amountdrafts == 0) + echo _OVERVIEW_NODRAFTS; + } + + if ($amount != 0) { + $yrBlogs = $member->getAdminBlogs(); + if ($showAll != 'yes') { + $admBlogs = array(); + foreach ($yrBlogs as $value) { + if ($member->isBlogAdmin(intval($value))) { + $admBlogs[] = intval($value); + } + } + $yrBlogs = $admBlogs; + } + + if (count($yrBlogs) > 0) { + echo '

' . _OVERVIEW_OTHER_DRAFTS . '

'; + $query = 'SELECT ititle, inumber, bshortname, mname' + . ' FROM ' . sql_table('item'). ', ' . sql_table('blog'). ', ' . sql_table('member') + . ' WHERE iauthor<>'.$member->getID().' and iblog IN ('.implode(",",$yrBlogs).') and iblog=bnumber and iauthor=mnumber and idraft=1' + . ' ORDER BY iblog ASC'; + $template['content'] = 'otherdraftlist'; + $amountdrafts = showlist($query, 'table', $template); + if ($amountdrafts == 0) + echo _OVERVIEW_NODRAFTS; + } + } + + /* ---- user settings ---- */ + echo '

' . _OVERVIEW_YRSETTINGS . '

'; + echo ''; + + /* ---- general settings ---- */ + if ($member->isAdmin()) { + echo '

' . _OVERVIEW_MANAGEMENT. '

'; + echo ''; + } + + + $this->pagefoot(); + } + + /** + * Returns a link to a weblog + * @param object BLOG + */ + function bloglink(&$blog) { + return ''. Entity::hsc( $blog->getName() ) .''; + } + + /** + * @todo document this + */ + function action_manage($msg = '') { + global $member; + + $member->isAdmin() or $this->disallow(); + + $this->pagehead(); + + echo '

(',_BACKHOME,')

'; + + if ($msg) + echo '

' , _MESSAGE , ': ', $msg , '

'; + + + echo '

' . _MANAGE_GENERAL. '

'; + + echo ''; + + echo '

' . _MANAGE_SKINS . '

'; + echo ''; + + echo '

' . _MANAGE_EXTRA . '

'; + echo ''; + + $this->pagefoot(); + } + + /** + * Admin::action_itemlist() + * + * @param integer $blogid ID for weblog + * @return void + */ + public function action_itemlist($blogid = '') +======= + static private $skin; + + static public $action; + static public $aOptions; + static public $blog; + static public $contents; + static public $extrahead; + static public $headMess; + static public $passvar; + + static private $skinless_actions = array( + 'plugindeleteconfirm', + 'pluginoptionsupdate', + 'blogsettingsupdate', + 'settingsupdate', + 'addnewlog2', + 'additem', + 'banlistnewfromitem', + 'itemdeleteconfirm', + 'itemupdate', + 'changemembersettings', + 'clearactionlog', + 'memberedit', + 'login', + + 'skinremovetypeconfirm', + 'skinclone', + 'skindeleteconfirm', + 'skinnew', + 'skineditgeneral', + 'skinupdate', + + 'skinieexport', + + 'templateupdate', + 'templatedeleteconfirm', + 'templatenew', + 'templateclone', + + 'adminskinremovetypeconfirm', + 'adminskinclone', + 'adminskindeleteconfirm', + 'adminskinnew', + 'adminskineditgeneral', + 'adminskinupdate', + + 'adminskinieexport', + + 'admintemplateupdate', + 'admintemplatedeleteconfirm', + 'admintemplatenew', + 'admintemplateclone' + ); + + static private $ticketless_actions = array( + 'showlogin', + 'login', + 'overview', + 'itemlist', + 'blogcommentlist', + 'bookmarklet', + 'blogsettings', + 'banlist', + 'createaccount', + 'deleteblog', + 'editmembersettings', + 'createaccount', + 'forgotpassword', + 'browseowncomments', + 'createitem', + 'browseownitems', + 'itemedit', + 'itemmove', + 'categoryedit', + 'categorydelete', + 'manage', + 'actionlog', + 'settingsedit', + 'backupoverview', + 'pluginlist', + 'createnewlog', + 'usermanagement', + 'itemcommentlist', + 'commentedit', + 'commentdelete', + 'banlistnewfromitem', + 'banlistdelete', + 'itemdelete', + 'manageteam', + 'teamdelete', + 'banlistnew', + 'memberedit', + 'memberdelete', + 'pluginhelp', + 'pluginoptions', + 'plugindelete', + + 'activate', + 'systemoverview', + 'activatesetpwd', + + 'skinoverview', + 'skinclone', + 'skindelete', + 'skinedit', + 'skinedittype', + 'skinnew', + 'skinremovetype', + + 'skinieoverview', + + 'templateoverview', + 'templateclone', + 'templateedit', + 'templatedelete', + + 'adminskinoverview', + 'adminskinclone', + 'adminskindelete', + 'adminskinedit', + 'adminskinedittype', + 'adminskinnew', + 'adminskinremovetype', + + 'adminskinieoverview', + + 'admintemplateoverview', + 'admintemplateclone', + 'admintemplateedit', + 'admintemplatedelete' + ); + + /** + * NOTE: This is for condition of admin/normal skin actions + */ + static public $adminskin_actions = array( + /* ticketless */ + 'adminskinoverview', + 'adminskinclone', + 'adminskindelete', + 'adminskinedit', + 'adminskinedittype', + 'adminskinnew', + 'adminskinremovetype', + + 'adminskinieoverview', + + 'admintemplateoverview', + 'admintemplateclone', + 'admintemplateedit', + 'admintemplatedelete', + + /* ticket needed */ + 'adminskineditgeneral', + 'adminskinupdate', + 'adminskindeleteconfirm', + 'adminskinremovetypeconfirm', + + 'adminskinieoverview', + 'adminskiniedoimport', + 'adminskinieexport', + 'adminskinieimport', + + 'admintemplatenew', + 'admintemplatedeleteconfirm', + 'admintemplateupdate' + ); + + static public function initialize() + { + global $CONF, $manager, $member; + + /* NOTE: 1. decide which skinid to use */ + $skinid = $CONF['AdminSkin']; + if ( $member->isLoggedIn() ) + { + $memskin = $member->getAdminSkin(); + if ( $memskin && Skin::existsID($memskin)) + { + $skinid = $memskin; + } + } + + /* NOTE: 2. make an instance of skin object */ + if ( !Skin::existsID($skinid) ) + { + return FALSE; + } + + /* NOTE: 3. initializing each members */ + self::$skin =& $manager->getSkin($skinid, 'AdminActions', 'AdminSkin'); + self::$action = ''; + self::$extrahead = ''; + self::$passvar = ''; + self::$headMess = ''; + self::$aOptions = ''; + return TRUE; + } + + /** + * Admin::action() + * Executes an action + * + * @param string $action action to be performed + * @return void + */ + static public function action($action) + { + global $CONF, $manager, $member; + + /* 1. decide action name */ + $customAction = postvar('customaction'); + if ( empty($customAction) ) + { + $alias = array( + 'login' => 'overview', + '' => 'overview', + ); + } + else + { + $alias = array( + 'login' => $customAction, + '' => $customAction + ); + } + if ( array_key_exists($action, $alias) && isset($alias[$action]) ) + { + $action = $alias[$action]; + } + $method_name = "action_{$action}"; + self::$action = strtolower($action); + + /* 2. check ticket-needed action */ + if ( !in_array(self::$action, self::$ticketless_actions) && !$manager->checkTicket() ) + { + self::error(_ERROR_BADTICKET); + return; + } + + /* 3. parse according to the action */ + else if ( method_exists('Admin', $method_name) ) + { + call_user_func(array(__CLASS__, $method_name)); + return; + } + /* 4. parse special admin skin */ + elseif ( in_array(self::$action, self::$skinless_actions) ) + { + /* TODO: need to be implemented or not? + self::action_parseSpecialskin(); + */ + } + else + { + self::error(_BADACTION . ENTITY::hsc($action)); + return; + } + + return; + } + + /** + * Action::action_showlogin() + * + * @param void + * @return void + */ + static private function action_showlogin() + { + global $error; + self::action_login($error); + return; + } + + /** + * Action::action_login() + * + * @param string $msg message for pageheader + * @param integer $passvars ??? + */ + static private function action_login($msg = '', $passvars = 1) + { + global $member; + + // skip to overview when allowed + if ( $member->isLoggedIn() && $member->canLogin() ) + { + self::action_overview(); + return; + } + + /* TODO: needless variable??? */ + self::$passvar = $passvars; + if ( $msg ) + { + self::$headMess = $msg; + } + + self::$skin->parse('showlogin'); + } + + /** + * Action::action_overview() + * provides a screen with the overview of the actions available + * + * @param string $msg message for pageheader + * @return void + */ + static private function action_overview($msg = '') + { + if ( $msg ) + { + self::$headMess = $msg; + } + + self::$skin->parse('overview'); + return; + } + + /** + * Admin::action_manage() + * + * @param string $msg message for pageheader + * @retrn void + */ + static private function action_manage($msg = '') + { + global $member; + + if ( $msg ) + { + self::$headMess = $msg; + } + $member->isAdmin() or self::disallow(); + + self::$skin->parse('manage'); + return; + } + + /** + * Action::action_itemlist() + * + * @param integer id for weblod + * @return void + */ + static private function action_itemlist($blogid = '') +>>>>>>> skinnable-master + { + global $member, $manager, $CONF; + + if ( $blogid == '' ) + { + $blogid = intRequestVar('blogid'); + } + +<<<<<<< HEAD + $member->teamRights($blogid) or $member->isAdmin() or $this->disallow(); + + $this->pagehead(); + $blog =& $manager->getBlog($blogid); + + echo '

(',_BACKHOME,')

'; + echo '

' . _ITEMLIST_BLOG . ' ' . $this->bloglink($blog) . '

'; + + // start index + if ( postVar('start') ) + { + $start = intPostVar('start'); + } + else + { + $start = 0; + } + + if ( $start == 0 ) + { + echo '

' . _ITEMLIST_ADDNEW . "

\n"; + } + + // amount of items to show + if ( postVar('amount') ) + { + $amount = intPostVar('amount'); + } + else + { + $amount = intval($CONF['DefaultListSize']); + if ( $amount < 1 ) + { + $amount = 10; + } + } + + $search = postVar('search'); // search through items + + $query = 'SELECT bshortname, cname, mname, ititle, ibody, inumber, idraft, itime' + . ' FROM ' . sql_table('item') . ', ' . sql_table('blog') . ', ' . sql_table('member') . ', ' . sql_table('category') + . ' WHERE iblog=bnumber and iauthor=mnumber and icat=catid and iblog=' . $blogid; + + if ( $search ) + { + $query .= " AND ((ititle LIKE " . DB::quoteValue('%'.$search.'%') . ") OR (ibody LIKE " . DB::quoteValue('%'.$search.'%') . ") OR (imore LIKE " . DB::quoteValue('%'.$search.'%') . "))"; + } + + // non-blog-admins can only edit/delete their own items + if ( !$member->blogAdminRights($blogid) ) + { + $query .= ' and iauthor=' . $member->getID(); + } + + $query .= ' ORDER BY itime DESC' + . " LIMIT $start, $amount"; + + $template['content'] = 'itemlist'; + $template['now'] = $blog->getCorrectTime(time()); + + $manager->loadClass("ENCAPSULATE"); + $navList = new NavList('itemlist', $start, $amount, 0, 1000, $blogid, $search, 0); + $navList->showBatchList('item',$query,'table',$template); + + $this->pagefoot(); + return; + } + + /** + * @todo document this + */ + function action_batchitem() { + global $member, $manager; + + // check if logged in + $member->isLoggedIn() or $this->disallow(); + + // more precise check will be done for each performed operation + + // get array of itemids from request + $selected = requestIntArray('batch'); + $action = requestVar('batchaction'); + + // Show error when no items were selected + if (!is_array($selected) || sizeof($selected) == 0) + $this->error(_BATCH_NOSELECTION); + + // On move: when no destination blog/category chosen, show choice now + $destCatid = intRequestVar('destcatid'); + if (($action == 'move') && (!$manager->existsCategory($destCatid))) + $this->batchMoveSelectDestination('item',$selected); + + // On delete: check if confirmation has been given + if (($action == 'delete') && (requestVar('confirmation') != 'yes')) + $this->batchAskDeleteConfirmation('item',$selected); + + $this->pagehead(); + + echo '(',_BACKHOME,')'; + echo '

',_BATCH_ITEMS,'

'; + echo '

',_BATCH_EXECUTING,' ',Entity::hsc($action),'

'; + echo ''; + echo '',_BATCH_DONE,''; + + $this->pagefoot(); + + + } + + /** + * @todo document this + */ + function action_batchcomment() { + global $member; + + // check if logged in + $member->isLoggedIn() or $this->disallow(); + + // more precise check will be done for each performed operation + + // get array of itemids from request + $selected = requestIntArray('batch'); + $action = requestVar('batchaction'); + + // Show error when no items were selected + if (!is_array($selected) || sizeof($selected) == 0) + $this->error(_BATCH_NOSELECTION); + + // On delete: check if confirmation has been given + if (($action == 'delete') && (requestVar('confirmation') != 'yes')) + $this->batchAskDeleteConfirmation('comment',$selected); + + $this->pagehead(); + + echo '(',_BACKHOME,')'; + echo '

',_BATCH_COMMENTS,'

'; + echo '

',_BATCH_EXECUTING,' ',Entity::hsc($action),'

'; + echo ''; + echo '',_BATCH_DONE,''; + + $this->pagefoot(); + + + } + + /** + * @todo document this + */ + function action_batchmember() { + global $member; + + // check if logged in and admin + ($member->isLoggedIn() && $member->isAdmin()) or $this->disallow(); + + // get array of itemids from request + $selected = requestIntArray('batch'); + $action = requestVar('batchaction'); + + // Show error when no members selected + if (!is_array($selected) || sizeof($selected) == 0) + $this->error(_BATCH_NOSELECTION); + + // On delete: check if confirmation has been given + if (($action == 'delete') && (requestVar('confirmation') != 'yes')) + $this->batchAskDeleteConfirmation('member',$selected); + + $this->pagehead(); + + echo '(',_MEMBERS_BACKTOOVERVIEW,')'; + echo '

',_BATCH_MEMBERS,'

'; + echo '

',_BATCH_EXECUTING,' ',Entity::hsc($action),'

'; + echo ''; + echo '',_BATCH_DONE,''; + + $this->pagefoot(); + + + } + + /** + * @todo document this + */ + function action_batchteam() { + global $member; + + $blogid = intRequestVar('blogid'); + + // check if logged in and admin + ($member->isLoggedIn() && $member->blogAdminRights($blogid)) or $this->disallow(); + + // get array of itemids from request + $selected = requestIntArray('batch'); + $action = requestVar('batchaction'); + + // Show error when no members selected + if (!is_array($selected) || sizeof($selected) == 0) + $this->error(_BATCH_NOSELECTION); + + // On delete: check if confirmation has been given + if (($action == 'delete') && (requestVar('confirmation') != 'yes')) + $this->batchAskDeleteConfirmation('team',$selected); + + $this->pagehead(); + + echo '

(',_BACK,')

'; + + echo '

',_BATCH_TEAM,'

'; + echo '

',_BATCH_EXECUTING,' ',Entity::hsc($action),'

'; + echo ''; + echo '',_BATCH_DONE,''; + + $this->pagefoot(); + + + } + + /** + * @todo document this + */ + function action_batchcategory() { + global $member, $manager; + + // check if logged in + $member->isLoggedIn() or $this->disallow(); + + // more precise check will be done for each performed operation + + // get array of itemids from request + $selected = requestIntArray('batch'); + $action = requestVar('batchaction'); + + // Show error when no items were selected + if (!is_array($selected) || sizeof($selected) == 0) + $this->error(_BATCH_NOSELECTION); + + // On move: when no destination blog chosen, show choice now + $destBlogId = intRequestVar('destblogid'); + if (($action == 'move') && (!$manager->existsBlogID($destBlogId))) + $this->batchMoveCategorySelectDestination('category',$selected); + + // On delete: check if confirmation has been given + if (($action == 'delete') && (requestVar('confirmation') != 'yes')) + $this->batchAskDeleteConfirmation('category',$selected); + + $this->pagehead(); + + echo '(',_BACKHOME,')'; + echo '

',BATCH_CATEGORIES,'

'; + echo '

',_BATCH_EXECUTING,' ',Entity::hsc($action),'

'; + echo ''; + echo '',_BATCH_DONE,''; + + $this->pagefoot(); + + } + + /** + * @todo document this + */ + function batchMoveSelectDestination($type, $ids) { + global $manager; + $this->pagehead(); + ?> +

+
+ + + + addTicketHidden(); + + // insert selected item numbers + $idx = 0; + foreach ($ids as $id) + echo ''; + + // show blog/category selection list + $this->selectBlogCategory('destcatid'); + + ?> + + + + +
+ pagefoot(); + exit; + } + + /** + * @todo document this + */ + function batchMoveCategorySelectDestination($type, $ids) { + global $manager; + $this->pagehead(); + ?> +

+
+ + + + addTicketHidden(); + + // insert selected item numbers + $idx = 0; + foreach ($ids as $id) + echo ''; + + // show blog/category selection list + $this->selectBlog('destblogid'); + + ?> + + + + +
+ pagefoot(); + exit; + } + + /** + * @todo document this + */ + function batchAskDeleteConfirmation($type, $ids) { + global $manager; + + $this->pagehead(); + ?> +

+
+ + + addTicketHidden() ?> + + + '; + + // add hidden vars for team & comment + if ($type == 'team') + { + echo ''; + } + if ($type == 'comment') + { + echo ''; + } + + ?> + + + +
+ pagefoot(); + exit; + } + + + /** + * Inserts a HTML select element with choices for all categories to which the current + * member has access + * @see function selectBlog + */ + function selectBlogCategory($name, $selected = 0, $tabindex = 0, $showNewCat = 0, $iForcedBlogInclude = -1) { + Admin::selectBlog($name, 'category', $selected, $tabindex, $showNewCat, $iForcedBlogInclude); + } + + /** + * Admin::selectBlog() + * Inserts a HTML select element with choices for all blogs to which the user has access + * mode = 'blog' => shows blognames and values are blogids + * mode = 'category' => show category names and values are catids + * + * @param string $name name of + * @param string $mode blog/category + * @param integer $selected category ID to be selected + * @param integer $tabindex tab index value + * @param integer $showNewCat show category to newly be created + * @param integer $iForcedBlogInclude ID of a blog that always needs to be included, + * without checking if the member is on the blog team (-1 = none) + * @return void + */ + public function selectBlog($name, $mode='blog', $selected = 0, $tabindex = 0, $showNewCat = 0, $iForcedBlogInclude = -1) + { + global $member, $CONF; + + // 0. get IDs of blogs to which member can post items (+ forced blog) + $aBlogIds = array(); + if ( $iForcedBlogInclude != -1 ) + { + $aBlogIds[] = intval($iForcedBlogInclude); + } + + if ( !$member->isAdmin() || !array_key_exists('ShowAllBlogs', $CONF) || !$CONF['ShowAllBlogs'] ) + { + $query = "SELECT bnumber FROM %s,%s WHERE tblog=bnumber and tmember=%d;"; + $query = sprintf($query, sql_table('blog'), sql_table('team'), (integer) $member->getID()); + } + else + { + $query = "SELECT bnumber FROM %s ORDER BY bname;"; + $query = sprintf($query, sql_table('blog')); + } + + $rblogids = DB::getResult($query); + foreach ( $rblogids as $row ) + { + if ( $row['bnumber'] != $iForcedBlogInclude ) + { + $aBlogIds[] = (integer) $row['bnumber']; + } + } + if ( count($aBlogIds) == 0 ) + { + return; + } + + echo "\n"; +======= + $member->teamRights($blogid) or $member->isAdmin() or self::disallow(); + + self::$skin->parse('itemlist'); + return; + } + + /** + * Action::action_batchitem() + * + * @param void + * @return void + */ + static private function action_batchitem() + { + global $member, $manager; + + $member->isLoggedIn() or self::disallow(); + + $selected = requestIntArray('batch'); + $action = requestVar('batchaction'); + + if ( !is_array($selected) || sizeof($selected) == 0 ) + { + self::error(_BATCH_NOSELECTION); + return; + } + + // On move: when no destination blog/category chosen, show choice now + $destCatid = intRequestVar('destcatid'); + if ( ($action == 'move') && (!$manager->existsCategory($destCatid)) ) + { + self::batchMoveSelectDestination('item', $selected); + } + + // On delete: check if confirmation has been given + if ( ($action == 'delete') && (requestVar('confirmation') != 'yes') ) + { + self::batchAskDeleteConfirmation('item', $selected); + } + + self::$skin->parse('batchitem'); + return; + } + + /** + * Action::action_batchcomment() + * + * @param void + * @return void + */ + static private function action_batchcomment() + { + global $member; + + $member->isLoggedIn() or self::disallow(); + + $selected = requestIntArray('batch'); + $action = requestVar('batchaction'); + + // Show error when no items were selected + if ( !is_array($selected) || sizeof($selected) == 0 ) + { + self::error(_BATCH_NOSELECTION); + return; + } + + // On delete: check if confirmation has been given + if ( ($action == 'delete') && (requestVar('confirmation') != 'yes') ) + { + self::batchAskDeleteConfirmation('comment', $selected); + } + + self::$skin->parse('batchcomment'); + return; + } + + /** + * Admin::action_batchmember() + * + * @param void + * @return void + */ + static private function action_batchmember() + { + global $member; + + ($member->isLoggedIn() && $member->isAdmin()) or self::disallow(); + + $selected = requestIntArray('batch'); + $action = requestVar('batchaction'); + + // Show error when no members selected + if ( !is_array($selected) || sizeof($selected) == 0 ) + { + self::error(_BATCH_NOSELECTION); + return; + } + + // On delete: check if confirmation has been given + if ( ($action == 'delete') && (requestVar('confirmation') != 'yes') ) + { + self::batchAskDeleteConfirmation('member',$selected); + } + + self::$skin->parse('batchmember'); + return; + } + + /** + * Admin::action_batchteam() + * + * @param void + * @return void + */ + static private function action_batchteam() + { + global $member; + + $blogid = intRequestVar('blogid'); + + ($member->isLoggedIn() && $member->blogAdminRights($blogid)) or self::disallow(); + + $selected = requestIntArray('batch'); + $action = requestVar('batchaction'); + + if ( !is_array($selected) || sizeof($selected) == 0 ) + { + self::error(_BATCH_NOSELECTION); + return; + } + + // On delete: check if confirmation has been given + if ( ($action == 'delete') && (requestVar('confirmation') != 'yes') ) + { + self::batchAskDeleteConfirmation('team',$selected); + } + + self::$skin->parse('batchteam'); + return; + } + + /** + * Admin::action_batchcategory() + * + * @param void + * @return void + */ + static private function action_batchcategory() + { + global $member, $manager; + + $member->isLoggedIn() or self::disallow(); + + $selected = requestIntArray('batch'); + $action = requestVar('batchaction'); + + if ( !is_array($selected) || sizeof($selected) == 0 ) + { + self::error(_BATCH_NOSELECTION); + return; + } + + // On move: when no destination blog chosen, show choice now + $destBlogId = intRequestVar('destblogid'); + if ( ($action == 'move') && (!$manager->existsBlogID($destBlogId)) ) + { + self::batchMoveCategorySelectDestination('category', $selected); + } + + // On delete: check if confirmation has been given + if ( ($action == 'delete') && (requestVar('confirmation') != 'yes') ) + { + self::batchAskDeleteConfirmation('category', $selected); + } + + self::$skin->parse('batchcategory'); + return; + } + + /** + * Admin::batchMoveSelectDestination() + * + * @param string $type type of batch action + * @param integer $ids needless??? + * @return void + * + * TODO: remove needless argument + */ + static private function batchMoveSelectDestination($type, $ids) + { + $_POST['batchmove'] = $type; + self::$skin->parse('batchmove'); + return; + } + + /** + * Admin::batchMoveCategorySelectDestination() + * + * @param string $type type of batch action + * @param integer $ids needless??? + * @return void + * + * TODO: remove needless argument + */ + static private function batchMoveCategorySelectDestination($type, $ids) + { + $_POST['batchmove'] = $type; + global $manager; + self::$skin->parse('batchmovecat'); + return; + } + + /** + * Admin::batchAskDeleteConfirmation() + * + * @param string $type type of batch action + * @param integer $ids needless??? + * @return void + * + * TODO: remove needless argument + */ + static private function batchAskDeleteConfirmation($type, $ids) + { + self::$skin->parse('batchdelete'); + return; + } + + /** + * Admin::action_browseownitems() + * + * @param void + * @return void + */ + static private function action_browseownitems() + { + global $member, $manager, $CONF; + + self::$skin->parse('browseownitems'); + return; + } + + /** + * Admin::action_itemcommentlist() + * Show all the comments for a given item + * + * @param integer $itemid ID for item + * @return void + */ + static private function action_itemcommentlist($itemid = '') + { + global $member, $manager, $CONF; + + if ( $itemid == '' ) + { + $itemid = intRequestVar('itemid'); + } + + // only allow if user is allowed to alter item + $member->canAlterItem($itemid) or self::disallow(); + + $item =& $manager->getItem($itemid, 1, 1); + $_REQUEST['itemid'] = $item['itemid']; + $_REQUEST['blogid'] = $item['blogid']; + + self::$skin->parse('itemcommentlist'); + return; + } + + /** + * Admin::action_browseowncomments() + * Browse own comments + * + * @param void + * @return void + */ + static private function action_browseowncomments() + { + self::$skin->parse('browseowncomments'); + return; + } + + /** + * Admin::action_blogcommentlist() + * Browse all comments for a weblog + * + * @param integer $blogid ID for weblog + * @return void + */ + static private function action_blogcommentlist($blogid = '') + { + global $member, $manager, $CONF; + + if ( $blogid == '' ) + { + $blogid = intRequestVar('blogid'); + } + else + { + $blogid = intval($blogid); + } + + $member->teamRights($blogid) or $member->isAdmin() or self::disallow(); + + /* TODO: we consider to use the other way insterad of this */ + $_REQUEST['blogid'] = $blogid; + + self::$skin->parse('blogcommentlist'); + return; + } + + /** + * Admin::action_createaccount() + * + * @param void + * @return void + */ + static private function action_createaccount() + { + global $CONF; + + if ( $CONF['AllowMemberCreate'] != 1 ) + { + self::$skin->parse('createaccountdisable'); + return; + } + + $name = ''; + $realname =''; + $email = ''; + $url = ''; + + $contents = array( + 'name' => '', + 'realname' => '', + 'email' => '', + 'url' => '' + ); + + if ( array_key_exists('showform', $_POST) && $_POST['showform'] == 1 ) + { + $action = new Action(); + $message = $action->createAccount(); + if ( $message === 1 ) + { + self::$headMess = $message; + self::$skin->parse('createaccountsuccess'); + return; + } + + /* TODO: validation */ + if ( array_key_exists('name', $_POST) ) + { + $contents['name'] = $_POST['name']; + } + if ( array_key_exists('realname', $_POST) ) + { + $contents['realname'] = $_POST['realname']; + } + if ( array_key_exists('email', $_POST) ) + { + $contents['email'] = $_POST['email']; + } + if ( array_key_exists('url', $_POST) ) + { + $contents['url'] = $_POST['url']; + } + + self::$contents = $contents; + + } + + self::$skin->parse('createaccountinput'); + return; + } + + /** + * Admin::action_createitem() + * Provide a page to item a new item to the given blog + * + * @param void + * @return void + */ + static private function action_createitem() + { + global $member, $manager; + + $blogid = intRequestVar('blogid'); + + // check if allowed + $member->teamRights($blogid) or self::disallow(); + + $blog =& $manager->getBlog($blogid); + $contents = array(); + + $data = array( + 'blog' => &$blog, + 'contents' => &$contents + ); + $manager->notify('PreAddItemForm', $data); + + if ( $blog->convertBreaks() ) + { + if ( array_key_exists('body', $contents) && !empty($contents['body']) ) + { + $contents['body'] = removeBreaks($contents['body']); + } + if ( array_key_exists('more', $contents) && !empty($contents['more']) ) + { + $contents['more'] = removeBreaks($contents['more']); + } + } + + self::$blog = &$blog; + self::$contents = &$contents; + + self::$skin->parse('createitem'); + return; + } + + /** + * Admin::action_itemedit() + * + * @param void + * @return void + */ + static private function action_itemedit() + { + global $member, $manager; + + $itemid = intRequestVar('itemid'); + + // only allow if user is allowed to alter item + $member->canAlterItem($itemid) or self::disallow(); + + $item =& $manager->getItem($itemid, 1, 1); + $blog =& $manager->getBlog($item['blogid']); + $data = array('blog'=> &$blog, 'item' => &$item); + $manager->notify('PrepareItemForEdit', $data); + + if ( $blog->convertBreaks() ) + { + if ( array_key_exists('body', $item) && !empty($item['body']) ) + { + $item['body'] = removeBreaks($item['body']); + } + if ( array_key_exists('more', $item) && !empty($item['more']) ) + { + $item['more'] = removeBreaks($item['more']); + } + } + + self::$blog = &$blog; + self::$contents = &$item; + + self::$skin->parse('itemedit'); + return; + } + + /** + * Admin::action_itemupdate() + * + * @param void + * @return void + */ + static private function action_itemupdate() + { + global $member, $manager, $CONF; + + $itemid = intRequestVar('itemid'); + $catid = postVar('catid'); + + // only allow if user is allowed to alter item + $member->canUpdateItem($itemid, $catid) or self::disallow(); + + $actiontype = postVar('actiontype'); + + // delete actions are handled by itemdelete (which has confirmation) + if ( $actiontype == 'delete' ) + { + self::action_itemdelete(); + return; + } + + $body = postVar('body'); + $title = postVar('title'); + $more = postVar('more'); + $closed = intPostVar('closed'); + $draftid = intPostVar('draftid'); + + // default action = add now + if ( !$actiontype ) + { + $actiontype='addnow'; + } + + // create new category if needed + if ( i18n::strpos($catid,'newcat') === 0 ) + { + // get blogid + list($blogid) = sscanf($catid,"newcat-%d"); + + // create + $blog =& $manager->getBlog($blogid); + $catid = $blog->createNewCategory(); + + // show error when sth goes wrong + if ( !$catid ) + { + self::doError(_ERROR_CATCREATEFAIL); + } + } + + /** + * set some variables based on actiontype + * + * actiontypes: + * draft items -> addnow, addfuture, adddraft, delete + * non-draft items -> edit, changedate, delete + * + * variables set: + * $timestamp: set to a nonzero value for future dates or date changes + * $wasdraft: set to 1 when the item used to be a draft item + * $publish: set to 1 when the edited item is not a draft + */ + $blogid = getBlogIDFromItemID($itemid); + $blog =& $manager->getBlog($blogid); + + $wasdrafts = array('adddraft', 'addfuture', 'addnow'); + $wasdraft = in_array($actiontype, $wasdrafts) ? 1 : 0; + $publish = ($actiontype != 'adddraft' && $actiontype != 'backtodrafts') ? 1 : 0; + if ( $actiontype == 'addfuture' || $actiontype == 'changedate' ) + { + $timestamp = mktime(intPostVar('hour'), intPostVar('minutes'), 0, intPostVar('month'), intPostVar('day'), intPostVar('year')); + } + else + { + $timestamp =0; + } + + // edit the item for real + Item::update($itemid, $catid, $title, $body, $more, $closed, $wasdraft, $publish, $timestamp); + + self::updateFuturePosted($blogid); + + if ( $draftid > 0 ) + { + // delete permission is checked inside Item::delete() + Item::delete($draftid); + } + + if ( $catid != intPostVar('catid') ) + { + self::action_categoryedit( + $catid, + $blog->getID(), + $CONF['AdminURL'] . 'index.php?action=itemlist&blogid=' . getBlogIDFromItemID($itemid) + ); + } + else + { + // TODO: set start item correctly for itemlist + $item =& $manager->getitem($itemid, 1, 1); + $query = "SELECT COUNT(*) FROM %s WHERE unix_timestamp(itime) <= '%s';"; + $query = sprintf($query, sql_table('item'), $item['timestamp']); + $cnt = DB::getValue($query); + $_REQUEST['start'] = $cnt + 1; + self::action_itemlist(getBlogIDFromItemID($itemid)); + } + return; + } + + /** + * Admin::action_itemdelete() + * Delete item + * + * @param Void + * @return Void + */ + static private function action_itemdelete() + { + global $member, $manager; + + $itemid = intRequestVar('itemid'); + + // only allow if user is allowed to alter item + $member->canAlterItem($itemid) or self::disallow(); + + if ( !$manager->existsItem($itemid,1,1) ) + { + self::error(_ERROR_NOSUCHITEM); + return; + } + + self::$skin->parse('itemdelete'); + return; + } + + /** + * Admin::action_itemdeleteconfirm() + * + * @param void + * @return void + */ + static private function action_itemdeleteconfirm() + { + global $member, $manager; + + $itemid = intRequestVar('itemid'); + + // only allow if user is allowed to alter item + $member->canAlterItem($itemid) or self::disallow(); + + // get item first + $item =& $manager->getItem($itemid, 1, 1); + + // delete item (note: some checks will be performed twice) + self::deleteOneItem($item['itemid']); + + self::action_itemlist($item['blogid']); + return; + } + + /** + * Admin::deleteOneItem() + * Deletes one item and returns error if something goes wrong + * + * @param integer $itemid ID for item + * @return void + */ + static public function deleteOneItem($itemid) + { + global $member, $manager; + + // only allow if user is allowed to alter item (also checks if itemid exists) + if ( !$member->canAlterItem($itemid) ) + { + return _ERROR_DISALLOWED; + } + + // need to get blogid before the item is deleted + $item =& $manager->getItem($itemid, 1, 1); + + $manager->loadClass('ITEM'); + Item::delete($item['itemid']); + + // update blog's futureposted + self::updateFuturePosted($item['itemid']); + return; + } + + /** + * Admin::updateFuturePosted() + * Update a blog's future posted flag + * + * @param integer $blogid + * @return void + */ + static private function updateFuturePosted($blogid) + { + global $manager; + + $blogid = intval($blogid); + $blog =& $manager->getBlog($blogid); + $currenttime = $blog->getCorrectTime(time()); + + $query = "SELECT * FROM %s WHERE iblog=%d AND iposted=0 AND itime>'%s'"; + $query = sprintf($query, sql_table('item'), (integer) $blogid, i18n::formatted_datetime('mysql', $currenttime)); + $result = DB::getResult($query); + + if ( $result->rowCount() > 0 ) + { + $blog->setFuturePost(); + } + else + { + $blog->clearFuturePost(); + } + return; + } + + /** + * Admin::action_itemmove() + * + * @param void + * @return void + */ + static private function action_itemmove() + { + global $member, $manager; + + $itemid = intRequestVar('itemid'); + + $member->canAlterItem($itemid) or self::disallow(); + + self::$skin->parse('itemmove'); + return; + } + + /** + * Admin::action_itemmoveto() + * + * @param void + * @return void + */ + static private function action_itemmoveto() + { + global $member, $manager; + + $itemid = intRequestVar('itemid'); + $catid = requestVar('catid'); + + // create new category if needed + if ( i18n::strpos($catid,'newcat') === 0 ) + { + // get blogid + list($blogid) = sscanf($catid,'newcat-%d'); + + // create + $blog =& $manager->getBlog($blogid); + $catid = $blog->createNewCategory(); + + // show error when sth goes wrong + if ( !$catid ) + { + self::doError(_ERROR_CATCREATEFAIL); + } + } + + // only allow if user is allowed to alter item + $member->canUpdateItem($itemid, $catid) or self::disallow(); + + $old_blogid = getBlogIDFromItemId($itemid); + + Item::move($itemid, $catid); + + // set the futurePosted flag on the blog + self::updateFuturePosted(getBlogIDFromItemId($itemid)); + + // reset the futurePosted in case the item is moved from one blog to another + self::updateFuturePosted($old_blogid); + + if ( $catid != intRequestVar('catid') ) + { + self::action_categoryedit($catid, $blog->getID()); + } + else + { + self::action_itemlist(getBlogIDFromCatID($catid)); + } + return; + } + + /** + * Admin::moveOneItem() + * Moves one item to a given category (category existance should be checked by caller) + * errors are returned + * + * @param integer $itemid ID for item + * @param integer $destCatid ID for category to which the item will be moved + * @return void + */ + static public function moveOneItem($itemid, $destCatid) + { + global $member; + + // only allow if user is allowed to move item + if ( !$member->canUpdateItem($itemid, $destCatid) ) + { + return _ERROR_DISALLOWED; + } + + Item::move($itemid, $destCatid); + return; + } + + /** + * Admin::action_additem() + * Adds a item to the chosen blog + * + * @param void + * @return void + */ + static private function action_additem() + { + global $manager, $CONF; + + $manager->loadClass('ITEM'); + + $result = Item::createFromRequest(); + + if ( $result['status'] == 'error' ) + { + self::error($result['message']); + return; + } + + $item =& $manager->getItem($result['itemid'], 0, 0); + + if ( $result['status'] == 'newcategory' ) + { + $distURI = $manager->addTicketToUrl($CONF['AdminURL'] . 'index.php?action=itemList&blogid=' . $item['blogid']); + self::action_categoryedit($result['catid'], $item['blogid'], $distURI); + } + else + { + $methodName = 'action_itemlist'; + self::action_itemlist($item['blogid']); + } + return; + } + + /** + * Admin::action_commentedit() + * Allows to edit previously made comments + * + * @param void + * @return void + */ + static private function action_commentedit() + { + global $member, $manager; + + $commentid = intRequestVar('commentid'); + + $member->canAlterComment($commentid) or self::disallow(); + + $comment = Comment::getComment($commentid); + $data = array('comment' => &$comment); + $manager->notify('PrepareCommentForEdit', $data); + + self::$contents = $comment; + self::$skin->parse('commentedit'); + return; + } + + /** + * Admin::action_commentupdate() + * + * @param void + * @return void + */ + static private function action_commentupdate() + { + global $member, $manager; + + $commentid = intRequestVar('commentid'); + + $member->canAlterComment($commentid) or self::disallow(); + + $url = postVar('url'); + $email = postVar('email'); + $body = postVar('body'); + + // intercept words that are too long + if (preg_match('#[a-zA-Z0-9|\.,;:!\?=\/\\\\]{90,90}#', $body) != FALSE) + { + self::error(_ERROR_COMMENT_LONGWORD); + return; + } + + // check length + if ( i18n::strlen($body) < 3 ) + { + self::error(_ERROR_COMMENT_NOCOMMENT); + return; + } + + if ( i18n::strlen($body) > 5000 ) + { + self::error(_ERROR_COMMENT_TOOLONG); + return; + } + + // prepare body + $body = Comment::prepareBody($body); + + // call plugins + $data = array( + 'body' => &$body + ); + $manager->notify('PreUpdateComment', $data); + + $query = "UPDATE %s SET cmail=%s, cemail=%s, cbody=%s WHERE cnumber=%d;"; + $query = sprintf($query, sql_table('comment'), DB::quoteValue($url), DB::quoteValue($email), DB::quoteValue($body), (integer) $commentid); + DB::execute($query); + + // get itemid + $query = "SELECT citem FROM %s WHERE cnumber=%d;"; + $query = sprintf($query, sql_table('comment'), (integer) $commentid); + + $itemid = DB::getValue($query); + + if ( $member->canAlterItem($itemid) ) + { + self::action_itemcommentlist($itemid); + } + else + { + self::action_browseowncomments(); + } + return; + } + + /** + * Admin::action_commentdelete() + * Update comment + * + * @param void + * @return void + */ + static private function action_commentdelete() + { + global $member, $manager; + + $commentid = intRequestVar('commentid'); + $member->canAlterComment($commentid) or self::disallow(); + + self::$skin->parse('commentdelete'); + return; + } + + /** + * Admin::action_commentdeleteconfirm() + * + * @param void + * @return void + */ + static private function action_commentdeleteconfirm() + { + global $member; + + $commentid = intRequestVar('commentid'); + + // get item id first + $query = "SELECT citem FROM %s WHERE cnumber=%d;"; + $query = sprintf($query, sql_table('comment'), (integer) $commentid); + + $itemid = DB::getValue($query); + + $error = self::deleteOneComment($commentid); + if ( $error ) + { + self::doError($error); + } + + if ( $member->canAlterItem($itemid) ) + { + self::action_itemcommentlist($itemid); + } + else + { + self::action_browseowncomments(); + } + return; + } + + /** + * Admin::deleteOneComment() + * + * @param integer $commentid ID for comment + * @return void + */ + static public function deleteOneComment($commentid) + { + global $member, $manager; + + $commentid = (integer) $commentid; + + if ( !$member->canAlterComment($commentid) ) + { + return _ERROR_DISALLOWED; + } + + $data = array( + 'commentid' => $commentid + ); + + $manager->notify('PreDeleteComment', $data); + + // delete the comments associated with the item + $query = "DELETE FROM %s WHERE cnumber=%d;"; + $query = sprintf($query, sql_table('comment'), (integer) $commentid); + DB::execute($query); + + $data = array( + 'commentid' => $commentid + ); + + $manager->notify('PostDeleteComment', $data); + + return ''; + } + + /** + * Admin::action_usermanagement() + * Usermanagement main + * + * @param void + * @return void + */ + static private function action_usermanagement() + { + global $member, $manager; + + // check if allowed + $member->isAdmin() or self::disallow(); + + self::$skin->parse('usermanagement'); + return; + } + + /** + * Admin::action_memberedit() + * Edit member settings + * + * @param void + * @return void + */ + static private function action_memberedit() + { + self::action_editmembersettings(intRequestVar('memberid')); + return; + } + + /** + * Admin::action_editmembersettings() + * + * @param integer $memberid ID for member + * @return void + * + */ + static private function action_editmembersettings($memberid = '') + { + global $member, $manager, $CONF; + + if ( $memberid == '' ) + { + $memberid = $member->getID(); + } + + /* TODO: we should consider to use the other way insterad of this */ + $_REQUEST['memberid'] = $memberid; + + // check if allowed + ($member->getID() == $memberid) or $member->isAdmin() or self::disallow(); + + self::$extrahead .= "\n"; + + self::$skin->parse('editmembersettings'); + return; + } + + /** + * Admin::action_changemembersettings() + * + * @param void + * @return void + */ + static private function action_changemembersettings() + { + global $member, $CONF, $manager; + + $memberid = intRequestVar('memberid'); + + // check if allowed + ($member->getID() == $memberid) or $member->isAdmin() or self::disallow(); + + $name = trim(strip_tags(postVar('name'))); + $realname = trim(strip_tags(postVar('realname'))); + $password = postVar('password'); + $repeatpassword = postVar('repeatpassword'); + $email = strip_tags(postVar('email')); + $url = strip_tags(postVar('url')); + $adminskin = intPostVar('adminskin'); + $bookmarklet = intPostVar('bookmarklet'); + + // begin if: sometimes user didn't prefix the URL with http:// or https://, this cause a malformed URL. Let's fix it. + if ( !preg_match('#^https?://#', $url) ) + { + $url = 'http://' . $url; + } + + $admin = postVar('admin'); + $canlogin = postVar('canlogin'); + $notes = strip_tags(postVar('notes')); + $locale = postVar('locale'); + + $mem =& $manager->getMember($memberid); + + if ( $CONF['AllowLoginEdit'] || $member->isAdmin() ) + { + if ( !isValidDisplayName($name) ) + { + self::error(_ERROR_BADNAME); + return; + } + + if ( ($name != $mem->getDisplayName()) && Member::exists($name) ) + { + self::error(_ERROR_NICKNAMEINUSE); + return; + } + + if ( $password != $repeatpassword ) + { + self::error(_ERROR_PASSWORDMISMATCH); + return; + } + + if ( $password && (i18n::strlen($password) < 6) ) + { + self::error(_ERROR_PASSWORDTOOSHORT); + return; + } + + if ( $password ) + { + $pwdvalid = true; + $pwderror = ''; + + $data = array( + 'password' => $password, + 'errormessage' => &$pwderror, + 'valid' => &$pwdvalid + ); + $manager->notify('PrePasswordSet', $data); + + if ( !$pwdvalid ) + { + self::error($pwderror); + return; + } + } + } + + if ( !NOTIFICATION::address_validation($email) ) + { + self::error(_ERROR_BADMAILADDRESS); + return; + } + if ( !$realname ) + { + self::error(_ERROR_REALNAMEMISSING); + return; + } + if ( ($locale != '') && (!in_array($locale, i18n::get_available_locale_list())) ) + { + self::error(_ERROR_NOSUCHTRANSLATION); + return; + } + + // check if there will remain at least one site member with both the logon and admin rights + // (check occurs when taking away one of these rights from such a member) + if ( (!$admin && $mem->isAdmin() && $mem->canLogin()) + || (!$canlogin && $mem->isAdmin() && $mem->canLogin()) + ) + { + $r = DB::getResult('SELECT * FROM '.sql_table('member').' WHERE madmin=1 and mcanlogin=1'); + if ( $r->rowCount() < 2 ) + { + self::error(_ERROR_ATLEASTONEADMIN); + return; + } + } + + if ( $CONF['AllowLoginEdit'] || $member->isAdmin() ) + { + $mem->setDisplayName($name); + if ( $password ) + { + $mem->setPassword($password); + } + } + + $oldEmail = $mem->getEmail(); + + $mem->setRealName($realname); + $mem->setEmail($email); + $mem->setURL($url); + $mem->setNotes($notes); + $mem->setLocale($locale); + $mem->setAdminSkin($adminskin); + $mem->setBookmarklet($bookmarklet); + + // only allow super-admins to make changes to the admin status + if ( $member->isAdmin() ) + { + $mem->setAdmin($admin); + $mem->setCanLogin($canlogin); + } + + $autosave = postVar('autosave'); + $mem->setAutosave($autosave); + + $mem->write(); + + // store plugin options + $aOptions = requestArray('plugoption'); + NucleusPlugin::apply_plugin_options($aOptions); + $data = array( + 'context' => 'member', + 'memberid' => $memberid, + 'member' => &$mem + ); + $manager->notify('PostPluginOptionsUpdate', $data); + + // if email changed, generate new password + if ( $oldEmail != $mem->getEmail() ) + { + $mem->sendActivationLink('addresschange', $oldEmail); + // logout member + $mem->newCookieKey(); + + // only log out if the member being edited is the current member. + if ( $member->getID() == $memberid ) + { + $member->logout(); + } + self::action_login(_MSG_ACTIVATION_SENT, 0); + return; + } + + if ( ($mem->getID() == $member->getID()) + && ($mem->getDisplayName() != $member->getDisplayName()) ) + { + $mem->newCookieKey(); + $member->logout(); + self::action_login(_MSG_LOGINAGAIN, 0); + } + else + { + self::action_overview(_MSG_SETTINGSCHANGED); + } + return; + } + + /** + * Admin::action_memberadd() + * + * @param void + * @return void + * + */ + static private function action_memberadd() + { + global $member, $manager; + + // check if allowed + $member->isAdmin() or self::disallow(); + + if ( postVar('password') != postVar('repeatpassword') ) + { + self::error(_ERROR_PASSWORDMISMATCH); + return; + } + + if ( i18n::strlen(postVar('password')) < 6 ) + { + self::error(_ERROR_PASSWORDTOOSHORT); + return; + } + + $res = Member::create( + postVar('name'), + postVar('realname'), + postVar('password'), + postVar('email'), + postVar('url'), + postVar('admin'), + postVar('canlogin'), + postVar('notes') + ); + + if ( $res != 1 ) + { + self::error($res); + return; + } + + // fire PostRegister event + $newmem = new Member(); + $newmem->readFromName(postVar('name')); + $data = array( + 'member' => &$newmem + ); + $manager->notify('PostRegister', $data); + + self::action_usermanagement(); + return; + } + + /** + * Admin::action_forgotpassword() + * + * @param void + * @return void + */ + static private function action_forgotpassword() + { + self::$skin->parse('forgotpassword'); + return; + } + + /** + * Admin::action_activate() + * Account activation + * + * @param void + * @return void + */ + static private function action_activate() + { + $key = getVar('key'); + self::showActivationPage($key); + return; + } + + /** + * Admin::showActivationPage() + * + * @param void + * @return void + */ + static private function showActivationPage($key, $message = '') + { + global $manager; + + // clean up old activation keys + Member::cleanupActivationTable(); + + // get activation info + $info = Member::getActivationInfo($key); + + if ( !$info ) + { + self::error(_ERROR_ACTIVATE); + return; + } + + $mem =& $manager->getMember($info->vmember); + + if ( !$mem ) + { + self::error(_ERROR_ACTIVATE); + return; + } + + /* TODO: we should consider to use the other way insterad of this */ + $_POST['ackey'] = $key; + $_POST['bNeedsPasswordChange'] = TRUE; + + self::$headMess = $message; + self::$skin->parse('activate'); + return; + } + + /** + * Admin::action_activatesetpwd() + * Account activation - set password part + * + * @param void + * @return void + */ + static private function action_activatesetpwd() + { + global $manager; + $key = postVar('key'); + + // clean up old activation keys + Member::cleanupActivationTable(); + + // get activation info + $info = Member::getActivationInfo($key); + + if ( !$info || ($info->type == 'addresschange') ) + { + return self::showActivationPage($key, _ERROR_ACTIVATE); + } + + $mem =& $manager->getMember($info->vmember); + + if ( !$mem ) + { + return self::showActivationPage($key, _ERROR_ACTIVATE); + } + + $password = postVar('password'); + $repeatpassword = postVar('repeatpassword'); + + if ( $password != $repeatpassword ) + { + return self::showActivationPage($key, _ERROR_PASSWORDMISMATCH); + } + + if ( $password && (i18n::strlen($password) < 6) ) + { + return self::showActivationPage($key, _ERROR_PASSWORDTOOSHORT); + } + + if ( $password ) + { + $pwdvalid = true; + $pwderror = ''; + + $data = array( + 'password' => $password, + 'errormessage' => &$pwderror, + 'valid' => &$pwdvalid + ); + $manager->notify('PrePasswordSet', $data); + if ( !$pwdvalid ) + { + return self::showActivationPage($key,$pwderror); + } + } + + $error = ''; + + $data = array( + 'type' => 'activation', + 'member' => $mem, + 'error' => &$error + ); + $manager->notify('ValidateForm', $data); + if ( $error != '' ) + { + return self::showActivationPage($key, $error); + } + + // set password + $mem->setPassword($password); + $mem->write(); + + // do the activation + Member::activate($key); + + self::$skin->parse('activatesetpwd'); + return; + } + + /** + * Admin::action_manageteam() + * Manage team + * + * @param void + * @return void + */ + static private function action_manageteam() + { + global $member, $manager; + + $blogid = intRequestVar('blogid'); + + // check if allowed + $member->blogAdminRights($blogid) or self::disallow(); + + self::$skin->parse('manageteam'); + return; + } + + /** + * Admin::action_teamaddmember() + * Add member to team + * + * @param void + * @return void + */ + static private function action_teamaddmember() + { + global $member, $manager; + + $memberid = intPostVar('memberid'); + $blogid = intPostVar('blogid'); + $admin = intPostVar('admin'); + + // check if allowed + $member->blogAdminRights($blogid) or self::disallow(); + + $blog =& $manager->getBlog($blogid); + if ( !$blog->addTeamMember($memberid, $admin) ) + { + self::error(_ERROR_ALREADYONTEAM); + return; + } + + self::action_manageteam(); + return; + } + + /** + * Admin::action_teamdelete() + * + * @param void + * @return void + */ + static private function action_teamdelete() + { + global $member, $manager; + + $memberid = intRequestVar('memberid'); + $blogid = intRequestVar('blogid'); + + // check if allowed + $member->blogAdminRights($blogid) or self::disallow(); + + $teammem =& $manager->getMember($memberid); + $blog =& $manager->getBlog($blogid); + + self::$skin->parse('teamdelete'); + return; + } + + /** + * Admin::action_teamdeleteconfirm() + * + * @param void + * @return void + */ + static private function action_teamdeleteconfirm() + { + global $member; + + $memberid = intRequestVar('memberid'); + $blogid = intRequestVar('blogid'); + + $error = self::deleteOneTeamMember($blogid, $memberid); + if ( $error ) + { + self::error($error); + return; + } + self::action_manageteam(); + return; + } + + /** + * Admin::deleteOneTeamMember() + * + * @param void + * @return void + */ + static public function deleteOneTeamMember($blogid, $memberid) + { + global $member, $manager; + + $blogid = intval($blogid); + $memberid = intval($memberid); + + // check if allowed + if ( !$member->blogAdminRights($blogid) ) + { + return _ERROR_DISALLOWED; + } + + // check if: - there remains at least one blog admin + // - (there remains at least one team member) + $tmem =& $manager->getMember($memberid); + + + $data = array( + 'member' => &$tmem, + 'blogid' => $blogid + ); + $manager->notify('PreDeleteTeamMember', $data); + + if ( $tmem->isBlogAdmin($blogid) ) + { + /* TODO: why we did double check? */ + // check if there are more blog members left and at least one admin + // (check for at least two admins before deletion) + $query = "SELECT * FROM %s WHERE tblog=%d and tadmin=1;"; + $query = sprintf($query, sql_table('team'), (integer) $blogid); + $r = DB::getResult($query); + if ( $r->rowCount() < 2 ) + { + return _ERROR_ATLEASTONEBLOGADMIN; + } + } + + $query = "DELETE FROM %s WHERE tblog=%d AND tmember=%d;"; + $query = sprintf($query, sql_table('team'), (integer) $blogid, (integer) $memberid); + DB::execute($query); + + $data = array( + 'member' => &$tmem, + 'blogid' => $blogid + ); + $manager->notify('PostDeleteTeamMember', $data); + + return ''; + } + + /** + * Admin::action_teamchangeadmin() + * + * @param void + * @return void + */ + static private function action_teamchangeadmin() + { + global $manager, $member; + + $blogid = intRequestVar('blogid'); + $memberid = intRequestVar('memberid'); + + // check if allowed + $member->blogAdminRights($blogid) or self::disallow(); + + $mem =& $manager->getMember($memberid); + + // don't allow when there is only one admin at this moment + if ( $mem->isBlogAdmin($blogid) ) + { + $query = "SELECT * FROM %s WHERE tblog=%d AND tadmin=1;"; + $query = sprintf($query, sql_table('team'), (integer) $blogid); + $r = DB::getResult($query); + if ( $r->rowCount() == 1 ) + { + self::error(_ERROR_ATLEASTONEBLOGADMIN); + return; + } + } + + if ( $mem->isBlogAdmin($blogid) ) + { + $newval = 0; + } + else + { + $newval = 1; + } + + $query = "UPDATE %s SET tadmin=%d WHERE tblog=%d and tmember=%d;"; + $query = sprintf($query, (integer) $blogid, (integer) $newval, (integer) $blogid, (integer) $memberid); + DB::execute($query); + + // only show manageteam if member did not change its own admin privileges + if ( $member->isBlogAdmin($blogid) ) + { + self::action_manageteam(); + } + else + { + self::action_overview(_MSG_ADMINCHANGED); + } + return; + } + + /** + * Admin::action_blogsettings() + * + * @param void + * @return void + */ + static private function action_blogsettings() + { + global $member, $manager; + + $blogid = intRequestVar('blogid'); + + // check if allowed + $member->blogAdminRights($blogid) or self::disallow(); + + $blog =& $manager->getBlog($blogid); + + self::$extrahead .= "\n"; + + self::$skin->parse('blogsettings'); + return; + } + + /** + * Admin::action_categorynew() + * + * @param void + * @return void + */ + static private function action_categorynew() + { + global $member, $manager; + + $blogid = intRequestVar('blogid'); + + $member->blogAdminRights($blogid) or self::disallow(); + + $cname = postVar('cname'); + $cdesc = postVar('cdesc'); + + if ( !isValidCategoryName($cname) ) + { + self::error(_ERROR_BADCATEGORYNAME); + return; + } + + $query = "SELECT * FROM %s WHERE cname=%s AND cblog=%d;"; + $query = sprintf($query, sql_table('category'), DB::quoteValue($cname), (integer) $blogid); + $res = DB::getResult($query); + if ( $res->rowCount() > 0 ) + { + self::error(_ERROR_DUPCATEGORYNAME); + return; + } + + $blog =& $manager->getBlog($blogid); + $newCatID = $blog->createNewCategory($cname, $cdesc); + + self::action_blogsettings(); + return; + } + + /** + * Admin::action_categoryedit() + * + * @param void + * @return void + */ + static private function action_categoryedit($catid = '', $blogid = '', $desturl = '') + { + global $member, $manager; + + if ( $blogid == '' ) + { + $blogid = intGetVar('blogid'); + } + else + { + $blogid = intval($blogid); + } + if ( $catid == '' ) + { + $catid = intGetVar('catid'); + } + else + { + $catid = intval($catid); + } + + /* TODO: we should consider to use the other way insterad of this */ + $_REQUEST['blogid'] = $blogid; + $_REQUEST['catid'] = $catid; + $_REQUEST['desturl'] = $desturl; + $member->blogAdminRights($blogid) or self::disallow(); + + self::$extrahead .= "\n"; + + self::$skin->parse('categoryedit'); + return; + } + + /** + * Admin::action_categoryupdate() + * + * @param void + * @return void + */ + static private function action_categoryupdate() + { + global $member, $manager; + + $blogid = intPostVar('blogid'); + $catid = intPostVar('catid'); + $cname = postVar('cname'); + $cdesc = postVar('cdesc'); + $desturl = postVar('desturl'); + + $member->blogAdminRights($blogid) or self::disallow(); + + if ( !isValidCategoryName($cname) ) + { + self::error(_ERROR_BADCATEGORYNAME); + return; + } + + $query = "SELECT * FROM %s WHERE cname=%s AND cblog=%d AND not(catid=%d);"; + $query = sprintf($query, sql_table('category'), DB::quoteValue($cname), (integer) $blogid, (integer) $catid); + $res = DB::getResult($query); + if ( $res->rowCount() > 0 ) + { + self::error(_ERROR_DUPCATEGORYNAME); + return; + } + + $query = "UPDATE %s SET cname=%s, cdesc=%s WHERE catid=%d;"; + $query = sprintf($query, sql_table('category'), DB::quoteValue($cname), DB::quoteValue($cdesc), (integer) $catid); + DB::execute($query); + + // store plugin options + $aOptions = requestArray('plugoption'); + NucleusPlugin::apply_plugin_options($aOptions); + $data = array( + 'context' => 'category', + 'catid' => $catid + ); + $manager->notify('PostPluginOptionsUpdate', $data); + + if ( $desturl ) + { + redirect($desturl); + return; + } + + self::action_blogsettings(); + + return; + } + + /** + * Admin::action_categorydelete() + * + * @param void + * @return void + */ + static private function action_categorydelete() + { + global $member, $manager; + + $blogid = intRequestVar('blogid'); + $catid = intRequestVar('catid'); + + $member->blogAdminRights($blogid) or self::disallow(); + + $blog =& $manager->getBlog($blogid); + + // check if the category is valid + if ( !$blog->isValidCategory($catid) ) + { + self::error(_ERROR_NOSUCHCATEGORY); + return; + } + + // don't allow deletion of default category + if ( $blog->getDefaultCategory() == $catid ) + { + self::error(_ERROR_DELETEDEFCATEGORY); + return; + } + + // check if catid is the only category left for blogid + $query = "SELECT catid FROM %s WHERE cblog=%d;"; + $query = sprintf($query, sql_table('category'), $blogid); + $res = DB::getResult($query); + if ( $res->rowCount() == 1 ) + { + self::error(_ERROR_DELETELASTCATEGORY); + return; + } + + self::$skin->parse('categorydelete'); +>>>>>>> skinnable-master + return; + } + + /** +<<<<<<< HEAD + * Admin::action_browseownitems() +======= + * Admin::action_categorydeleteconfirm() +>>>>>>> skinnable-master + * + * @param void + * @return void + */ +<<<<<<< HEAD + public function action_browseownitems() + { + global $member, $manager, $CONF; + + $this->pagehead(); + + echo '

(' . _BACKHOME . ")

\n"; + echo '

' . _ITEMLIST_YOUR . "

\n"; + + // start index + if ( postVar('start') ) + { + $start = intPostVar('start'); + } + else + { + $start = 0; + } + + // amount of items to show + if ( postVar('amount') ) + { + $amount = intPostVar('amount'); + } + else + { + $amount = (integer) $CONF['DefaultListSize']; + if ( $amount < 1 ) + { + $amount = 10; + } + } + + $search = postVar('search'); // search through items + + $query = 'SELECT bshortname, cname, mname, ititle, ibody, idraft, inumber, itime' + . ' FROM '.sql_table('item').', '.sql_table('blog') . ', '.sql_table('member') . ', '.sql_table('category') + . ' WHERE iauthor='. $member->getID() .' and iauthor=mnumber and iblog=bnumber and icat=catid'; + + if ( $search ) + { + $query .= " and ((ititle LIKE " . DB::quoteValue('%'.$search.'%') . ") or (ibody LIKE " . DB::quoteValue('%'.$search.'%') . ") or (imore LIKE " . DB::quoteValue('%'.$search.'%') . "))"; + } + + $query .= ' ORDER BY itime DESC' + . " LIMIT $start, $amount"; + + $template['content'] = 'itemlist'; + $template['now'] = time(); + + $manager->loadClass("ENCAPSULATE"); + $navList = new NavList('browseownitems', $start, $amount, 0, 1000, /*$blogid*/ 0, $search, 0); + $navList->showBatchList('item',$query,'table',$template); + + $this->pagefoot(); +======= + static private function action_categorydeleteconfirm() + { + global $member, $manager; + + $blogid = intRequestVar('blogid'); + $catid = intRequestVar('catid'); + + $member->blogAdminRights($blogid) or self::disallow(); + + $error = self::deleteOneCategory($catid); + if ( $error ) + { + self::error($error); + return; + } + + self::action_blogsettings(); + return; + } + + /** + * Admin::deleteOneCategory() + * Delete a category by its id + * + * @param String $catid category id for deleting + * @return Void + */ + static public function deleteOneCategory($catid) + { + global $manager, $member; + + $catid = intval($catid); + $blogid = getBlogIDFromCatID($catid); + + if ( !$member->blogAdminRights($blogid) ) + { + return ERROR_DISALLOWED; + } + + // get blog + $blog =& $manager->getBlog($blogid); + + // check if the category is valid + if ( !$blog || !$blog->isValidCategory($catid) ) + { + return _ERROR_NOSUCHCATEGORY; + } + + $destcatid = $blog->getDefaultCategory(); + + // don't allow deletion of default category + if ( $blog->getDefaultCategory() == $catid ) + { + return _ERROR_DELETEDEFCATEGORY; + } + + // check if catid is the only category left for blogid + $query = "SELECT catid FROM %s WHERE cblog=%d;"; + $query = sprintf($query, sql_table('category'), (integer) $blogid); + + $res = DB::getResult($query); + if ( $res->rowCount() == 1 ) + { + return _ERROR_DELETELASTCATEGORY; + } + + $data = array('catid' => $catid); + $manager->notify('PreDeleteCategory', $data); + + // change category for all items to the default category + $query = "UPDATE %s SET icat=%d WHERE icat=%d;"; + $query =sprintf($query, sql_table('item'), (integer) $destcatid, (integer) $catid); + DB::execute($query); + + // delete all associated plugin options + NucleusPlugin::delete_option_values('category', (integer) $catid); + + // delete category + $query = "DELETE FROM %s WHERE catid=%d;"; + $query = sprintf($query, sql_table('category'), (integer) $catid); + DB::execute($query); + + $data = array('catid' => $catid); + $manager->notify('PostDeleteCategory', $data); +>>>>>>> skinnable-master + return; + } + + /** +<<<<<<< HEAD + * Admin::action_itemcommentlist() + * + * Show all the comments for a given item + * @param integer $itemid ID for item + * @return void + */ + public function action_itemcommentlist($itemid = '') + { + global $member, $manager, $CONF; + + if ( $itemid == '' ) + { + $itemid = intRequestVar('itemid'); + } + + // only allow if user is allowed to alter item + $member->canAlterItem($itemid) or $this->disallow(); + + $blogid = getBlogIdFromItemId($itemid); + + $this->pagehead(); + + // start index + if ( postVar('start') ) + { + $start = intPostVar('start'); + } + else + { + $start = 0; + } + + // amount of items to show + if ( postVar('amount') ) + { + $amount = intPostVar('amount'); + } + else + { + $amount = (integer) $CONF['DefaultListSize']; + if ( $amount < 1 ) + { + $amount = 10; + } + } + + $search = postVar('search'); + + echo '

(' . _BACKTOOVERVIEW . ")

\n"; + echo '

',_COMMENTS,'

'; + + $query = 'SELECT cbody, cuser, cmail, cemail, mname, ctime, chost, cnumber, cip, citem FROM ' . sql_table('comment') . ' LEFT OUTER JOIN ' . sql_table('member') . ' ON mnumber = cmember WHERE citem = ' . $itemid; + + if ( $search ) + { + $query .= " and cbody LIKE " . DB::quoteValue('%'.$search.'%'); + } + + $query .= ' ORDER BY ctime ASC' + . " LIMIT $start,$amount"; + + $template['content'] = 'commentlist'; + $template['canAddBan'] = $member->blogAdminRights(getBlogIDFromItemID($itemid)); + + $manager->loadClass("ENCAPSULATE"); + $navList = new NavList('itemcommentlist', $start, $amount, 0, 1000, 0, $search, $itemid); + $navList->showBatchList('comment',$query,'table',$template,_NOCOMMENTS); + + $this->pagefoot(); +======= + * Admin::moveOneCategory() + * Delete a category by its id + * + * @param int $catid category id for move + * @param int $destblogid blog id for destination + * @return void + */ + static public function moveOneCategory($catid, $destblogid) + { + global $manager, $member; + $catid = intval($catid); + $destblogid = intval($destblogid); + $blogid = getBlogIDFromCatID($catid); + // mover should have admin rights on both blogs + if (!$member->blogAdminRights($blogid)) { + return _ERROR_DISALLOWED; + } + if (!$member->blogAdminRights($destblogid)) { + return _ERROR_DISALLOWED; + } + // cannot move to self + if ($blogid == $destblogid) { + return _ERROR_MOVETOSELF; + } + // get blogs + $blog =& $manager->getBlog($blogid); + $destblog =& $manager->getBlog($destblogid); + // check if the category is valid + if (!$blog || !$blog->isValidCategory($catid)) { + return _ERROR_NOSUCHCATEGORY; + } + // don't allow default category to be moved + if ($blog->getDefaultCategory() == $catid) { + return _ERROR_MOVEDEFCATEGORY; + } + $data = array( + 'catid' => &$catid, + 'sourceblog' => &$blog, + 'destblog' => &$destblog + ); + $manager->notify('PreMoveCategory', $data); + // update comments table (cblog) + $query = 'SELECT ' + . ' inumber ' + . 'FROM ' + . sql_table('item') . ' ' + . 'WHERE ' + . ' icat = %d'; + $items = sql_query(sprintf($query, $catid)); + while ($oItem = sql_fetch_object($items)) { + $query = 'UPDATE ' + . sql_table('comment') . ' ' + . 'SET ' + . ' cblog = %d' . ' ' + . 'WHERE ' + . ' citem = %d'; + sql_query(sprintf($query, $destblogid, $oItem->inumber)); + } + + // update items (iblog) + $query = 'UPDATE ' + . sql_table('item') . ' ' + . 'SET ' + . ' iblog = %d ' + . 'WHERE ' + . ' icat = %d'; + sql_query(sprintf($query, $destblogid, $catid)); + + // move category + $query = 'UPDATE ' + . sql_table('category') . ' ' + . 'SET ' + . ' cblog = %d' . ' ' + . 'WHERE ' + . ' catid = %d'; + sql_query(sprintf($query, $destblogid, $catid)); + + $data = array( + 'catid' => &$catid, + 'sourceblog' => &$blog, + 'destblog' => $destblog + ); + $manager->notify('PostMoveCategory', $data); + return; + } + + /** + * Admin::action_blogsettingsupdate + * Updating blog settings + * + * @param Void + * @return Void + */ + static private function action_blogsettingsupdate() + { + global $member, $manager; + + $blogid = intRequestVar('blogid'); + + $member->blogAdminRights($blogid) or self::disallow(); + + $blog =& $manager->getBlog($blogid); + + $notify_address = trim(postVar('notify')); + $shortname = trim(postVar('shortname')); + $updatefile = trim(postVar('update')); + + $notifyComment = intPostVar('notifyComment'); + $notifyVote = intPostVar('notifyVote'); + $notifyNewItem = intPostVar('notifyNewItem'); + + if ( $notifyComment == 0 ) + { + $notifyComment = 1; + } + if ( $notifyVote == 0 ) + { + $notifyVote = 1; + } + if ( $notifyNewItem == 0 ) + { + $notifyNewItem = 1; + } + $notifyType = $notifyComment * $notifyVote * $notifyNewItem; + + if ( $notify_address && !NOTIFICATION::address_validation($notify_address) ) + { + self::error(_ERROR_BADNOTIFY); + return; + } + + if ( !isValidShortName($shortname) ) + { + self::error(_ERROR_BADSHORTBLOGNAME); + return; + } + + if ( ($blog->getShortName() != $shortname) && $manager->existsBlog($shortname) ) + { + self::error(_ERROR_DUPSHORTBLOGNAME); + return; + } + // check if update file is writable + if ( $updatefile && !is_writeable($updatefile) ) + { + self::error(_ERROR_UPDATEFILE); + return; + } + + $blog->setName(trim(postVar('name'))); + $blog->setShortName($shortname); + $blog->setNotifyAddress($notify_address); + $blog->setNotifyType($notifyType); + $blog->setMaxComments(postVar('maxcomments')); + $blog->setCommentsEnabled(postVar('comments')); + $blog->setTimeOffset(postVar('timeoffset')); + $blog->setUpdateFile($updatefile); + $blog->setURL(trim(postVar('url'))); + $blog->setDefaultSkin(intPostVar('defskin')); + $blog->setDescription(trim(postVar('desc'))); + $blog->setPublic(postVar('public')); + $blog->setConvertBreaks(intPostVar('convertbreaks')); + $blog->setAllowPastPosting(intPostVar('allowpastposting')); + $blog->setDefaultCategory(intPostVar('defcat')); + $blog->setSearchable(intPostVar('searchable')); + $blog->setEmailRequired(intPostVar('reqemail')); + $blog->writeSettings(); + + // store plugin options + $aOptions = requestArray('plugoption'); + NucleusPlugin::apply_plugin_options($aOptions); + + $data = array( + 'context' => 'blog', + 'blogid' => $blogid, + 'blog' => &$blog + ); + $manager->notify('PostPluginOptionsUpdate', $data); + + self::action_overview(_MSG_SETTINGSCHANGED); +>>>>>>> skinnable-master + return; + } + + /** +<<<<<<< HEAD + * Admin::action_browseowncomments() + * Browse own comments +======= + * Admin::action_deleteblog() +>>>>>>> skinnable-master + * + * @param void + * @return void + */ +<<<<<<< HEAD + public function action_browseowncomments() + { + global $member, $manager, $CONF; + + // start index + if ( postVar('start') ) + { + $start = intPostVar('start'); + } + else + { + $start = 0; + } + + // amount of items to show + if ( postVar('amount') ) + { + $amount = intPostVar('amount'); + } + else + { + $amount = intval($CONF['DefaultListSize']); + if ( $amount < 1 ) + { + $amount = 10; + } + } + + $search = postVar('search'); + + $query = 'SELECT cbody, cuser, cmail, mname, ctime, chost, cnumber, cip, citem FROM '.sql_table('comment').' LEFT OUTER JOIN '.sql_table('member').' ON mnumber=cmember WHERE cmember=' . $member->getID(); + + if ( $search ) + { + $query .= " and cbody LIKE " . DB::quoteValue('%'.$search.'%'); + } + + $query .= ' ORDER BY ctime DESC' + . " LIMIT $start,$amount"; + + $this->pagehead(); + + echo '

(' . _BACKHOME . ")

\n"; + echo '

' . _COMMENTS_YOUR . "

\n"; + + $template['content'] = 'commentlist'; + $template['canAddBan'] = 0; // doesn't make sense to allow banning yourself + + $manager->loadClass("ENCAPSULATE"); + $navList = new NavList('browseowncomments', $start, $amount, 0, 1000, 0, $search, 0); + $navList->showBatchList('comment',$query,'table',$template,_NOCOMMENTS_YOUR); + + $this->pagefoot(); +======= + static private function action_deleteblog() + { + global $member, $CONF, $manager; + + $blogid = intRequestVar('blogid'); + + $member->blogAdminRights($blogid) or self::disallow(); + + // check if blog is default blog + if ( $CONF['DefaultBlog'] == $blogid ) + { + self::error(_ERROR_DELDEFBLOG); + return; + } + + $blog =& $manager->getBlog($blogid); + + self::$skin->parse('deleteblog'); + return; + } + + /** + * Admin::action_deleteblogconfirm() + * Delete Blog + * + * @param Void + * @return Void + */ + static private function action_deleteblogconfirm() + { + global $member, $CONF, $manager; + + $blogid = intRequestVar('blogid'); + + $data = array('blogid' => $blogid); + $manager->notify('PreDeleteBlog', $data); + + $member->blogAdminRights($blogid) or self::disallow(); + + // check if blog is default blog + if ( $CONF['DefaultBlog'] == $blogid ) + { + self::error(_ERROR_DELDEFBLOG); + return; + } + + // delete all comments + $query = 'DELETE FROM ' . sql_table('comment') . ' WHERE cblog='.$blogid; + DB::execute($query); + + // delete all items + $query = 'DELETE FROM ' . sql_table('item') . ' WHERE iblog=' . $blogid; + DB::execute($query); + + // delete all team members + $query = 'DELETE FROM ' . sql_table('team') . ' WHERE tblog=' . $blogid; + DB::execute($query); + + // delete all bans + $query = 'DELETE FROM ' . sql_table('ban') . ' WHERE blogid=' . $blogid; + DB::execute($query); + + // delete all categories + $query = 'DELETE FROM ' . sql_table('category') . ' WHERE cblog=' . $blogid; + DB::execute($query); + + // delete all associated plugin options + NucleusPlugin::delete_option_values('blog', $blogid); + + // delete the blog itself + $query = 'DELETE FROM ' . sql_table('blog') . ' WHERE bnumber=' . $blogid; + DB::execute($query); + + $data = array('blogid' => $blogid); + $manager->notify('PostDeleteBlog', $data); + + self::action_overview(_DELETED_BLOG); +>>>>>>> skinnable-master + return; + } + + /** +<<<<<<< HEAD + * Admin::action_blogcommentlist() + * + * Browse all comments for a weblog + * @param integer $blogid ID for weblog + * @return void + */ + function action_blogcommentlist($blogid = '') + { + global $member, $manager, $CONF; + + if ( $blogid == '' ) + { + $blogid = intRequestVar('blogid'); + } + else + { + $blogid = intval($blogid); + } + + $member->teamRights($blogid) or $member->isAdmin() or $this->disallow(); + + // start index + if ( postVar('start') ) + { + $start = intPostVar('start'); + } + else + { + $start = 0; + } + + // amount of items to show + if ( postVar('amount') ) + { + $amount = intPostVar('amount'); + } + else + { + $amount = intval($CONF['DefaultListSize']); + if ( $amount < 1 ) + { + $amount = 10; + } + } + + $search = postVar('search'); // search through comments + + $query = 'SELECT cbody, cuser, cemail, cmail, mname, ctime, chost, cnumber, cip, citem FROM '.sql_table('comment').' LEFT OUTER JOIN '.sql_table('member').' ON mnumber=cmember WHERE cblog=' . intval($blogid); + + if ( $search != '' ) + { + $query .= " and cbody LIKE " . DB::quoteValue('%'.$search.'%'); + } + + $query .= ' ORDER BY ctime DESC' + . " LIMIT $start,$amount"; + + $blog =& $manager->getBlog($blogid); + + $this->pagehead(); + + echo '

(' . _BACKHOME . ")

\n"; + echo '

', _COMMENTS_BLOG , ' ' , $this->bloglink($blog), '

'; + + $template['content'] = 'commentlist'; + $template['canAddBan'] = $member->blogAdminRights($blogid); + + $manager->loadClass("ENCAPSULATE"); + $navList = new NavList('blogcommentlist', $start, $amount, 0, 1000, $blogid, $search, 0); + $navList->showBatchList('comment',$query,'table',$template, _NOCOMMENTS_BLOG); + + $this->pagefoot(); +======= + * Admin::action_memberdelete() + * + * @param void + * @return void + */ + static private function action_memberdelete() + { + global $member, $manager; + + $memberid = intRequestVar('memberid'); + + ($member->getID() == $memberid) or $member->isAdmin() or self::disallow(); + + $mem =& $manager->getMember($memberid); + + self::$skin->parse('memberdelete'); + return; + } + + /** + * Admin::action_memberdeleteconfirm() + * + * @param void + * @return void + */ + static private function action_memberdeleteconfirm() + { + global $member; + + $memberid = intRequestVar('memberid'); + + ($member->getID() == $memberid) or $member->isAdmin() or self::disallow(); + + $error = self::deleteOneMember($memberid); + if ( $error ) + { + self::error($error); + return; + } + + if ( $member->isAdmin() ) + { + self::action_usermanagement(); + return; + } + else + { + self::action_overview(_DELETED_MEMBER); + return; + } + return; + } + + /** + * Admin::deleteOneMember() + * Delete a member by id + * + * @static + * @params Integer $memberid member id + * @return String null string or error messages + */ + static public function deleteOneMember($memberid) + { + global $manager; + + $memberid = intval($memberid); + $mem =& $manager->getMember($memberid); + + if ( !$mem->canBeDeleted() ) + { + return _ERROR_DELETEMEMBER; + } + + $data = array('member' => &$mem); + $manager->notify('PreDeleteMember', $data); + + /* unlink comments from memberid */ + if ( $memberid ) + { + $query = "UPDATE %s SET cmember=0, cuser=%s WHERE cmember=%d;"; + $query = sprintf($query, sql_table('comment'), DB::quoteValue($mem->getDisplayName()), $memberid); + DB::execute($query); + } + + $query = 'DELETE FROM ' . sql_table('member') . ' WHERE mnumber=' . $memberid; + DB::execute($query); + + $query = 'DELETE FROM ' . sql_table('team') . ' WHERE tmember=' . $memberid; + DB::execute($query); + + $query = 'DELETE FROM ' . sql_table('activation') . ' WHERE vmember=' . $memberid; + DB::execute($query); + + // delete all associated plugin options + NucleusPlugin::delete_option_values('member', $memberid); + + $data = array('member' => &$mem); + $manager->notify('PostDeleteMember', $data); + + return ''; + } + + /** + * Admin::action_createnewlog() + * + * @param void + * @return void + */ + static private function action_createnewlog() + { + global $member, $CONF, $manager; + + // Only Super-Admins can do this + $member->isAdmin() or self::disallow(); + + self::$skin->parse('createnewlog'); + return; + } + + /** + * Admin::action_addnewlog() + * + * @param void + * @return void + */ + static private function action_addnewlog() + { + global $member, $manager, $CONF; + + // Only Super-Admins can do this + $member->isAdmin() or self::disallow(); + + $bname = trim(postVar('name')); + $bshortname = trim(postVar('shortname')); + $btimeoffset = postVar('timeoffset'); + $bdesc = trim(postVar('desc')); + $bdefskin = postVar('defskin'); + + if ( !isValidShortName($bshortname) ) + { + self::error(_ERROR_BADSHORTBLOGNAME); + return; + } + + if ( $manager->existsBlog($bshortname) ) + { + self::error(_ERROR_DUPSHORTBLOGNAME); + return; + } + + $data = array( + 'name' => &$bname, + 'shortname' => &$bshortname, + 'timeoffset' => &$btimeoffset, + 'description' => &$bdesc, + 'defaultskin' => &$bdefskin + ); + $manager->notify('PreAddBlog', $data); + + // add slashes for sql queries + $bname = DB::quoteValue($bname); + $bshortname = DB::quoteValue($bshortname); + $btimeoffset = DB::quoteValue($btimeoffset); + $bdesc = DB::quoteValue($bdesc); + $bdefskin = DB::quoteValue($bdefskin); + + // create blog + $query = "INSERT INTO %s (bname, bshortname, bdesc, btimeoffset, bdefskin) VALUES (%s, %s, %s, %s, %s);"; + $query = sprintf($query, sql_table('blog'), $bname, $bshortname, $bdesc, $btimeoffset, $bdefskin); + DB::execute($query); + + $blogid = DB::getInsertId(); + $blog =& $manager->getBlog($blogid); + + // create new category + $catdefname = (!defined('_EBLOGDEFAULTCATEGORY_NAME') ? 'General' : _EBLOGDEFAULTCATEGORY_NAME); + $catdefdesc = (!defined('_EBLOGDEFAULTCATEGORY_DESC') ? 'Items that do not fit in other categories' : _EBLOGDEFAULTCATEGORY_DESC); + + $query = 'INSERT INTO %s (cblog, cname, cdesc) VALUES (%d, %s, %s)'; + DB::execute(sprintf($query, sql_table('category'), (integer) $blogid, DB::quoteValue($catdefname), DB::quoteValue($catdefdesc))); + $catid = DB::getInsertId(); + + // set as default category + $blog->setDefaultCategory($catid); + $blog->writeSettings(); + + // create team member + $query = "INSERT INTO %s (tmember, tblog, tadmin) VALUES (%d, %d, 1);"; + $query = sprintf($query, sql_table('team'), (integer) $member->getID(), (integer) $blogid); + DB::execute($query); + + $itemdeftitle = (defined('_EBLOG_FIRSTITEM_TITLE') ? _EBLOG_FIRSTITEM_TITLE : 'First Item'); + $itemdefbody = (defined('_EBLOG_FIRSTITEM_BODY') ? _EBLOG_FIRSTITEM_BODY : 'This is the first item in your weblog. Feel free to delete it.'); + + $blog->additem( + $blog->getDefaultCategory(), + $itemdeftitle,$itemdefbody, + '', + $blogid, + $member->getID(), + $blog->getCorrectTime(), + 0, + 0, + 0 + ); + + $data = array('blog' => &$blog); + $manager->notify('PostAddBlog', $data); + + $data = array( + 'blog' => &$blog, + 'name' => _EBLOGDEFAULTCATEGORY_NAME, + 'description' => _EBLOGDEFAULTCATEGORY_DESC, + 'catid' => $catid + ); + $manager->notify('PostAddCategory', $data); + + /* TODO: we should consider to use the other way insterad of this */ + $_REQUEST['blogid'] = $blogid; + $_REQUEST['catid'] = $catid; + self::$skin->parse('addnewlog'); +>>>>>>> skinnable-master + return; + } + + /** +<<<<<<< HEAD + * Admin::action_createitem() + * Provide a page to item a new item to the given blog +======= + * Admin::action_addnewlog2() +>>>>>>> skinnable-master + * + * @param void + * @return void + */ +<<<<<<< HEAD + public function action_createitem() + { + global $member, $manager; + + $blogid = intRequestVar('blogid'); + + // check if allowed + $member->teamRights($blogid) or $this->disallow(); + + $memberid = $member->getID(); + + $blog =& $manager->getBlog($blogid); + + // generate the add-item form + $handler = new PageFactory($blog); + + $contents = $handler->getTemplateFor('admin', 'add'); + $manager->notify('PreAddItemForm', array('contents' => &$contents, 'blog' => &$blog)); + + $parser = new Parser($handler); + + $this->pagehead(); + $parser->parse($contents); + $this->pagefoot(); + +======= + static private function action_addnewlog2() + { + global $member, $manager; + $blogid = intRequestVar('blogid'); + + $member->blogAdminRights($blogid) or self::disallow(); + + $burl = requestVar('url'); + + $blog =& $manager->getBlog($blogid); + $blog->setURL(trim($burl)); + $blog->writeSettings(); + + self::action_overview(_MSG_NEWBLOG); + return; + } + + /** + * Admin::action_skinieoverview() + * + * @param void + * @return void + */ + static private function action_skinieoverview() + { + global $member, $DIR_LIBS, $manager; + + $member->isAdmin() or self::disallow(); + + include_once($DIR_LIBS . 'skinie.php'); + + self::$skin->parse('skinieoverview'); +>>>>>>> skinnable-master + return; + } + + /** +<<<<<<< HEAD + * Admin::action_itemedit() +======= + * Admin::action_skinieimport() +>>>>>>> skinnable-master + * + * @param void + * @return void + */ +<<<<<<< HEAD + public function action_itemedit() + { + global $member, $manager; + + $itemid = intRequestVar('itemid'); + + // only allow if user is allowed to alter item + $member->canAlterItem($itemid) or $this->disallow(); + + $variables =& $manager->getItem($itemid, 1, 1); + $blog =& $manager->getBlog(getBlogIDFromItemID($itemid)); + + $manager->notify('PrepareItemForEdit', array('item' => &$variables)); + + if ( $blog->convertBreaks() ) + { + $variables['body'] = removeBreaks($variables['body']); + $variables['more'] = removeBreaks($variables['more']); + } + + // form to edit blog items + $handler = new PageFactory($blog); + $handler->setVariables($variables); + + $content = $handler->getTemplateFor('admin', 'edit'); + + $parser = new Parser($handler); + + $this->pagehead(); + $parser->parse($content); + $this->pagefoot(); + return; + } + + /** + * @todo document this + */ + function action_itemupdate() { + global $member, $manager, $CONF; + + $itemid = intRequestVar('itemid'); + $catid = postVar('catid'); + + // only allow if user is allowed to alter item + $member->canUpdateItem($itemid, $catid) or $this->disallow(); + + $actiontype = postVar('actiontype'); + + // delete actions are handled by itemdelete (which has confirmation) + if ($actiontype == 'delete') { + $this->action_itemdelete(); + return; + } + + $body = postVar('body'); + $title = postVar('title'); + $more = postVar('more'); + $closed = intPostVar('closed'); + $draftid = intPostVar('draftid'); + + // default action = add now + if (!$actiontype) + $actiontype='addnow'; + + // create new category if needed + if ( i18n::strpos($catid,'newcat') === 0 ) { + // get blogid + list($blogid) = sscanf($catid,"newcat-%d"); + + // create + $blog =& $manager->getBlog($blogid); + $catid = $blog->createNewCategory(); + + // show error when sth goes wrong + if (!$catid) + $this->doError(_ERROR_CATCREATEFAIL); + } + + /* + set some variables based on actiontype + + actiontypes: + draft items -> addnow, addfuture, adddraft, delete + non-draft items -> edit, changedate, delete + + variables set: + $timestamp: set to a nonzero value for future dates or date changes + $wasdraft: set to 1 when the item used to be a draft item + $publish: set to 1 when the edited item is not a draft + */ + $blogid = getBlogIDFromItemID($itemid); + $blog =& $manager->getBlog($blogid); + + $wasdrafts = array('adddraft', 'addfuture', 'addnow'); + $wasdraft = in_array($actiontype, $wasdrafts) ? 1 : 0; + $publish = ($actiontype != 'adddraft' && $actiontype != 'backtodrafts') ? 1 : 0; + if ($actiontype == 'addfuture' || $actiontype == 'changedate') { + $timestamp = mktime(intPostVar('hour'), intPostVar('minutes'), 0, intPostVar('month'), intPostVar('day'), intPostVar('year')); + } else { + $timestamp =0; + } + + // edit the item for real + Item::update($itemid, $catid, $title, $body, $more, $closed, $wasdraft, $publish, $timestamp); + + $this->updateFuturePosted($blogid); + + if ($draftid > 0) { + // delete permission is checked inside Item::delete() + Item::delete($draftid); + } + + // show category edit window when we created a new category + // ($catid will then be a new category ID, while postVar('catid') will be 'newcat-x') + if ($catid != intPostVar('catid')) { + $this->action_categoryedit( + $catid, + $blog->getID(), + $CONF['AdminURL'] . 'index.php?action=itemlist&blogid=' . getBlogIDFromItemID($itemid) + ); + } else { + // TODO: set start item correctly for itemlist + $this->action_itemlist(getBlogIDFromItemID($itemid)); + } + } +======= + static private function action_skinieimport() + { + global $member; + + $member->isAdmin() or self::disallow(); + + $skinFileRaw = postVar('skinfile'); + $mode = postVar('mode'); + + $error = self::skinieimport($mode, $skinFileRaw); + if ( $error ) + { + self::error($error); + return; + } + + self::$skin->parse('skinieimport'); + return; + } + + /** + * Admin::action_skiniedoimport() + * + * @param void + * @return void + */ + static private function action_skiniedoimport() + { + global $member, $DIR_LIBS, $DIR_SKINS; + + $member->isAdmin() or self::disallow(); + + // load skinie class + include_once($DIR_LIBS . 'skinie.php'); + + $mode = postVar('mode'); + $skinFileRaw = postVar('skinfile'); + $allowOverwrite = intPostVar('overwrite'); + + $error = self::skiniedoimport($mode, $skinFileRaw, $allowOverwrite); + if ( $error ) + { + self::error($msg); + return; + } + + self::$skin->parse('skiniedoimport'); + return; + } + + /** + * Admin::action_skinieexport() + * + * @param void + * @return void + */ + static private function action_skinieexport() + { + global $member; + + $member->isAdmin() or self::disallow(); + + $aSkins = requestIntArray('skin'); + $aTemplates = requestIntArray('template'); + $info = postVar('info'); + + self::skinieexport($aSkins, $aTemplates, $info); + + return; + } + + /** + * Admin::action_templateoverview() + * + * @param void + * @return void + */ + static private function action_templateoverview() + { + global $member, $manager; + + $member->isAdmin() or self::disallow(); + + self::$skin->parse('templateoverview'); + return; + } + + /** + * Admin::action_templateedit() + * + * @param string $msg message for pageheader + * @return void + */ + static private function action_templateedit($msg = '') + { + global $member, $manager; + if ( $msg ) + { + self::$headMess = $msg; + } + + $templateid = intRequestVar('templateid'); + + $member->isAdmin() or self::disallow(); + + self::$extrahead .= "\n"; + self::$extrahead .= "\n"; + + self::$skin->parse('templateedit'); + return; + } + + /** + * Admin::action_templateupdate() + * + * @param void + * @return void + */ + static private function action_templateupdate() + { + global $member,$manager; + + $templateid = intRequestVar('templateid'); + + $member->isAdmin() or self::disallow(); + + $name = postVar('tname'); + $desc = postVar('tdesc'); + + if ( !isValidTemplateName($name) ) + { + self::error(_ERROR_BADTEMPLATENAME); + return; + } + + if ( (Template::getNameFromId($templateid) != $name) && Template::exists($name) ) + { + self::error(_ERROR_DUPTEMPLATENAME); + return; + } + + // 1. Remove all template parts + $query = "DELETE FROM %s WHERE tdesc=%d;"; + $query = sprintf($query, sql_table('template'), (integer) $templateid); + DB::execute($query); + + // 2. Update description + $query = "UPDATE %s SET tdname=%s, tddesc=%s WHERE tdnumber=%d;"; + $query = sprintf($query, sql_table('template_desc'), DB::quoteValue($name), DB::quoteValue($desc), (integer) $templateid); + DB::execute($query); + + // 3. Add non-empty template parts + self::addToTemplate($templateid, 'ITEM_HEADER', postVar('ITEM_HEADER')); + self::addToTemplate($templateid, 'ITEM', postVar('ITEM')); + self::addToTemplate($templateid, 'ITEM_FOOTER', postVar('ITEM_FOOTER')); + self::addToTemplate($templateid, 'MORELINK', postVar('MORELINK')); + self::addToTemplate($templateid, 'EDITLINK', postVar('EDITLINK')); + self::addToTemplate($templateid, 'NEW', postVar('NEW')); + self::addToTemplate($templateid, 'COMMENTS_HEADER', postVar('COMMENTS_HEADER')); + self::addToTemplate($templateid, 'COMMENTS_BODY', postVar('COMMENTS_BODY')); + self::addToTemplate($templateid, 'COMMENTS_FOOTER', postVar('COMMENTS_FOOTER')); + self::addToTemplate($templateid, 'COMMENTS_CONTINUED', postVar('COMMENTS_CONTINUED')); + self::addToTemplate($templateid, 'COMMENTS_TOOMUCH', postVar('COMMENTS_TOOMUCH')); + self::addToTemplate($templateid, 'COMMENTS_AUTH', postVar('COMMENTS_AUTH')); + self::addToTemplate($templateid, 'COMMENTS_ONE', postVar('COMMENTS_ONE')); + self::addToTemplate($templateid, 'COMMENTS_MANY', postVar('COMMENTS_MANY')); + self::addToTemplate($templateid, 'COMMENTS_NONE', postVar('COMMENTS_NONE')); + self::addToTemplate($templateid, 'ARCHIVELIST_HEADER', postVar('ARCHIVELIST_HEADER')); + self::addToTemplate($templateid, 'ARCHIVELIST_LISTITEM', postVar('ARCHIVELIST_LISTITEM')); + self::addToTemplate($templateid, 'ARCHIVELIST_FOOTER', postVar('ARCHIVELIST_FOOTER')); + self::addToTemplate($templateid, 'BLOGLIST_HEADER', postVar('BLOGLIST_HEADER')); + self::addToTemplate($templateid, 'BLOGLIST_LISTITEM', postVar('BLOGLIST_LISTITEM')); + self::addToTemplate($templateid, 'BLOGLIST_FOOTER', postVar('BLOGLIST_FOOTER')); + self::addToTemplate($templateid, 'CATLIST_HEADER', postVar('CATLIST_HEADER')); + self::addToTemplate($templateid, 'CATLIST_LISTITEM', postVar('CATLIST_LISTITEM')); + self::addToTemplate($templateid, 'CATLIST_FOOTER', postVar('CATLIST_FOOTER')); + self::addToTemplate($templateid, 'DATE_HEADER', postVar('DATE_HEADER')); + self::addToTemplate($templateid, 'DATE_FOOTER', postVar('DATE_FOOTER')); + self::addToTemplate($templateid, 'FORMAT_DATE', postVar('FORMAT_DATE')); + self::addToTemplate($templateid, 'FORMAT_TIME', postVar('FORMAT_TIME')); + self::addToTemplate($templateid, 'SEARCH_HIGHLIGHT', postVar('SEARCH_HIGHLIGHT')); + self::addToTemplate($templateid, 'SEARCH_NOTHINGFOUND', postVar('SEARCH_NOTHINGFOUND')); + self::addToTemplate($templateid, 'POPUP_CODE', postVar('POPUP_CODE')); + self::addToTemplate($templateid, 'MEDIA_CODE', postVar('MEDIA_CODE')); + self::addToTemplate($templateid, 'IMAGE_CODE', postVar('IMAGE_CODE')); + + $data = array('fields' => array()); + $manager->notify('TemplateExtraFields', $data); + foreach ( $data['fields'] as $pfkey=>$pfvalue ) + { + foreach ( $pfvalue as $pffield => $pfdesc ) + { + self::addToTemplate($templateid, $pffield, postVar($pffield)); + } + } + + // jump back to template edit + self::action_templateedit(_TEMPLATE_UPDATED); + return; + } + + /** + * Admin::addToTemplate() + * + * @param Integer $id ID for template + * @param String $partname parts name + * @param String $content template contents + * @return Integer record index + * + */ + static private function addToTemplate($id, $partname, $content) + { + // don't add empty parts: + if ( !trim($content) ) + { + return -1; + } + + $query = "INSERT INTO %s (tdesc, tpartname, tcontent) VALUES (%d, %s, %s);"; + $query = sprintf($query, sql_table('template'), (integer) $id, DB::quoteValue($partname), DB::quoteValue($content)); + if ( DB::execute($query) === FALSE ) + { + $err = DB::getError(); + exit(_ADMIN_SQLDIE_QUERYERROR . $err[2]); + } + return DB::getInsertId(); + } + + /** + * Admin::action_templatedelete() + * + * @param void + * @return void + */ + static private function action_templatedelete() + { + global $member, $manager; + + $member->isAdmin() or self::disallow(); + + $templateid = intRequestVar('templateid'); + // TODO: check if template can be deleted + + self::$skin->parse('templatedelete'); + return; + } +>>>>>>> skinnable-master + + /** + * Admin::action_templatedeleteconfirm() + * + * @param void + * @return void + */ + static private function action_templatedeleteconfirm() + { + global $member, $manager; + + $templateid = intRequestVar('templateid'); + + $member->isAdmin() or self::disallow(); + + $data = array('templateid' => $templateid); + $manager->notify('PreDeleteTemplate', $data); + + // 1. delete description + DB::execute('DELETE FROM ' . sql_table('template_desc') . ' WHERE tdnumber=' . $templateid); + + // 2. delete parts + DB::execute('DELETE FROM ' . sql_table('template') . ' WHERE tdesc=' . $templateid); + + + $data = array('templateid' => $templateid); + $manager->notify('PostDeleteTemplate', $data); + + self::action_templateoverview(); + return; + } + + /** + * Admin::action_templatenew() + * + * @param void + * @return void + */ + static private function action_templatenew() + { + global $member; + + $member->isAdmin() or self::disallow(); + +<<<<<<< HEAD + $query = "SELECT * FROM %s WHERE iblog=%d AND iposted=0 AND itime>%s"; + $query = sprintf($query, sql_table('item'), (integer) $blogid, DB::formatDateTime($currenttime)); + $result = DB::getResult($query); + + if ( $result->rowCount() > 0 ) +======= + $name = postVar('name'); + $desc = postVar('desc'); + + if ( !isValidTemplateName($name) ) +>>>>>>> skinnable-master + { + self::error(_ERROR_BADTEMPLATENAME); + return; + } + + if ( Template::exists($name) ) + { + self::error(_ERROR_DUPTEMPLATENAME); + return; + } + + $newTemplateId = Template::createNew($name, $desc); + + self::action_templateoverview(); + return; + } +<<<<<<< HEAD + + /** + * @todo document this + */ + function action_itemmove() { + global $member, $manager; + + $itemid = intRequestVar('itemid'); + + // only allow if user is allowed to alter item + $member->canAlterItem($itemid) or $this->disallow(); + + $item =& $manager->getItem($itemid,1,1); + + $this->pagehead(); + ?> +

+
+ + + + addTicketHidden(); + $this->selectBlogCategory('catid',$item['catid'],10,1); + ?> + + +
+ pagefoot(); + } + + /** + * @todo document this + */ + function action_itemmoveto() { + global $member, $manager; + + $itemid = intRequestVar('itemid'); + $catid = requestVar('catid'); + + // create new category if needed + if ( i18n::strpos($catid,'newcat') === 0 ) { + // get blogid + list($blogid) = sscanf($catid,'newcat-%d'); + + // create + $blog =& $manager->getBlog($blogid); + $catid = $blog->createNewCategory(); + + // show error when sth goes wrong + if (!$catid) + $this->doError(_ERROR_CATCREATEFAIL); + } + + // only allow if user is allowed to alter item + $member->canUpdateItem($itemid, $catid) or $this->disallow(); + + $old_blogid = getBlogIDFromItemId($itemid); + + Item::move($itemid, $catid); + + // set the futurePosted flag on the blog + $this->updateFuturePosted(getBlogIDFromItemId($itemid)); + + // reset the futurePosted in case the item is moved from one blog to another + $this->updateFuturePosted($old_blogid); + + if ($catid != intRequestVar('catid')) + $this->action_categoryedit($catid, $blog->getID()); + else + $this->action_itemlist(getBlogIDFromCatID($catid)); + } + + /** + * Moves one item to a given category (category existance should be checked by caller) + * errors are returned + * @param int $itemid + * @param int $destCatid category ID to which the item will be moved + */ + function moveOneItem($itemid, $destCatid) { + global $member; + + // only allow if user is allowed to move item + if (!$member->canUpdateItem($itemid, $destCatid)) + return _ERROR_DISALLOWED; + + Item::move($itemid, $destCatid); + } + + /** + * Adds a item to the chosen blog + */ + function action_additem() { + global $manager, $CONF; + + $manager->loadClass('ITEM'); + + $result = Item::createFromRequest(); + + if ($result['status'] == 'error') + $this->error($result['message']); + + $blogid = getBlogIDFromItemID($result['itemid']); + $blog =& $manager->getBlog($blogid); + $btimestamp = $blog->getCorrectTime(); + $item = $manager->getItem(intval($result['itemid']), 1, 1); + + if ($result['status'] == 'newcategory') { + $distURI = $manager->addTicketToUrl($CONF['AdminURL'] . 'index.php?action=itemList&blogid=' . intval($blogid)); + $this->action_categoryedit($result['catid'], $blogid, $distURI); + } else { + $methodName = 'action_itemList'; + call_user_func(array(&$this, $methodName), $blogid); + } + } + + /** + * Allows to edit previously made comments + **/ + function action_commentedit() { + + global $member, $manager; + + $commentid = intRequestVar('commentid'); + + $member->canAlterComment($commentid) or $this->disallow(); + + $comment = Comment::getComment($commentid); + + $manager->notify('PrepareCommentForEdit', array('comment' => &$comment) ); + + // change
to \n + $comment['body'] = str_replace('
', '', $comment['body']); + + // replaced eregi_replace() below with preg_replace(). ereg* functions are deprecated in PHP 5.3.0 + /* original eregi_replace: eregi_replace("[^<]*", "\\1", $comment['body']) */ + + $comment['body'] = preg_replace("#[^<]*#i", "\\1", $comment['body']); + + $this->pagehead(); + + ?> +

+ +
+ + + addTicketHidden(); ?> + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ +
+ pagefoot(); + } + + /** + * @todo document this + */ + function action_commentupdate() { + global $member, $manager; + + $commentid = intRequestVar('commentid'); + + $member->canAlterComment($commentid) or $this->disallow(); + + $url = postVar('url'); + $email = postVar('email'); + $body = postVar('body'); + + # replaced eregi() below with preg_match(). ereg* functions are deprecated in PHP 5.3.0 + # original eregi: eregi("[a-zA-Z0-9|\.,;:!\?=\/\\]{90,90}", $body) != FALSE + # important note that '\' must be matched with '\\\\' in preg* expressions + + // intercept words that are too long + if (preg_match('#[a-zA-Z0-9|\.,;:!\?=\/\\\\]{90,90}#', $body) != FALSE) +======= + + /** + * Admin::action_templateclone() + * + * @param void + * @return void + */ + static private function action_templateclone() + { + global $member; + + $templateid = intRequestVar('templateid'); + + $member->isAdmin() or self::disallow(); + + // 1. read old template + $name = Template::getNameFromId($templateid); + $desc = Template::getDesc($templateid); + + // 2. create desc thing + $name = "cloned" . $name; + + // if a template with that name already exists: + if ( Template::exists($name) ) +>>>>>>> skinnable-master + { + $i = 1; + while (Template::exists($name . $i)) + { + $i++; + } + $name .= $i; + } + + $newid = Template::createNew($name, $desc); + + // 3. create clone + // go through parts of old template and add them to the new one + $query = "SELECT tpartname, tcontent FROM %s WHERE tdesc=%d;"; + $query = sprintf($query, sql_table('template'), (integer) $templateid); + + $res = DB::getResult($query); + foreach ( $res as $row) + { + self::addToTemplate($newid, $row['tpartname'], $row['tcontent']); + } + + self::action_templateoverview(); + return; + } + + /** + * Admin::action_admintemplateoverview() + * + * @param void + * @return void + */ + static private function action_admintemplateoverview() + { + global $member; + $member->isAdmin() or self::disallow(); + self::$skin->parse('admntemplateoverview'); + return; + } + + /** + * Admin::action_admintemplateedit() + * + * @param string $msg message for pageheader + * @return void + */ + static private function action_admintemplateedit($msg = '') + { + global $member, $manager; + if ( $msg ) + { + self::$headMess = $msg; + } +<<<<<<< HEAD + + // prepare body + $body = Comment::prepareBody($body); + + // call plugins + $manager->notify('PreUpdateComment',array('body' => &$body)); + + $query = 'UPDATE ' . sql_table('comment') + . ' SET cmail = ' . DB::quoteValue($url) . ', cemail = ' . DB::quoteValue($email) . ', cbody = ' . DB::quoteValue($body) + . ' WHERE cnumber = ' . $commentid; + DB::execute($query); + + // get itemid + $res = DB::getValue('SELECT citem FROM '.sql_table('comment').' WHERE cnumber=' . $commentid); + $itemid = $res; + + if ($member->canAlterItem($itemid)) + $this->action_itemcommentlist($itemid); + else + $this->action_browseowncomments(); + + } +======= + $member->isAdmin() or self::disallow(); + + self::$extrahead .= "\n"; + self::$extrahead .= '' . "\n"; + + self::$skin->parse('admintemplateedit'); + return; + } +>>>>>>> skinnable-master + + /** + * Admin::action_admintemplateupdate() + * + * @param void + * @return void + */ + static private function action_admintemplateupdate() + { + global $member, $manager; + $templateid = intRequestVar('templateid'); + $member->isAdmin() or self::disallow(); + $name = postVar('tname'); + $desc = postVar('tdesc'); + + if ( !isValidTemplateName($name) ) + { + self::error(_ERROR_BADTEMPLATENAME); + return; + } + + if ( (Template::getNameFromId($templateid) != $name) && Template::exists($name) ) + { + self::error(_ERROR_DUPTEMPLATENAME); + return; + } + + // 1. Remove all template parts + $query = "DELETE FROM %s WHERE tdesc=%d;"; + $query = sprintf($query, sql_table('template'), (integer) $templateid); + DB::execute($query); + + // 2. Update description + $query = "UPDATE %s SET tdname=%s, tddesc=%s WHERE tdnumber=%d;"; + $query = sprintf($query, sql_table('template_desc'), DB::quoteValue($name), DB::quoteValue($desc), (integer) $templateid); + DB::execute($query); + + // 3. Add non-empty template parts + self::addToTemplate($templateid, 'NORMALSKINLIST_HEAD', postVar('NORMALSKINLIST_HEAD')); + self::addToTemplate($templateid, 'NORMALSKINLIST_BODY', postVar('NORMALSKINLIST_BODY')); + self::addToTemplate($templateid, 'NORMALSKINLIST_FOOT', postVar('NORMALSKINLIST_FOOT')); + self::addToTemplate($templateid, 'ADMIN_CUSTOMHELPLINK_ICON', postVar('ADMIN_CUSTOMHELPLINK_ICON')); + self::addToTemplate($templateid, 'ADMIN_CUSTOMHELPLINK_ANCHOR', postVar('ADMIN_CUSTOMHELPLINK_ANCHOR')); + self::addToTemplate($templateid, 'ADMIN_BLOGLINK', postVar('ADMIN_BLOGLINK')); + self::addToTemplate($templateid, 'ADMIN_BATCHLIST', postVar('ADMIN_BATCHLIST')); + self::addToTemplate($templateid, 'ACTIVATE_FORGOT_TITLE', postVar('ACTIVATE_FORGOT_TITLE')); + self::addToTemplate($templateid, 'ACTIVATE_FORGOT_TEXT', postVar('ACTIVATE_FORGOT_TEXT')); + self::addToTemplate($templateid, 'ACTIVATE_REGISTER_TITLE', postVar('ACTIVATE_REGISTER_TITLE')); + self::addToTemplate($templateid, 'ACTIVATE_REGISTER_TEXT', postVar('ACTIVATE_REGISTER_TEXT')); + self::addToTemplate($templateid, 'ACTIVATE_CHANGE_TITLE', postVar('ACTIVATE_CHANGE_TITLE')); + self::addToTemplate($templateid, 'ACTIVATE_CHANGE_TEXT', postVar('ACTIVATE_CHANGE_TEXT')); + self::addToTemplate($templateid, 'TEMPLATE_EDIT_EXPLUGNAME', postVar('TEMPLATE_EDIT_EXPLUGNAME')); + self::addToTemplate($templateid, 'TEMPLATE_EDIT_ROW_HEAD', postVar('TEMPLATE_EDIT_ROW_HEAD')); + self::addToTemplate($templateid, 'TEMPLATE_EDIT_ROW_TAIL', postVar('TEMPLATE_EDIT_ROW_TAIL')); + self::addToTemplate($templateid, 'SPECIALSKINLIST_HEAD', postVar('SPECIALSKINLIST_HEAD')); + self::addToTemplate($templateid, 'SPECIALSKINLIST_BODY', postVar('SPECIALSKINLIST_BODY')); + self::addToTemplate($templateid, 'SPECIALSKINLIST_FOOT', postVar('SPECIALSKINLIST_FOOT')); + self::addToTemplate($templateid, 'SYSTEMINFO_GDSETTINGS', postVar('SYSTEMINFO_GDSETTINGS')); + self::addToTemplate($templateid, 'BANLIST_DELETED_LIST', postVar('BANLIST_DELETED_LIST')); + self::addToTemplate($templateid, 'INSERT_PLUGOPTION_TITLE', postVar('INSERT_PLUGOPTION_TITLE')); + self::addToTemplate($templateid, 'INSERT_PLUGOPTION_BODY', postVar('INSERT_PLUGOPTION_BODY')); + self::addToTemplate($templateid, 'INPUTYESNO_TEMPLATE_ADMIN', postVar('INPUTYESNO_TEMPLATE_ADMIN')); + self::addToTemplate($templateid, 'INPUTYESNO_TEMPLATE_NORMAL', postVar('INPUTYESNO_TEMPLATE_NORMAL')); + self::addToTemplate($templateid, 'ADMIN_SPECIALSKINLIST_HEAD', postVar('ADMIN_SPECIALSKINLIST_HEAD')); + self::addToTemplate($templateid, 'ADMIN_SPECIALSKINLIST_BODY', postVar('ADMIN_SPECIALSKINLIST_BODY')); + self::addToTemplate($templateid, 'ADMIN_SPECIALSKINLIST_FOOT', postVar('ADMIN_SPECIALSKINLIST_FOOT')); + self::addToTemplate($templateid, 'SKINIE_EXPORT_LIST', postVar('SKINIE_EXPORT_LIST')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_SELECT_HEAD', postVar('SHOWLIST_LISTPLUG_SELECT_HEAD')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_SELECT_BODY', postVar('SHOWLIST_LISTPLUG_SELECT_BODY')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_SELECT_FOOT', postVar('SHOWLIST_LISTPLUG_SELECT_FOOT')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_HEAD', postVar('SHOWLIST_LISTPLUG_TABLE_HEAD')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_BODY', postVar('SHOWLIST_LISTPLUG_TABLE_BODY')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_FOOT', postVar('SHOWLIST_LISTPLUG_TABLE_FOOT')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_MEMBLIST_HEAD', postVar('SHOWLIST_LISTPLUG_TABLE_MEMBLIST_HEAD')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_MEMBLIST_BODY', postVar('SHOWLIST_LISTPLUG_TABLE_MEMBLIST_BODY')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_MEMBLIST_FOOT', postVar('SHOWLIST_LISTPLUG_TABLE_MEMBLIST_FOOT')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_TEAMLIST_HEAD', postVar('SHOWLIST_LISTPLUG_TABLE_TEAMLIST_HEAD')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_TEAMLIST_BODY', postVar('SHOWLIST_LISTPLUG_TABLE_TEAMLIST_BODY')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_TEAMLIST_FOOT', postVar('SHOWLIST_LISTPLUG_TABLE_TEAMLIST_FOOT')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLUGLIST_HEAD', postVar('SHOWLIST_LISTPLUG_TABLE_PLUGLIST_HEAD')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLUGLIST_BODY', postVar('SHOWLIST_LISTPLUG_TABLE_PLUGLIST_BODY')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLUGLIST_GURL', postVar('SHOWLIST_LISTPLUG_TABLE_PLUGLIST_GURL')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLUGEVENTLIST', postVar('SHOWLIST_LISTPLUG_TABLE_PLUGEVENTLIST')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLUGNEDUPDATE', postVar('SHOWLIST_LISTPLUG_TABLE_PLUGNEDUPDATE')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLUGIN_DEPEND', postVar('SHOWLIST_LISTPLUG_TABLE_PLUGIN_DEPEND')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLUGIN_DEPREQ', postVar('SHOWLIST_LISTPLUG_TABLE_PLUGIN_DEPREQ')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLUGLISTFALSE', postVar('SHOWLIST_LISTPLUG_TABLE_PLUGLISTFALSE')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLUGLIST_ACTN', postVar('SHOWLIST_LISTPLUG_TABLE_PLUGLIST_ACTN')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLUGLIST_ADMN', postVar('SHOWLIST_LISTPLUG_TABLE_PLUGLIST_ADMN')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLUGLIST_HELP', postVar('SHOWLIST_LISTPLUG_TABLE_PLUGLIST_HELP')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLUGOPTSETURL', postVar('SHOWLIST_LISTPLUG_TABLE_PLUGOPTSETURL')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLUGLIST_FOOT', postVar('SHOWLIST_LISTPLUG_TABLE_PLUGLIST_FOOT')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_POPTLIST_HEAD', postVar('SHOWLIST_LISTPLUG_TABLE_POPTLIST_HEAD')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_POPTLIST_BODY', postVar('SHOWLIST_LISTPLUG_TABLE_POPTLIST_BODY')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLGOPT_OYESNO', postVar('SHOWLIST_LISTPLUG_TABLE_PLGOPT_OYESNO')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLGOPT_OPWORD', postVar('SHOWLIST_LISTPLUG_TABLE_PLGOPT_OPWORD')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLGOPT_OSELEP', postVar('SHOWLIST_LISTPLUG_TABLE_PLGOPT_OSELEP')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLGOPT_OSELEO', postVar('SHOWLIST_LISTPLUG_TABLE_PLGOPT_OSELEO')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLGOPT_OSELEC', postVar('SHOWLIST_LISTPLUG_TABLE_PLGOPT_OSELEC')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLGOPT_OTAREA', postVar('SHOWLIST_LISTPLUG_TABLE_PLGOPT_OTAREA')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLGOPT_OITEXT', postVar('SHOWLIST_LISTPLUG_TABLE_PLGOPT_OITEXT')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_PLUGOPTN_FOOT', postVar('SHOWLIST_LISTPLUG_TABLE_PLUGOPTN_FOOT')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_POPTLIST_FOOT', postVar('SHOWLIST_LISTPLUG_TABLE_POPTLIST_FOOT')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_ITEMLIST_HEAD', postVar('SHOWLIST_LISTPLUG_TABLE_ITEMLIST_HEAD')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_ITEMLIST_BODY', postVar('SHOWLIST_LISTPLUG_TABLE_ITEMLIST_BODY')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_ITEMLIST_FOOT', postVar('SHOWLIST_LISTPLUG_TABLE_ITEMLIST_FOOT')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_CMNTLIST_HEAD', postVar('SHOWLIST_LISTPLUG_TABLE_CMNTLIST_HEAD')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_CMNTLIST_BODY', postVar('SHOWLIST_LISTPLUG_TABLE_CMNTLIST_BODY')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_CMNTLIST_ABAN', postVar('SHOWLIST_LISTPLUG_TABLE_CMNTLIST_ABAN')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_CMNTLIST_FOOT', postVar('SHOWLIST_LISTPLUG_TABLE_CMNTLIST_FOOT')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_BLOGLIST_HEAD', postVar('SHOWLIST_LISTPLUG_TABLE_BLOGLIST_HEAD')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_BLOGLIST_BODY', postVar('SHOWLIST_LISTPLUG_TABLE_BLOGLIST_BODY')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_BLIST_BD_TADM', postVar('SHOWLIST_LISTPLUG_TABLE_BLIST_BD_TADM')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_BLIST_BD_SADM', postVar('SHOWLIST_LISTPLUG_TABLE_BLIST_BD_SADM')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_BLOGLIST_FOOT', postVar('SHOWLIST_LISTPLUG_TABLE_BLOGLIST_FOOT')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_BLOGSNAM_HEAD', postVar('SHOWLIST_LISTPLUG_TABLE_BLOGSNAM_HEAD')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_BLOGSNAM_BODY', postVar('SHOWLIST_LISTPLUG_TABLE_BLOGSNAM_BODY')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_BLOGSNAM_FOOT', postVar('SHOWLIST_LISTPLUG_TABLE_BLOGSNAM_FOOT')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_SHORTNAM_HEAD', postVar('SHOWLIST_LISTPLUG_TABLE_SHORTNAM_HEAD')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_SHORTNAM_BODY', postVar('SHOWLIST_LISTPLUG_TABLE_SHORTNAM_BODY')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_SHORTNAM_FOOT', postVar('SHOWLIST_LISTPLUG_TABLE_SHORTNAM_FOOT')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_CATELIST_HEAD', postVar('SHOWLIST_LISTPLUG_TABLE_CATELIST_HEAD')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_CATELIST_BODY', postVar('SHOWLIST_LISTPLUG_TABLE_CATELIST_BODY')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_CATELIST_FOOT', postVar('SHOWLIST_LISTPLUG_TABLE_CATELIST_FOOT')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_TPLTLIST_HEAD', postVar('SHOWLIST_LISTPLUG_TABLE_TPLTLIST_HEAD')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_TPLTLIST_BODY', postVar('SHOWLIST_LISTPLUG_TABLE_TPLTLIST_BODY')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_TPLTLIST_FOOT', postVar('SHOWLIST_LISTPLUG_TABLE_TPLTLIST_FOOT')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_SKINLIST_HEAD', postVar('SHOWLIST_LISTPLUG_TABLE_SKINLIST_HEAD')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_SKINLIST_BODY', postVar('SHOWLIST_LISTPLUG_TABLE_SKINLIST_BODY')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_SKINLIST_FOOT', postVar('SHOWLIST_LISTPLUG_TABLE_SKINLIST_FOOT')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_DRFTLIST_HEAD', postVar('SHOWLIST_LISTPLUG_TABLE_DRFTLIST_HEAD')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_DRFTLIST_BODY', postVar('SHOWLIST_LISTPLUG_TABLE_DRFTLIST_BODY')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_DRFTLIST_FOOT', postVar('SHOWLIST_LISTPLUG_TABLE_DRFTLIST_FOOT')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_ACTNLIST_HEAD', postVar('SHOWLIST_LISTPLUG_TABLE_ACTNLIST_HEAD')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_ACTNLIST_BODY', postVar('SHOWLIST_LISTPLUG_TABLE_ACTNLIST_BODY')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_ACTNLIST_FOOT', postVar('SHOWLIST_LISTPLUG_TABLE_ACTNLIST_FOOT')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_IBANLIST_HEAD', postVar('SHOWLIST_LISTPLUG_TABLE_IBANLIST_HEAD')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_IBANLIST_BODY', postVar('SHOWLIST_LISTPLUG_TABLE_IBANLIST_BODY')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_IBANLIST_FOOT', postVar('SHOWLIST_LISTPLUG_TABLE_IBANLIST_FOOT')); + self::addToTemplate($templateid, 'SHOWLIST_LISTPLUG_TABLE_NAVILIST', postVar('SHOWLIST_LISTPLUG_TABLE_NAVILIST')); + self::addToTemplate($templateid, 'PLUGIN_QUICKMENU_TITLE', postVar('PLUGIN_QUICKMENU_TITLE')); + self::addToTemplate($templateid, 'PLUGIN_QUICKMENU_HEAD', postVar('PLUGIN_QUICKMENU_HEAD')); + self::addToTemplate($templateid, 'PLUGIN_QUICKMENU_BODY', postVar('PLUGIN_QUICKMENU_BODY')); + self::addToTemplate($templateid, 'PLUGIN_QUICKMENU_FOOT', postVar('PLUGIN_QUICKMENU_FOOT')); + + $data = array('fields' => array()); + $manager->notify('AdminTemplateExtraFields', $data); + foreach ( $data['fields'] as $pfkey => $pfvalue ) + { + foreach ( $pfvalue as $pffield => $pfdesc ) + { + self::addToTemplate($templateid, $pffield, postVar($pffield)); + } + } + + // jump back to template edit + self::action_admintemplateedit(_TEMPLATE_UPDATED); + return; + } + + /** + * Admin::action_admintemplatedelete() + * + * @param void + * @return void + */ + static private function action_admintemplatedelete() + { + global $member, $manager; + $member->isAdmin() or self::disallow(); + + // TODO: check if template can be deleted + self::$skin->parse('admintemplatedelete'); + return; + } + +<<<<<<< HEAD + /** + * @todo document this + */ + function action_commentdeleteconfirm() { + global $member; + + $commentid = intRequestVar('commentid'); + + // get item id first + $res = DB::getValue('SELECT citem FROM '.sql_table('comment') .' WHERE cnumber=' . $commentid); + $itemid = $res; + + $error = $this->deleteOneComment($commentid); + if ($error) + $this->doError($error); + + if ($member->canAlterItem($itemid)) + $this->action_itemcommentlist($itemid); + else + $this->action_browseowncomments(); + } + + /** + * @todo document this + */ + function deleteOneComment($commentid) { + global $member, $manager; + + $commentid = intval($commentid); + + if (!$member->canAlterComment($commentid)) + return _ERROR_DISALLOWED; + + $manager->notify('PreDeleteComment', array('commentid' => $commentid)); + + // delete the comments associated with the item + $query = 'DELETE FROM '.sql_table('comment').' WHERE cnumber=' . $commentid; + DB::execute($query); + + $manager->notify('PostDeleteComment', array('commentid' => $commentid)); + + return ''; + } + + /** + * Admin::action_usermanagement() + * + * Usermanagement main + * @param void + * @return void + */ + public function action_usermanagement() + { + global $member, $manager; + + // check if allowed + $member->isAdmin() or $this->disallow(); + + $this->pagehead(); + + echo '

(' . _BACKTOMANAGE . ")

\n"; + + echo '

' . _MEMBERS_TITLE . "

\n"; + + echo '

' . _MEMBERS_CURRENT . "

\n"; + + // show list of members with actions + $query = 'SELECT * FROM '.sql_table('member'); + $template['content'] = 'memberlist'; + $template['tabindex'] = 10; + + $manager->loadClass("ENCAPSULATE"); + $batch = new Batch('member'); + $batch->showlist($query,'table',$template); + + echo '

' . _MEMBERS_NEW .'

'; + echo "
\n"; + echo "
\n"; + echo "\n"; + $manager->addTicketHidden(); + + echo '' ."\n"; + echo "\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo '\n"; + echo "\n"; + echo "
' . _MEMBERS_NEW . "
' . _MEMBERS_DISPLAY; + help('shortnames'); + echo '
'; + echo '' . _MEMBERS_DISPLAY_INFO . ''; + echo "
' . _MEMBERS_REALNAME . "
' . _MEMBERS_PWD . "
' . _MEMBERS_REPPWD . "
' . _MEMBERS_EMAIL . "
' . _MEMBERS_URL . "
' . _MEMBERS_SUPERADMIN; + help('superadmin'); + echo "'; + $this->input_yesno('admin',0,10060); + echo "
' . _MEMBERS_CANLOGIN; + help('canlogin'); + echo "'; + $this->input_yesno('canlogin',1,10070); + echo "
' . _MEMBERS_NOTES . "
' . _MEMBERS_NEW . "' . "
\n"; + echo "
\n"; + echo "
\n"; + $this->pagefoot(); + return; + } + + /** + * Edit member settings + */ + function action_memberedit() { + $this->action_editmembersettings(intRequestVar('memberid')); + } + +======= +>>>>>>> skinnable-master + /** + * Admin::action_admintemplatedeleteconfirm() + * + * @param void + * @return void + */ + static private function action_admintemplatedeleteconfirm() + { + global $member, $manager; + + $templateid = intRequestVar('templateid'); + $member->isAdmin() or self::disallow(); + + $data = array('templateid' => $templateid); + $manager->notify('PreDeleteAdminTemplate', $data); + + // 1. delete description + $query = "DELETE FROM %s WHERE tdnumber=%s;"; + $query = sprintf($query, sql_table('template_desc'), (integer) $templateid); + DB::execute($query); + +<<<<<<< HEAD + // show message to go back to member overview (only for admins) + if ($member->isAdmin()) + { + echo '(' ._MEMBERS_BACKTOOVERVIEW. ')'; + } + else + { + echo '(' ._BACKHOME. ')'; + } + echo '

' . _MEMBERS_EDIT . '

'; + + $mem =& $manager->getMember($memberid); + ?> +
+ + + + addTicketHidden() ?> + + + + + + + + + + + isAdmin()) { ?> + + + + + + + + + + + + + isAdmin()) { + ?> + + + + + + + + + + + + + + + + + + + _insertPluginOptions('member',$memberid); + ?> + + + + + +
+
+
+ isAdmin()) { ?> + + getDisplayName()); + } + ?> +
+
+
input_yesno('admin',$mem->isAdmin(),60); ?>
input_yesno('canlogin',$mem->canLogin(),70,1,0,_YES,_NO,$mem->isAdmin()); ?>
+ + + + +
input_yesno('autosave', $mem->getAutosave(), 87); ?>
+ +
+ + ',_PLUGINS_EXTRA,''; + + $manager->notify( + 'MemberSettingsFormExtras', + array( + 'member' => &$mem + ) + ); + $this->pagefoot(); +======= + // 2. delete parts + $query = "DELETE FROM %s WHERE tdesc=%d;"; + $query = sprintf($query, sql_table('template'), (integer) $templateid); + DB::execute($query); + + $data = array('templateid' => $templateid); + $manager->notify('PostDeleteAdminTemplate', $data); + + self::action_admintemplateoverview(); + return; +>>>>>>> skinnable-master + } + + /** + * Admin::action_admintemplatenew() + * + * @param void + * @return void + */ + static private function action_admintemplatenew() + { + global $member; + $member->isAdmin() or self::disallow(); + $name = postVar('name'); + $desc = postVar('desc'); + + if ( !isValidTemplateName($name) ) + { +<<<<<<< HEAD + $url = 'http://' . $url; + } + + $admin = postVar('admin'); + $canlogin = postVar('canlogin'); + $notes = strip_tags(postVar('notes')); + $locale = postVar('locale'); + + $mem =& $manager->getMember($memberid); + + if ($CONF['AllowLoginEdit'] || $member->isAdmin()) { + + if (!isValidDisplayName($name)) + $this->error(_ERROR_BADNAME); + + if (($name != $mem->getDisplayName()) && Member::exists($name)) + $this->error(_ERROR_NICKNAMEINUSE); + + if ($password != $repeatpassword) + $this->error(_ERROR_PASSWORDMISMATCH); + + if ($password && (i18n::strlen($password) < 6)) + $this->error(_ERROR_PASSWORDTOOSHORT); + + if ($password) { + $pwdvalid = true; + $pwderror = ''; + $manager->notify('PrePasswordSet',array('password' => $password, 'errormessage' => &$pwderror, 'valid' => &$pwdvalid)); + if (!$pwdvalid) { + $this->error($pwderror); + } + } +======= + self::error(_ERROR_BADTEMPLATENAME); + return; +>>>>>>> skinnable-master + } + else if ( !preg_match('#^admin/#', $name) ) + { + self::error(_ERROR_BADADMINTEMPLATENAME); + return; + } + else if ( Template::exists($name) ) + { + self::error(_ERROR_DUPTEMPLATENAME); + return; + } +<<<<<<< HEAD + if ( ($locale != '') && (!in_array($locale, i18n::get_available_locale_list())) ) + $this->error(_ERROR_NOSUCHTRANSLATION); + + // check if there will remain at least one site member with both the logon and admin rights + // (check occurs when taking away one of these rights from such a member) + if ( (!$admin && $mem->isAdmin() && $mem->canLogin()) + || (!$canlogin && $mem->isAdmin() && $mem->canLogin()) + ) + { + $r = DB::getResult('SELECT * FROM '.sql_table('member').' WHERE madmin=1 and mcanlogin=1'); + if ($r->rowCount() < 2) + $this->error(_ERROR_ATLEASTONEADMIN); + } + + if ($CONF['AllowLoginEdit'] || $member->isAdmin()) { + $mem->setDisplayName($name); + if ($password) + $mem->setPassword($password); + } + + $oldEmail = $mem->getEmail(); + + $mem->setRealName($realname); + $mem->setEmail($email); + $mem->setURL($url); + $mem->setNotes($notes); + $mem->setLocale($locale); + + + // only allow super-admins to make changes to the admin status + if ($member->isAdmin()) { + $mem->setAdmin($admin); + $mem->setCanLogin($canlogin); + } + + $autosave = postVar ('autosave'); + $mem->setAutosave($autosave); + + $mem->write(); + + // store plugin options + $aOptions = requestArray('plugoption'); + NucleusPlugin::apply_plugin_options($aOptions); + $manager->notify('PostPluginOptionsUpdate',array('context' => 'member', 'memberid' => $memberid, 'member' => &$mem)); + + // if email changed, generate new password + if ($oldEmail != $mem->getEmail()) + { + $mem->sendActivationLink('addresschange', $oldEmail); + // logout member + $mem->newCookieKey(); + + // only log out if the member being edited is the current member. + if ($member->getID() == $memberid) + $member->logout(); + $this->action_login(_MSG_ACTIVATION_SENT, 0); + return; + } + + + if ( ( $mem->getID() == $member->getID() ) + && ( $mem->getDisplayName() != $member->getDisplayName() ) + ) { + $mem->newCookieKey(); + $member->logout(); + $this->action_login(_MSG_LOGINAGAIN, 0); + } else { + $this->action_overview(_MSG_SETTINGSCHANGED); + } + } + +======= + + $newTemplateId = Template::createNew($name, $desc); + self::action_admintemplateoverview(); + return; + } + +>>>>>>> skinnable-master + /** + * Admin::action_admintemplateclone() + * + * @param void + * @return void + */ + static private function action_admintemplateclone() + { + global $member; + $templateid = intRequestVar('templateid'); + $member->isAdmin() or self::disallow(); + + // 1. read old template + $name = Template::getNameFromId($templateid); + $desc = Template::getDesc($templateid); + + // 2. create desc thing + $name = $name . "cloned"; + + // if a template with that name already exists: + if ( Template::exists($name) ) + { + $i = 1; + while ( Template::exists($name . $i) ) + { + $i++; + } + $name .= $i; + } + + $newid = Template::createNew($name, $desc); + + // 3. create clone + // go through parts of old template and add them to the new one + $query = "SELECT tpartname, tcontent FROM %s WHERE tdesc=%d;"; + $query = sprintf($query, sql_table('template'), (integer) $templateid); + + $res = DB::getResult($query); + foreach ( $res as $row ) + { + self::addToTemplate($newid, $row['tpartname'], $row['tcontent']); + } + + self::action_admintemplateoverview(); + return; + } + + /** + * Admin::action_skinoverview() + * + * @param void + * @return void + */ + static private function action_skinoverview() + { + global $member, $manager; + + $member->isAdmin() or self::disallow(); + + self::$skin->parse('skinoverview'); + return; + } + + /** + * Admin::action_skinnew() + * + * @param void + * @return void + */ + static private function action_skinnew() + { + global $member; + + $member->isAdmin() or self::disallow(); + + $name = trim(postVar('name')); + $desc = trim(postVar('desc')); + + if ( !isValidSkinName($name) ) + { + self::error(_ERROR_BADSKINNAME); + return; + } + else if ( SKIN::exists($name) ) + { + self::error(_ERROR_DUPSKINNAME); + return; + } + + SKIN::createNew($name, $desc); + + self::action_skinoverview(); + return; + } +<<<<<<< HEAD + + /** + * Account activation + * + * @author dekarma + */ + function action_activate() { + + $key = getVar('key'); + $this->_showActivationPage($key); + } + + /** + * @todo document this + */ + function _showActivationPage($key, $message = '') + { + global $manager; + + // clean up old activation keys + Member::cleanupActivationTable(); + + // get activation info + $info = Member::getActivationInfo($key); + + if (!$info) + $this->error(_ERROR_ACTIVATE); + + $mem =& $manager->getMember($info['vmember']); + + if (!$mem) + $this->error(_ERROR_ACTIVATE); + + $text = ''; + $title = ''; + $bNeedsPasswordChange = true; + + switch ($info['vtype']) + { + case 'forgot': + $title = _ACTIVATE_FORGOT_TITLE; + $text = _ACTIVATE_FORGOT_TEXT; + break; + case 'register': + $title = _ACTIVATE_REGISTER_TITLE; + $text = _ACTIVATE_REGISTER_TEXT; + break; + case 'addresschange': + $title = _ACTIVATE_CHANGE_TITLE; + $text = _ACTIVATE_CHANGE_TEXT; + $bNeedsPasswordChange = false; + Member::activate($key); + break; + } + + $aVars = array( + 'memberName' => Entity::hsc($mem->getDisplayName()) + ); + $title = Template::fill($title, $aVars); + $text = Template::fill($text, $aVars); + + $this->pagehead(); + + echo '

' , $title, '

'; + echo '

' , $text, '

'; + + if ($message != '') + { + echo '

',$message,'

'; + } + + if ($bNeedsPasswordChange) + { + ?> +
+ + + addTicketHidden() ?> + + + + + + + + + notify('FormExtra', array('type' => 'activation', 'member' => $mem)); + + ?> + + + +
+ + +
+ + pagefoot(); + + } + + /** + * Account activation - set password part + * + * @author dekarma + */ + function action_activatesetpwd() + { + global $manager; + $key = postVar('key'); + + // clean up old activation keys + Member::cleanupActivationTable(); + + // get activation info + $info = Member::getActivationInfo($key); + + if (!$info || ($info['type'] == 'addresschange')) + return $this->_showActivationPage($key, _ERROR_ACTIVATE); + + $mem =& $manager->getMember($info['vmember']); + + if (!$mem) + return $this->_showActivationPage($key, _ERROR_ACTIVATE); + + $password = postVar('password'); + $repeatpassword = postVar('repeatpassword'); + + if ($password != $repeatpassword) + return $this->_showActivationPage($key, _ERROR_PASSWORDMISMATCH); + + if ($password && (i18n::strlen($password) < 6)) + return $this->_showActivationPage($key, _ERROR_PASSWORDTOOSHORT); + + if ($password) { + $pwdvalid = true; + $pwderror = ''; + global $manager; + $manager->notify('PrePasswordSet',array('password' => $password, 'errormessage' => &$pwderror, 'valid' => &$pwdvalid)); + if (!$pwdvalid) { + return $this->_showActivationPage($key,$pwderror); + } + } + + $error = ''; + + $manager->notify('ValidateForm', array('type' => 'activation', 'member' => $mem, 'error' => &$error)); + if ($error != '') + return $this->_showActivationPage($key, $error); + + + // set password + $mem->setPassword($password); + $mem->write(); + + // do the activation + Member::activate($key); + + $this->pagehead(); + echo '

',_ACTIVATE_SUCCESS_TITLE,'

'; + echo '

',_ACTIVATE_SUCCESS_TEXT,'

'; + $this->pagefoot(); + } + + /** + * Admin::action_manageteam() + * + * Manage team + * @param void + * @return void + */ + public function action_manageteam() + { + global $member, $manager; + + $blogid = intRequestVar('blogid'); + + // check if allowed + $member->blogAdminRights($blogid) or $this->disallow(); + + $this->pagehead(); + + echo "

(" . _BACK_TO_BLOGSETTINGS . ")

\n"; + + echo '

' . _TEAM_TITLE . getBlogNameFromID($blogid) . "

\n"; + + echo '

' . _TEAM_CURRENT . "

\n"; + + $query = 'SELECT tblog, tmember, mname, mrealname, memail, tadmin' + . ' FROM '.sql_table('member').', '.sql_table('team') + . ' WHERE tmember=mnumber and tblog=' . $blogid; + + $template['content'] = 'teamlist'; + $template['tabindex'] = 10; + + $manager->loadClass("ENCAPSULATE"); + $batch = new Batch('team'); + $batch->showlist($query, 'table', $template); + + echo '

' . _TEAM_ADDNEW . "

\n"; + + echo "
\n"; + echo "
\n"; + + echo "\n"; + echo "\n"; + $manager->addTicketHidden(); + + echo '' . "\n"; + echo "\n"; + echo '\n"; + + // TODO: try to make it so only non-team-members are listed + echo "\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo '\n"; + echo "\n"; + echo "
' . _TEAM_CHOOSEMEMBER . "\n"; + + $query = 'SELECT mname as text, mnumber as value FROM '.sql_table('member'); + $template['name'] = 'memberid'; + $template['tabindex'] = 10000; + showlist($query,'select',$template); + + echo "
' . _TEAM_ADMIN; + help('teamadmin'); + echo "'; + $this->input_yesno('admin',0,10020); + echo "
' . _TEAM_ADD . "' . "
\n"; + + echo "
\n"; + echo "
\n"; + + $this->pagefoot(); + return; + } + + /** + * Add member to team + */ + function action_teamaddmember() { + global $member, $manager; + + $memberid = intPostVar('memberid'); + $blogid = intPostVar('blogid'); + $admin = intPostVar('admin'); + + // check if allowed + $member->blogAdminRights($blogid) or $this->disallow(); + + $blog =& $manager->getBlog($blogid); + if (!$blog->addTeamMember($memberid, $admin)) + $this->error(_ERROR_ALREADYONTEAM); + + $this->action_manageteam(); + + } + + /** + * @todo document this + */ + function action_teamdelete() { + global $member, $manager; + + $memberid = intRequestVar('memberid'); + $blogid = intRequestVar('blogid'); + + // check if allowed + $member->blogAdminRights($blogid) or $this->disallow(); + + $teammem =& $manager->getMember($memberid); + $blog =& $manager->getBlog($blogid); + + $this->pagehead(); + ?> +

+ +

getDisplayName()) ?>getName())) ?> +

+ + +
+ + addTicketHidden() ?> + + + +
+ pagefoot(); + } + + /** + * @todo document this + */ + function action_teamdeleteconfirm() { + global $member; + + $memberid = intRequestVar('memberid'); + $blogid = intRequestVar('blogid'); + + $error = $this->deleteOneTeamMember($blogid, $memberid); + if ($error) + $this->error($error); + + + $this->action_manageteam(); + } + + /** + * @todo document this + */ + function deleteOneTeamMember($blogid, $memberid) { + global $member, $manager; + + $blogid = intval($blogid); + $memberid = intval($memberid); + + // check if allowed + if (!$member->blogAdminRights($blogid)) + return _ERROR_DISALLOWED; + + // check if: - there remains at least one blog admin + // - (there remains at least one team member) + $tmem =& $manager->getMember($memberid); + + $manager->notify('PreDeleteTeamMember', array('member' => &$tmem, 'blogid' => $blogid)); + + if ($tmem->isBlogAdmin($blogid)) { + // check if there are more blog members left and at least one admin + // (check for at least two admins before deletion) + $query = 'SELECT * FROM '.sql_table('team') . ' WHERE tblog='.$blogid.' and tadmin=1'; + $r = DB::getResult($query); + if ($r->rowCount() < 2) + return _ERROR_ATLEASTONEBLOGADMIN; + } + + $query = 'DELETE FROM '.sql_table('team')." WHERE tblog=$blogid and tmember=$memberid"; + DB::execute($query); + + $manager->notify('PostDeleteTeamMember', array('member' => &$tmem, 'blogid' => $blogid)); + + return ''; + } + + /** + * @todo document this + */ + function action_teamchangeadmin() { + global $manager, $member; + + $blogid = intRequestVar('blogid'); + $memberid = intRequestVar('memberid'); + + // check if allowed + $member->blogAdminRights($blogid) or $this->disallow(); + + $mem =& $manager->getMember($memberid); + + // don't allow when there is only one admin at this moment + if ($mem->isBlogAdmin($blogid)) { + $r = DB::getResult('SELECT * FROM '.sql_table('team') . " WHERE tblog=$blogid and tadmin=1"); + if ($r->rowCount() == 1) + $this->error(_ERROR_ATLEASTONEBLOGADMIN); + } + + if ($mem->isBlogAdmin($blogid)) + $newval = 0; + else + $newval = 1; + + $query = 'UPDATE '.sql_table('team') ." SET tadmin=$newval WHERE tblog=$blogid and tmember=$memberid"; + DB::execute($query); + + // only show manageteam if member did not change its own admin privileges + if ($member->isBlogAdmin($blogid)) + $this->action_manageteam(); + else + $this->action_overview(_MSG_ADMINCHANGED); + } + + /** + * Admin::action_blogsettings() + * + * @param void + * @return void + */ + public function action_blogsettings() + { + global $member, $manager; + + $blogid = intRequestVar('blogid'); + + // check if allowed + $member->blogAdminRights($blogid) or $this->disallow(); + + $blog =& $manager->getBlog($blogid); + + $extrahead = "\n"; + $this->pagehead($extrahead); + + echo '

(' . _BACKHOME . ")

\n"; + echo '

' . _EBLOG_TITLE . ": '{$this->bloglink($blog)}'

\n"; + + echo '

' . _EBLOG_TEAM_TITLE . "

\n"; + + echo '

' . _EBLOG_CURRENT_TEAM_MEMBER; + + $query = "SELECT mname, mrealname FROM %s, %s WHERE mnumber=tmember AND tblog=%d;"; + $query = sprintf($query, sql_table('member'), sql_table('team'), (integer) $blogid); + $res = DB::getResult($query); + $aMemberNames = array(); + foreach ( $res as $row ) + { + $aMemberNames[] = Entity::hsc($row['mname']) . ' (' . Entity::hsc($row['mrealname']). ')'; + } + echo implode(',', $aMemberNames); + + echo "

\n"; + echo '

'; + echo '' . _EBLOG_TEAM_TEXT . ''; + echo "

\n"; + + echo '

' . _EBLOG_SETTINGS_TITLE . "

\n"; + + echo "
\n"; + echo "
\n"; + + echo "\n"; + $manager->addTicketHidden() . "\n"; + echo "\n"; + + echo '' . "\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo '\n"; + echo "\n"; + + echo "\n"; + echo '\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo '\n"; + echo "\n"; + + echo "\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo '\n"; + echo "\n"; + + // plugin options + $this->_insertPluginOptions('blog', $blogid); + + echo "\n"; + echo "
' . _EBLOG_CHANGE . "
' . _EBLOG_CHANGE . "' . "
' . _EBLOG_NAME . "' . "
' . _EBLOG_SHORTNAME; + help('shortblogname'); + echo _EBLOG_SHORTNAME_EXTRA; + echo "' . "
' . _EBLOG_DESC . "' . "
' . _EBLOG_URL . "' . "
' . _EBLOG_DEFSKIN; + help('blogdefaultskin'); + echo "\n"; + + $query = 'SELECT sdname as text, sdnumber as value FROM ' . sql_table('skin_desc'); + $template['name'] = 'defskin'; + $template['selected'] = $blog->getDefaultSkin(); + $template['tabindex'] = 50; + showlist($query, 'select', $template); + + echo "
' . _EBLOG_LINEBREAKS; + help('convertbreaks'); + echo "'; + $this->input_yesno('convertbreaks',$blog->convertBreaks(),55); + echo "
' . _EBLOG_ALLOWPASTPOSTING; + help('allowpastposting'); + echo "'; + $this->input_yesno('allowpastposting',$blog->allowPastPosting(),57); + echo "
' . _EBLOG_DISABLECOMMENTS; + echo "'; + $this->input_yesno('comments', $blog->commentsEnabled(), 60); + echo "
' . _EBLOG_ANONYMOUS . "'; + $this->input_yesno('public',$blog->isPublic(),70); + echo "
' . _EBLOG_REQUIREDEMAIL . "'; + $this->input_yesno('reqemail', $blog->emailRequired(),72); + echo "
' . _EBLOG_NOTIFY; + help('blognotify'); + echo "' . "
' . _EBLOG_NOTIFY_ON . "\n"; + + if ( !$blog->notifyOnComment() ) + { + echo "\n"; + } + else + { + echo "\n"; + } + echo '
\n"; + + if ( !$blog->notifyOnVote() ) + { + echo "\n"; + } + else + { + echo "\n"; + } + + echo '
\n"; + + if ( !$blog->notifyOnNewItem() ) + { + echo "\n"; + + } + else + { + echo "\n"; + } + + echo '\n"; + + echo "
' . _EBLOG_MAXCOMMENTS; + help('blogmaxcomments'); + echo "' . "
' . _EBLOG_UPDATE; + help('blogupdatefile'); + echo "' . "
' . _EBLOG_DEFCAT . "\n"; + $query = "SELECT cname as text, catid as value FROM %s WHERE cblog=%d;"; + $query = sprintf($query, sql_table('category'), (integer) $blog->getID()); + $template['name'] = 'defcat'; + $template['selected'] = $blog->getDefaultCategory(); + $template['tabindex'] = 110; + showlist($query, 'select', $template); + echo "
' . _EBLOG_OFFSET; + help('blogtimeoffset'); + echo "
\n"; + echo _EBLOG_STIME; + echo ' ' . i18n::formatted_datetime('%H:%M', time()) . '
'; + echo _EBLOG_BTIME; + echo '' . i18n::formatted_datetime('%H:%M', $blog->getCorrectTime()) . ''; + echo "
' . "
' . _EBLOG_SEARCH; + help('blogsearchable'); + echo "'; + $this->input_yesno('searchable', $blog->getSearchable(), 122); + echo "
\n"; + + echo "
\n"; + echo "
\n"; + + echo '

' . _EBLOG_CAT_TITLE . "

\n"; + + $query = 'SELECT * FROM '.sql_table('category').' WHERE cblog='.$blog->getID().' ORDER BY cname'; + $template['content'] = 'categorylist'; + $template['tabindex'] = 200; + + $manager->loadClass("ENCAPSULATE"); + $batch = new Batch('category'); + $batch->showlist($query,'table',$template); + + echo "
\n"; + echo "
\n"; + echo "\n"; + $manager->addTicketHidden() . "\n"; + echo "getID()}\" type=\"hidden\" />\n"; + + echo '' . "\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo "
' . _EBLOG_CAT_CREATE . "
' . _EBLOG_CAT_NAME . "
' . _EBLOG_CAT_DESC . "
' . _EBLOG_CAT_CREATE . "' . "
\n"; + echo "
\n"; + echo "
\n"; + + echo '

' . _PLUGINS_EXTRA . "

\n"; + $manager->notify('BlogSettingsFormExtras', array('blog' => &$blog)); + + $this->pagefoot(); + return; + } + + /** + * @todo document this + */ + function action_categorynew() { + global $member, $manager; + + $blogid = intRequestVar('blogid'); + + $member->blogAdminRights($blogid) or $this->disallow(); + + $cname = postVar('cname'); + $cdesc = postVar('cdesc'); + + if (!isValidCategoryName($cname)) + $this->error(_ERROR_BADCATEGORYNAME); + + $query = 'SELECT * FROM '.sql_table('category') . ' WHERE cname=' . DB::quoteValue($cname).' and cblog=' . intval($blogid); + $res = DB::getResult($query); + if ($res->rowCount() > 0) + $this->error(_ERROR_DUPCATEGORYNAME); + + $blog =& $manager->getBlog($blogid); + $newCatID = $blog->createNewCategory($cname, $cdesc); + + $this->action_blogsettings(); + } + + /** + * @todo document this + */ + function action_categoryedit($catid = '', $blogid = '', $desturl = '') { + global $member, $manager; + + if ($blogid == '') + $blogid = intGetVar('blogid'); + else + $blogid = intval($blogid); + if ($catid == '') + $catid = intGetVar('catid'); + else + $catid = intval($catid); + + $member->blogAdminRights($blogid) or $this->disallow(); + + $res = DB::getRow('SELECT * FROM '.sql_table('category')." WHERE cblog=$blogid AND catid=$catid"); + + $cname = $res['cname']; + $cdesc = $res['cdesc']; + + $extrahead = ''; + $this->pagehead($extrahead); + + echo "

(",_BACK_TO_BLOGSETTINGS,")

"; + + ?> +

''

+
+ + + + + addTicketHidden(); ?> + + + + + + + + + + + _insertPluginOptions('category',$catid); + ?> + + + + + +
+ +
+ pagefoot(); + } + + /** + * @todo document this + */ + function action_categoryupdate() { + global $member, $manager; + + $blogid = intPostVar('blogid'); + $catid = intPostVar('catid'); + $cname = postVar('cname'); + $cdesc = postVar('cdesc'); + $desturl = postVar('desturl'); + + $member->blogAdminRights($blogid) or $this->disallow(); + + if (!isValidCategoryName($cname)) + $this->error(_ERROR_BADCATEGORYNAME); + + $query = 'SELECT * FROM '.sql_table('category').' WHERE cname=' . DB::quoteValue($cname).' and cblog=' . intval($blogid) . " and not(catid=$catid)"; + $res = DB::getResult($query); + if ($res->rowCount() > 0) + $this->error(_ERROR_DUPCATEGORYNAME); + + $query = 'UPDATE '.sql_table('category').' SET' + . ' cname=' . DB::quoteValue($cname) . ',' + . ' cdesc=' . DB::quoteValue($cdesc) + . ' WHERE catid=' . $catid; + + DB::execute($query); + + // store plugin options + $aOptions = requestArray('plugoption'); + NucleusPlugin::apply_plugin_options($aOptions); + $manager->notify('PostPluginOptionsUpdate',array('context' => 'category', 'catid' => $catid)); + + + if ($desturl) { + redirect($desturl); + exit; + } else { + $this->action_blogsettings(); + } + } + + /** + * @todo document this + */ + function action_categorydelete() { + global $member, $manager; + + $blogid = intRequestVar('blogid'); + $catid = intRequestVar('catid'); + + $member->blogAdminRights($blogid) or $this->disallow(); + + $blog =& $manager->getBlog($blogid); + + // check if the category is valid + if (!$blog->isValidCategory($catid)) + $this->error(_ERROR_NOSUCHCATEGORY); + + // don't allow deletion of default category + if ($blog->getDefaultCategory() == $catid) + $this->error(_ERROR_DELETEDEFCATEGORY); + + // check if catid is the only category left for blogid + $query = 'SELECT catid FROM '.sql_table('category').' WHERE cblog=' . $blogid; + $res = DB::getResult($query); + if ($res->rowCount() == 1) + $this->error(_ERROR_DELETELASTCATEGORY); + + + $this->pagehead(); + ?> +

+ +
+ getCategoryName($catid)) ?> +
+ +
+ + addTicketHidden() ?> + + + +
+ pagefoot(); + } + + /** + * @todo document this + */ + function action_categorydeleteconfirm() { + global $member, $manager; + + $blogid = intRequestVar('blogid'); + $catid = intRequestVar('catid'); + + $member->blogAdminRights($blogid) or $this->disallow(); + + $error = $this->deleteOneCategory($catid); + if ($error) + $this->error($error); + + $this->action_blogsettings(); + } +======= + + /** + * Admin::action_skinedit() + * + * @param void + * @return void + */ + static private function action_skinedit() + { + global $member; + + $member->isAdmin() or self::disallow(); + + self::$skin->parse('skinedit'); + return; + } + + /** + * Admin::action_skineditgeneral() + * + * @param void + * @return void + */ + static private function action_skineditgeneral() + { + global $member; + + $skinid = intRequestVar('skinid'); + + $member->isAdmin() or self::disallow(); + + $error = self::skineditgeneral($skinid); + if ( $error ) + { + self::error($error); + return; + } + + self::action_skinedit(); + return; + } + + static private function action_skinedittype($msg = '') + { + global $member; + + $member->isAdmin() or self::disallow(); + + if ( $msg ) + { + self::$headMess = $msg; + } + + $type = requestVar('type'); + $type = trim($type); + $type = strtolower($type); + + if ( !isValidShortName($type) ) + { + self::error(_ERROR_SKIN_PARTS_SPECIAL_FORMAT); + return; + } + + self::$skin->parse('skinedittype'); + return; + } +>>>>>>> skinnable-master + + /** + * Admin::action_skinupdate() + * + * @param void + * @return void + */ + static private function action_skinupdate() + { + global $manager, $member; + + $skinid = intRequestVar('skinid'); + $content = trim(postVar('content')); + $type = postVar('type'); + + $member->isAdmin() or self::disallow(); + + $skin =& $manager->getSKIN($skinid); + $skin->update($type, $content); + + self::action_skinedittype(_SKIN_UPDATED); + return; + } + + /** + * Admin::action_skindelete() + * + * @param void + * @return void + */ + static private function action_skindelete() + { + global $CONF, $member; + + $member->isAdmin() or self::disallow(); + + $skinid = intRequestVar('skinid'); + + // don't allow default skin to be deleted + if ( $skinid == $CONF['BaseSkin'] ) + { + self::error(_ERROR_DEFAULTSKIN); + return; + } + + // don't allow deletion of default skins for blogs + $query = "SELECT bname FROM %s WHERE bdefskin=%d"; + $query = sprintf($query, sql_table('blog'), (integer) $skinid); + + $name = DB::getValue($query); + if ( $name ) + { + self::error(_ERROR_SKINDEFDELETE . Entity::hsc($name)); + return; + } + + self::$skin->parse('skindelete'); + return; + } + + /** + * Admin::action_skindeleteconfirm() + * + * @param void + * @return void + */ + static private function action_skindeleteconfirm() + { + global $member, $CONF; + + $member->isAdmin() or self::disallow(); + + $skinid = intRequestVar('skinid'); + + // don't allow default skin to be deleted + if ( $skinid == $CONF['BaseSkin'] ) + { + self::error(_ERROR_DEFAULTSKIN); + return; + } + +<<<<<<< HEAD + // check if catid is the only category left for blogid + $query = 'SELECT catid FROM '.sql_table('category').' WHERE cblog=' . $blogid; + $res = DB::getResult($query); + if ( $res->rowCount() == 1 ) +======= + // don't allow deletion of default skins for blogs + $query = "SELECT bname FROM %s WHERE bdefskin=%d;"; + $query = sprintf($query, sql_table('blog'), (integer) $skinid); + + $name = DB::getValue($query); + if ( $name ) + { + self::error(_ERROR_SKINDEFDELETE . Entity::hsc($name)); + return; + } + + self::skindeleteconfirm($skinid); + + self::action_skinoverview(); + return; + } + + /** + * Admin::action_skinremovetype() + * + * @param void + * @return void + */ + static private function action_skinremovetype() + { + global $member, $CONF; + + $member->isAdmin() or self::disallow(); + + $skinid = intRequestVar('skinid'); + $skintype = requestVar('type'); + + if ( !isValidShortName($skintype) ) +>>>>>>> skinnable-master + { + self::error(_ERROR_SKIN_PARTS_SPECIAL_DELETE); + return; + } + + self::$skin->parse('skinremovetype'); + return; + } + + /** + * Admin::action_skinremovetypeconfirm() + * + * @param void + * @return void + */ + static private function action_skinremovetypeconfirm() + { + global $member; + +<<<<<<< HEAD + // change category for all items to the default category + $query = 'UPDATE '.sql_table('item')." SET icat=$destcatid WHERE icat=$catid"; + DB::execute($query); +======= + $member->isAdmin() or self::disallow(); +>>>>>>> skinnable-master + + $skinid = intRequestVar('skinid'); + $skintype = requestVar('type'); + +<<<<<<< HEAD + // delete category + $query = 'DELETE FROM '.sql_table('category').' WHERE catid=' .$catid; + DB::execute($query); +======= + $error = self::skinremovetypeconfirm($skinid, $skintype); + if ( $error ) + { + self::error($error); + return; + } +>>>>>>> skinnable-master + + self::action_skinedit(); + return; + } + + /** + * Admin::action_skinclone() + * + * @param void + * @return void + */ + static private function action_skinclone() + { + global $member; + + $member->isAdmin() or self::disallow(); + + $skinid = intRequestVar('skinid'); + + self::skinclone($skinid); + + self::action_skinoverview(); + return; + } + + /** + * Admin::action_adminskinoverview() + * + * @param void + * @return void + */ + static private function action_adminskinoverview() + { + global $member; + + $member->isAdmin() or self::disallow(); + + self::$skin->parse('adminskinoverview'); + return; + } + + /** + * Admin::action_adminskinnew() + * + * @param void + * @return void + */ + static private function action_adminskinnew() + { + global $member; + + $member->isAdmin() or self::disallow(); + + $name = trim(postVar('name')); + $desc = trim(postVar('desc')); + + if ( !isValidSkinName($name) ) + { + self::error(_ERROR_BADSKINNAME); + return; + } + else if ( !preg_match('#^admin/#', $name) ) + { + self::error(_ERROR_BADADMINSKINNAME); + return; + } + else if ( Skin::exists($name) ) + { + self::error(_ERROR_DUPSKINNAME); + return; + } + + Skin::createNew($name, $desc); + + self::action_adminskinoverview(); + return; + } + + /** + * Admin::action_adminskinedit() + * + * @param void + * @return void + */ + static private function action_adminskinedit() + { + global $member; + + $member->isAdmin() or self::disallow(); + + self::$skin->parse('adminskinedit'); + + return; + } + + /** + * Admin::action_adminskineditgeneral() + * + * @param void + * @return void + */ + static private function action_adminskineditgeneral() + { + global $member; + + $skinid = intRequestVar('skinid'); + + $member->isAdmin() or self::disallow(); + + $error = self::skineditgeneral($skinid, 'AdminActions'); + if ( $error ) + { + self::error($error); + return; + } + + self::action_adminskinedit(); + return; + } + + /** + * Admin::action_adminskinedittype() + * + * @param string $msg message for pageheader + * @return void + */ + static private function action_adminskinedittype($msg = '') + { + global $member; + + $member->isAdmin() or self::disallow(); + + if ( $msg ) + { + self::$headMess = $msg; + } + $type = requestVar('type'); + $type = trim($type); + $type = strtolower($type); + + if ( !isValidShortName($type) ) + { + self::error(_ERROR_SKIN_PARTS_SPECIAL_FORMAT); + return; + } + + self::$skin->parse('adminskinedittype'); + return; + } + + /** + * Admin::action_adminskinupdate() + * + * @param void + * @return void + */ + static private function action_adminskinupdate() + { + global $manager, $member; + + $skinid = intRequestVar('skinid'); + $content = trim(postVar('content')); + $type = postVar('type'); + + $member->isAdmin() or self::disallow(); + + $skin =& $manager->getSkin($skinid, 'AdminActions', 'AdminSkin'); + $skin->update($type, $content); + + self::action_adminskinedittype(_SKIN_UPDATED); + return; + } + + /** + * Admin::action_adminskindelete() + * + * @param void + * @return void + */ + static private function action_adminskindelete() + { + global $CONF, $member; + + $member->isAdmin() or self::disallow(); + + $skinid = intRequestVar('skinid'); + + // don't allow default skin to be deleted + if ( $skinid == $CONF['AdminSkin'] || $skinid == $CONF['BookmarkletSkin'] ) + { + self::error(_ERROR_DEFAULTSKIN); + return; + } + + /* don't allow if someone use it as a default*/ + $query = 'SELECT * FROM %s WHERE madminskin = %d or mbkmklt = %d;'; + $res = DB::getResult(sprintf($query, sql_table('member'), $skinid, $skinid)); + + $members = array(); + while ( $row = $res->fetch() ) { + $members[] = $row['mrealname']; + } + if ( count($members) ) + { + self::error(_ERROR_SKINDEFDELETE . implode(' ' . _AND . ' ', $members)); + return; + } + + self::$skin->parse('adminskindelete'); + return; + } + + /** + * Admin::action_adminskindeleteconfirm() + * + * @param void + * @return void + */ + static private function action_adminskindeleteconfirm() + { + global $member, $CONF; + + $member->isAdmin() or self::disallow(); + + $skinid = intRequestVar('skinid'); + + // don't allow default skin to be deleted + if ( $skinid == $CONF['AdminSkin'] || $skinid == $CONF['BookmarkletSkin'] ) + { + self::error(_ERROR_DEFAULTSKIN); + return; + } + + /* don't allow if someone use it as a default*/ + $query = 'SELECT * FROM %s WHERE madminskin = %d or mbkmklt = %d;'; + $res = DB::getResult(sprintf($query, sql_table('member'), $skinid, $skinid)); + + $members = array(); + while ( $row = $res->fetch() ) { + $members[] = $row['mrealname']; + } + if ( count($members) ) + { + self::error(_ERROR_SKINDEFDELETE . implode(' ' . _AND . ' ', $members)); + return; + } + + self::skindeleteconfirm($skinid); + + self::action_adminskinoverview(); + return; + } + + /** + * Admin::action_adminskinremovetype() + * + * @param void + * @return void + */ + static private function action_adminskinremovetype() + { + global $member, $CONF; + + $member->isAdmin() or self::disallow(); + + $skinid = intRequestVar('skinid'); + $skintype = requestVar('type'); + + if ( !isValidShortName($skintype) ) + { + self::error(_ERROR_SKIN_PARTS_SPECIAL_DELETE); + return; + } + + self::$skin->parse('adminskinremovetype'); + return; + } +<<<<<<< HEAD + + /** + * @todo document this + */ + function action_deleteblog() { + global $member, $CONF, $manager; + + $blogid = intRequestVar('blogid'); + + $member->blogAdminRights($blogid) or $this->disallow(); + + // check if blog is default blog + if ($CONF['DefaultBlog'] == $blogid) + $this->error(_ERROR_DELDEFBLOG); + + $blog =& $manager->getBlog($blogid); + + $this->pagehead(); + ?> +

+ +

+

+ +
+ getName()) ?> +
+ +
+ + addTicketHidden() ?> + + +
+ pagefoot(); + } +======= +>>>>>>> skinnable-master + + /** + * Admin::action_adminskinremovetypeconfirm() + * + * @param void + * @return void + */ + static private function action_adminskinremovetypeconfirm() + { + global $member; + + $member->isAdmin() or self::disallow(); + + $skinid = intRequestVar('skinid'); + $skintype = requestVar('type'); + + $error = self::skinremovetypeconfirm($skinid, $skintype); + if ( $error ) + { + self::error($error); + return; + } + +<<<<<<< HEAD + // delete all comments + $query = 'DELETE FROM '.sql_table('comment').' WHERE cblog='.$blogid; + DB::execute($query); + + // delete all items + $query = 'DELETE FROM '.sql_table('item').' WHERE iblog='.$blogid; + DB::execute($query); + + // delete all team members + $query = 'DELETE FROM '.sql_table('team').' WHERE tblog='.$blogid; + DB::execute($query); + + // delete all bans + $query = 'DELETE FROM '.sql_table('ban').' WHERE blogid='.$blogid; + DB::execute($query); + + // delete all categories + $query = 'DELETE FROM '.sql_table('category').' WHERE cblog='.$blogid; + DB::execute($query); +======= + self::action_adminskinedit(); + return; + } + + /** + * Admin::action_adminskinclone() + * + * @param void + * @return void + */ + static private function action_adminskinclone() + { + global $member; + + $member->isAdmin() or self::disallow(); + + $skinid = intRequestVar('skinid'); +>>>>>>> skinnable-master + + self::skinclone($skinid, 'AdminActions'); + +<<<<<<< HEAD + // delete the blog itself + $query = 'DELETE FROM '.sql_table('blog').' WHERE bnumber='.$blogid; + DB::execute($query); +======= + self::action_adminskinoverview(); + return; + } + + /** + * Admin::action_adminskinieoverview() + * + * @param void + * @return void + */ + static private function action_adminskinieoverview() + { + global $member; +>>>>>>> skinnable-master + + $member->isAdmin() or self::disallow(); + + self::$skin->parse('adminskinieoverview'); + return; + } +<<<<<<< HEAD + + /** + * @todo document this + */ + function action_memberdelete() { + global $member, $manager; + + $memberid = intRequestVar('memberid'); + + ($member->getID() == $memberid) or $member->isAdmin() or $this->disallow(); + + $mem =& $manager->getMember($memberid); + + $this->pagehead(); + ?> +

+ +

getDisplayName()) ?> +

+ +

+ +

+ +
+ + addTicketHidden() ?> + + +
+ pagefoot(); + } + + /** + * @todo document this + */ + function action_memberdeleteconfirm() { + global $member; +======= +>>>>>>> skinnable-master + + /** + * Admin::action_adminskinieimport() + * + * @param void + * @return void + */ + static private function action_adminskinieimport() + { + global $member; + +<<<<<<< HEAD + $memberid = intval($memberid); + $mem =& $manager->getMember($memberid); + + if ( !$mem->canBeDeleted() ) + { + return _ERROR_DELETEMEMBER; + } +======= + $member->isAdmin() or self::disallow(); +>>>>>>> skinnable-master + + $skinFileRaw = postVar('skinfile'); + $mode = postVar('mode'); + + $error = self::skinieimport($mode, $skinFileRaw); + if ( $error ) + { +<<<<<<< HEAD + $query = "UPDATE %s SET cmember=0, cuser=%s WHERE cmember=%d"; + $query = sprintf($query, sql_table('comment'), DB::quoteValue($mem->getDisplayName()), $memberid); + DB::execute($query); + } + + $query = 'DELETE FROM '.sql_table('member').' WHERE mnumber='.$memberid; + DB::execute($query); + + $query = 'DELETE FROM '.sql_table('team').' WHERE tmember='.$memberid; + DB::execute($query); + + $query = 'DELETE FROM '.sql_table('activation').' WHERE vmember='.$memberid; + DB::execute($query); + + // delete all associated plugin options + NucleusPlugin::delete_option_values('member', $memberid); + + $manager->notify('PostDeleteMember', array('member' => &$mem)); + + return ''; + } + + /** + * @todo document this + */ + function action_createnewlog() { + global $member, $CONF, $manager; + + // Only Super-Admins can do this + $member->isAdmin() or $this->disallow(); + + $this->pagehead(); + + echo '

(',_BACKTOMANAGE,')

'; + ?> +

+ +

+ +

+ +

+ +
    +
  1. +
  2. +
+ +

+ +

+ +

+ +
+ + + addTicketHidden() ?> + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +
+
+ +
+ +
+ pagefoot(); + } + + /** + * @todo document this + */ + function action_addnewlog() { + global $member, $manager, $CONF; + + // Only Super-Admins can do this + $member->isAdmin() or $this->disallow(); + + $bname = trim(postVar('name')); + $bshortname = trim(postVar('shortname')); + $btimeoffset = postVar('timeoffset'); + $bdesc = trim(postVar('desc')); + $bdefskin = postVar('defskin'); + + if (!isValidShortName($bshortname)) + $this->error(_ERROR_BADSHORTBLOGNAME); + + if ($manager->existsBlog($bshortname)) + $this->error(_ERROR_DUPSHORTBLOGNAME); + + $manager->notify( + 'PreAddBlog', + array( + 'name' => &$bname, + 'shortname' => &$bshortname, + 'timeoffset' => &$btimeoffset, + 'description' => &$bdesc, + 'defaultskin' => &$bdefskin + ) + ); + + + // create blog + $query = sprintf('INSERT INTO %s (bname, bshortname, bdesc, btimeoffset, bdefskin) VALUES (%s, %s, %s, %s, %s)', + sql_table('blog'), + DB::quoteValue($bname), + DB::quoteValue($bshortname), + DB::quoteValue($bdesc), + DB::quoteValue($btimeoffset), + DB::quoteValue($bdefskin) + ); + DB::execute($query); + $blogid = DB::getInsertId(); + $blog =& $manager->getBlog($blogid); + + // create new category + $catdefname = (defined('_EBLOGDEFAULTCATEGORY_NAME') ? _EBLOGDEFAULTCATEGORY_NAME : 'General'); + $catdefdesc = (defined('_EBLOGDEFAULTCATEGORY_DESC') ? _EBLOGDEFAULTCATEGORY_DESC : 'Items that do not fit in other categories'); + $query = sprintf('INSERT INTO %s (cblog, cname, cdesc) VALUES (%d, %s, %s)', + sql_table('category'), + $blogid, + DB::quoteValue($catdefname), + DB::quoteValue($catdefdesc) + ); + DB::execute($query); + $catid = DB::getInsertId(); + + // set as default category + $blog->setDefaultCategory($catid); + $blog->writeSettings(); + + // create team member + $memberid = $member->getID(); + $query = sprintf('INSERT INTO %s (tmember, tblog, tadmin) VALUES (%d, %d, 1)', sql_table('team'), $memberid, $blogid); + DB::execute($query); + + $itemdeftitle = (defined('_EBLOG_FIRSTITEM_TITLE') ? _EBLOG_FIRSTITEM_TITLE : 'First Item'); + $itemdefbody = (defined('_EBLOG_FIRSTITEM_BODY') ? _EBLOG_FIRSTITEM_BODY : 'This is the first item in your weblog. Feel free to delete it.'); + + $blog->additem($blog->getDefaultCategory(),$itemdeftitle,$itemdefbody,'',$blogid, $memberid,$blog->getCorrectTime(),0,0,0); + + + $manager->notify( + 'PostAddBlog', + array( + 'blog' => &$blog + ) + ); + + $manager->notify( + 'PostAddCategory', + array( + 'blog' => &$blog, + 'name' => _EBLOGDEFAULTCATEGORY_NAME, + 'description' => _EBLOGDEFAULTCATEGORY_DESC, + 'catid' => $catid + ) + ); + + $this->pagehead(); + ?> +

+ +

+ +
    +
  1. +
  2. +
+ +

+ +

+
<?php
+
+$CONF['Self'] = '.php';
+
+include('./config.php');
+
+selectBlog('');
+selector();
+
+?>
+ +

+ +

+ +
+ + addTicketHidden() ?> + + + + + + + +
+
+ +

+ +

+ +
+ + addTicketHidden() ?> + + + + + + + +
+
+ + pagefoot(); + + } + + /** + * @todo document this + */ + function action_addnewlog2() { + global $member, $manager; + + $member->blogAdminRights($blogid) or $this->disallow(); + + $burl = requestVar('url'); + $blogid = intRequestVar('blogid'); + + $blog =& $manager->getBlog($blogid); + $blog->setURL(trim($burl)); + $blog->writeSettings(); + + $this->action_overview(_MSG_NEWBLOG); + } + + /** + * @todo document this + */ + function action_skinieoverview() { + global $member, $DIR_LIBS, $manager; + + $member->isAdmin() or $this->disallow(); + + // load skinie class + include_once($DIR_LIBS . 'skinie.php'); + + $this->pagehead(); + + echo '

(',_BACKTOMANAGE,')

'; + + ?> +

+ +

+ 0) { + ?> +

+ + addTicketHidden() ?> + + + +
+ +

+ +

+ +

+ addTicketHidden() ?> + + + + + +

+ + +

+
+ + addTicketHidden() ?> + +

+ + + + + '; + echo ''; + echo ''; + echo ''; + } + + echo ''; + + // show list of templates + $res = DB::getResult('SELECT * FROM '.sql_table('template_desc')); + foreach ( $res as $row ) { + $id = 'templateexp' . $row['tdnumber']; + echo ''; + echo ''; + echo ''; + } + + ?> + + + + + + + +
',Entity::hsc($row['sddesc']),'
',_SKINIE_EXPORT_TEMPLATES,'
'; + echo '',Entity::hsc($row['tddesc']),'
+
+ + pagefoot(); + + } + + /** + * @todo document this + */ + function action_skinieimport() { + global $member, $DIR_LIBS, $DIR_SKINS, $manager; + + $member->isAdmin() or $this->disallow(); + + // load skinie class + include_once($DIR_LIBS . 'skinie.php'); + + $skinFileRaw= postVar('skinfile'); + $mode = postVar('mode'); + + $importer = new SkinImport(); + + // get full filename + if ($mode == 'file') + { + $skinFile = $DIR_SKINS . $skinFileRaw . '/skinbackup.xml'; + + // backwards compatibilty (in v2.0, exports were saved as skindata.xml) + if (!file_exists($skinFile)) + $skinFile = $DIR_SKINS . $skinFileRaw . '/skindata.xml'; + } else { + $skinFile = $skinFileRaw; + } + + // read only metadata + $error = $importer->readFile($skinFile, 1); + + // clashes + $skinNameClashes = $importer->checkSkinNameClashes(); + $templateNameClashes = $importer->checkTemplateNameClashes(); + $hasNameClashes = (count($skinNameClashes) > 0) || (count($templateNameClashes) > 0); + + if ($error) $this->error($error); + + $this->pagehead(); + + echo '

(',_BACK,')

'; + ?> +

+ + + +
+ + addTicketHidden() ?> + + + + +
+ + +
+ + + pagefoot(); + } + + /** + * @todo document this + */ + function action_skiniedoimport() { + global $member, $DIR_LIBS, $DIR_SKINS; + + $member->isAdmin() or $this->disallow(); + + // load skinie class + include_once($DIR_LIBS . 'skinie.php'); + + $skinFileRaw= postVar('skinfile'); + $mode = postVar('mode'); + + $allowOverwrite = intPostVar('overwrite'); + + // get full filename + if ($mode == 'file') + { + $skinFile = $DIR_SKINS . $skinFileRaw . '/skinbackup.xml'; + + // backwards compatibilty (in v2.0, exports were saved as skindata.xml) + if (!file_exists($skinFile)) + $skinFile = $DIR_SKINS . $skinFileRaw . '/skindata.xml'; + + } else { + $skinFile = $skinFileRaw; + } + + $importer = new SkinImport(); + + $error = $importer->readFile($skinFile); + + if ($error) + $this->error($error); + + $error = $importer->writeToDatabase($allowOverwrite); + + if ($error) + $this->error($error); + + $this->pagehead(); + + echo '

(',_BACKTOMANAGE,')

'; + ?> +

+ + + + pagefoot(); + + } + + /** + * @todo document this + */ + function action_skinieexport() { + global $member, $DIR_LIBS; + + $member->isAdmin() or $this->disallow(); + + // load skinie class + include_once($DIR_LIBS . 'skinie.php'); + + $aSkins = requestIntArray('skin'); + $aTemplates = requestIntArray('template'); + + if (!is_array($aTemplates)) $aTemplates = array(); + if (!is_array($aSkins)) $aSkins = array(); + + $skinList = array_keys($aSkins); + $templateList = array_keys($aTemplates); + + $info = postVar('info'); + + $exporter = new SkinExport(); + foreach ($skinList as $skinId) { + $exporter->addSkin($skinId); + } + foreach ($templateList as $templateId) { + $exporter->addTemplate($templateId); + } + $exporter->setInfo($info); + + $exporter->export(); + } + + /** + * @todo document this + */ + function action_templateoverview() { + global $member, $manager; + + $member->isAdmin() or $this->disallow(); + + $this->pagehead(); + + echo '

(',_BACKTOMANAGE,')

'; + + echo '

' . _TEMPLATE_TITLE . '

'; + echo '

' . _TEMPLATE_AVAILABLE_TITLE . '

'; + + $query = 'SELECT * FROM '.sql_table('template_desc').' ORDER BY tdname'; + $template['content'] = 'templatelist'; + $template['tabindex'] = 10; + showlist($query,'table',$template); + + echo '

' . _TEMPLATE_NEW_TITLE . '

'; + + ?> +
+ + + addTicketHidden() ?> + + + + + + + + + +
+ +
+ + pagefoot(); + } + + /** + * @todo document this + */ + function action_templateedit($msg = '') { + global $member, $manager; + + $templateid = intRequestVar('templateid'); + + $member->isAdmin() or $this->disallow(); + + $extrahead = ''; + $extrahead .= ''; + + $this->pagehead($extrahead); + + $templatename = Template::getNameFromId($templateid); + $templatedescription = Template::getDesc($templateid); + $template =& $manager->getTemplate($templatename); + + ?> +

+ () +

+ +

''

+ + "._MESSAGE.": $msg

"; + ?> + +

+ +
+
+ + + addTicketHidden() ?> + + + + + + + + + + + + + + + + + +_templateEditRow($template, _TEMPLATE_ITEMHEADER, 'ITEM_HEADER', '', 8); + $this->_templateEditRow($template, _TEMPLATE_ITEMBODY, 'ITEM', '', 9, 1); + $this->_templateEditRow($template, _TEMPLATE_ITEMFOOTER, 'ITEM_FOOTER', '', 10); + $this->_templateEditRow($template, _TEMPLATE_MORELINK, 'MORELINK', 'morelink', 20); + $this->_templateEditRow($template, _TEMPLATE_EDITLINK, 'EDITLINK', 'editlink', 25); + $this->_templateEditRow($template, _TEMPLATE_NEW, 'NEW', 'new', 30); +?> + + +_templateEditRow($template, _TEMPLATE_CHEADER, 'COMMENTS_HEADER', 'commentheaders', 40); + $this->_templateEditRow($template, _TEMPLATE_CBODY, 'COMMENTS_BODY', 'commentbody', 50, 1); + $this->_templateEditRow($template, _TEMPLATE_CFOOTER, 'COMMENTS_FOOTER', 'commentheaders', 60); + $this->_templateEditRow($template, _TEMPLATE_CONE, 'COMMENTS_ONE', 'commentwords', 70); + $this->_templateEditRow($template, _TEMPLATE_CMANY, 'COMMENTS_MANY', 'commentwords', 80); + $this->_templateEditRow($template, _TEMPLATE_CMORE, 'COMMENTS_CONTINUED', 'commentcontinued', 90); + $this->_templateEditRow($template, _TEMPLATE_CMEXTRA, 'COMMENTS_AUTH', 'memberextra', 100); +?> + + +_templateEditRow($template, _TEMPLATE_CNONE, 'COMMENTS_NONE', '', 110); +?> + + +_templateEditRow($template, _TEMPLATE_CTOOMUCH, 'COMMENTS_TOOMUCH', '', 120); +?> + + +_templateEditRow($template, _TEMPLATE_AHEADER, 'ARCHIVELIST_HEADER', '', 130); + $this->_templateEditRow($template, _TEMPLATE_AITEM, 'ARCHIVELIST_LISTITEM', '', 140); + $this->_templateEditRow($template, _TEMPLATE_AFOOTER, 'ARCHIVELIST_FOOTER', '', 150); +?> + + +_templateEditRow($template, _TEMPLATE_BLOGHEADER, 'BLOGLIST_HEADER', '', 160); + $this->_templateEditRow($template, _TEMPLATE_BLOGITEM, 'BLOGLIST_LISTITEM', '', 170); + $this->_templateEditRow($template, _TEMPLATE_BLOGFOOTER, 'BLOGLIST_FOOTER', '', 180); +?> + + +_templateEditRow($template, _TEMPLATE_CATHEADER, 'CATLIST_HEADER', '', 190); + $this->_templateEditRow($template, _TEMPLATE_CATITEM, 'CATLIST_LISTITEM', '', 200); + $this->_templateEditRow($template, _TEMPLATE_CATFOOTER, 'CATLIST_FOOTER', '', 210); +?> + + +_templateEditRow($template, _TEMPLATE_DHEADER, 'DATE_HEADER', 'dateheads', 220); + $this->_templateEditRow($template, _TEMPLATE_DFOOTER, 'DATE_FOOTER', 'dateheads', 230); + $this->_templateEditRow($template, _TEMPLATE_DFORMAT, 'FORMAT_DATE', 'datetime', 240); + $this->_templateEditRow($template, _TEMPLATE_TFORMAT, 'FORMAT_TIME', 'datetime', 250); + $this->_templateEditRow($template, _TEMPLATE_LOCALE, 'LOCALE', 'locale', 260); +?> + + +_templateEditRow($template, _TEMPLATE_PCODE, 'POPUP_CODE', '', 270); + $this->_templateEditRow($template, _TEMPLATE_ICODE, 'IMAGE_CODE', '', 280); + $this->_templateEditRow($template, _TEMPLATE_MCODE, 'MEDIA_CODE', '', 290); +?> + + +_templateEditRow($template, _TEMPLATE_SHIGHLIGHT, 'SEARCH_HIGHLIGHT', 'highlight',300); + $this->_templateEditRow($template, _TEMPLATE_SNOTFOUND, 'SEARCH_NOTHINGFOUND', 'nothingfound',310); +?> + + +notify('TemplateExtraFields',array('fields'=>&$pluginfields)); + + foreach ($pluginfields as $pfkey=>$pfvalue) { + echo "\n"; + echo '\n"; + foreach ($pfvalue as $pffield=>$pfdesc) { + $this->_templateEditRow($template, $pfdesc, $pffield, '',++$tab,0); + } + } +?> + + + + + +
+ + +
' . Entity::hen($pfkey) . "
+ + +
+ +
+
+ pagefoot(); + } + + /** + * @todo document this + */ + function _templateEditRow(&$template, $description, $name, $help = '', $tabindex = 0, $big = 0) { + static $count = 1; + if (!isset($template[$name])) $template[$name] = ''; + ?> + + + + isAdmin() or $this->disallow(); + + $name = postVar('tname'); + $desc = postVar('tdesc'); + + if (!isValidTemplateName($name)) + $this->error(_ERROR_BADTEMPLATENAME); + + if ((Template::getNameFromId($templateid) != $name) && Template::exists($name)) + $this->error(_ERROR_DUPTEMPLATENAME); + + + $name = DB::quoteValue($name); + $desc = DB::quoteValue($desc); + + // 1. Remove all template parts + $query = 'DELETE FROM '.sql_table('template').' WHERE tdesc=' . $templateid; + DB::execute($query); + + // 2. Update description + $query = 'UPDATE '.sql_table('template_desc').' SET' + . ' tdname=' . $name . ',' + . ' tddesc=' . $desc + . ' WHERE tdnumber=' . $templateid; + DB::execute($query); + + // 3. Add non-empty template parts + $this->addToTemplate($templateid, 'ITEM_HEADER', postVar('ITEM_HEADER')); + $this->addToTemplate($templateid, 'ITEM', postVar('ITEM')); + $this->addToTemplate($templateid, 'ITEM_FOOTER', postVar('ITEM_FOOTER')); + $this->addToTemplate($templateid, 'MORELINK', postVar('MORELINK')); + $this->addToTemplate($templateid, 'EDITLINK', postVar('EDITLINK')); + $this->addToTemplate($templateid, 'NEW', postVar('NEW')); + $this->addToTemplate($templateid, 'COMMENTS_HEADER', postVar('COMMENTS_HEADER')); + $this->addToTemplate($templateid, 'COMMENTS_BODY', postVar('COMMENTS_BODY')); + $this->addToTemplate($templateid, 'COMMENTS_FOOTER', postVar('COMMENTS_FOOTER')); + $this->addToTemplate($templateid, 'COMMENTS_CONTINUED', postVar('COMMENTS_CONTINUED')); + $this->addToTemplate($templateid, 'COMMENTS_TOOMUCH', postVar('COMMENTS_TOOMUCH')); + $this->addToTemplate($templateid, 'COMMENTS_AUTH', postVar('COMMENTS_AUTH')); + $this->addToTemplate($templateid, 'COMMENTS_ONE', postVar('COMMENTS_ONE')); + $this->addToTemplate($templateid, 'COMMENTS_MANY', postVar('COMMENTS_MANY')); + $this->addToTemplate($templateid, 'COMMENTS_NONE', postVar('COMMENTS_NONE')); + $this->addToTemplate($templateid, 'ARCHIVELIST_HEADER', postVar('ARCHIVELIST_HEADER')); + $this->addToTemplate($templateid, 'ARCHIVELIST_LISTITEM', postVar('ARCHIVELIST_LISTITEM')); + $this->addToTemplate($templateid, 'ARCHIVELIST_FOOTER', postVar('ARCHIVELIST_FOOTER')); + $this->addToTemplate($templateid, 'BLOGLIST_HEADER', postVar('BLOGLIST_HEADER')); + $this->addToTemplate($templateid, 'BLOGLIST_LISTITEM', postVar('BLOGLIST_LISTITEM')); + $this->addToTemplate($templateid, 'BLOGLIST_FOOTER', postVar('BLOGLIST_FOOTER')); + $this->addToTemplate($templateid, 'CATLIST_HEADER', postVar('CATLIST_HEADER')); + $this->addToTemplate($templateid, 'CATLIST_LISTITEM', postVar('CATLIST_LISTITEM')); + $this->addToTemplate($templateid, 'CATLIST_FOOTER', postVar('CATLIST_FOOTER')); + $this->addToTemplate($templateid, 'DATE_HEADER', postVar('DATE_HEADER')); + $this->addToTemplate($templateid, 'DATE_FOOTER', postVar('DATE_FOOTER')); + $this->addToTemplate($templateid, 'FORMAT_DATE', postVar('FORMAT_DATE')); + $this->addToTemplate($templateid, 'FORMAT_TIME', postVar('FORMAT_TIME')); + $this->addToTemplate($templateid, 'LOCALE', postVar('LOCALE')); + $this->addToTemplate($templateid, 'SEARCH_HIGHLIGHT', postVar('SEARCH_HIGHLIGHT')); + $this->addToTemplate($templateid, 'SEARCH_NOTHINGFOUND', postVar('SEARCH_NOTHINGFOUND')); + $this->addToTemplate($templateid, 'POPUP_CODE', postVar('POPUP_CODE')); + $this->addToTemplate($templateid, 'MEDIA_CODE', postVar('MEDIA_CODE')); + $this->addToTemplate($templateid, 'IMAGE_CODE', postVar('IMAGE_CODE')); + + $pluginfields = array(); + $manager->notify('TemplateExtraFields',array('fields'=>&$pluginfields)); + foreach ($pluginfields as $pfkey=>$pfvalue) { + foreach ($pfvalue as $pffield=>$pfdesc) { + $this->addToTemplate($templateid, $pffield, postVar($pffield)); + } + } + + // jump back to template edit + $this->action_templateedit(_TEMPLATE_UPDATED); + + } + +======= + self::error($error); + return; + } + + if ( !is_object(self::$skin) ) + { + self::action_adminskiniedoimport(); + } + else + { + self::$skin->parse('adminskinieimport'); + } + return; + } + +>>>>>>> skinnable-master + /** + * Admin::action_adminskiniedoimport() + * + * @param void + * @return void + */ + static private function action_adminskiniedoimport() + { + global $DIR_SKINS, $member, $CONF; + + $member->isAdmin() or self::disallow(); + + $mode = postVar('mode'); + $skinFileRaw = postVar('skinfile'); + $allowOverwrite = intPostVar('overwrite'); + + $error = self::skiniedoimport($mode, $skinFileRaw, $allowOverwrite); + if ( $error ) + { + self::error($error); + return; + } + +<<<<<<< HEAD + $partname = DB::quoteValue($partname); + $content = DB::quoteValue($content); + + $query = "INSERT INTO %s (tdesc, tpartname, tcontent) VALUES (%d, %s, %s)"; + $query = sprintf($query, sql_table('template'), (integer) $id, $partname, $content); + if ( DB::execute($query) === FALSE ) + { + $err = DB::getError(); + exit(_ADMIN_SQLDIE_QUERYERROR . $err[2]); + } + return DB::getInsertId(); + } + + /** + * @todo document this + */ + function action_templatedelete() { + global $member, $manager; + + $member->isAdmin() or $this->disallow(); + + $templateid = intRequestVar('templateid'); + // TODO: check if template can be deleted + + $this->pagehead(); + + $name = Template::getNameFromId($templateid); + $desc = Template::getDesc($templateid); + + ?> +

+ +

+ () +

+ +
+ + addTicketHidden() ?> + + +
+ pagefoot(); + } + + /** + * @todo document this + */ + function action_templatedeleteconfirm() { + global $member, $manager; + + $templateid = intRequestVar('templateid'); + + $member->isAdmin() or $this->disallow(); + + $manager->notify('PreDeleteTemplate', array('templateid' => $templateid)); + + // 1. delete description + DB::execute('DELETE FROM '.sql_table('template_desc').' WHERE tdnumber=' . $templateid); + + // 2. delete parts + DB::execute('DELETE FROM '.sql_table('template').' WHERE tdesc=' . $templateid); + + $manager->notify('PostDeleteTemplate', array('templateid' => $templateid)); + + $this->action_templateoverview(); + } + + /** + * @todo document this + */ + function action_templatenew() { + global $member; + + $member->isAdmin() or $this->disallow(); + + $name = postVar('name'); + $desc = postVar('desc'); + + if (!isValidTemplateName($name)) + $this->error(_ERROR_BADTEMPLATENAME); + + if (Template::exists($name)) + $this->error(_ERROR_DUPTEMPLATENAME); + + $newTemplateId = Template::createNew($name, $desc); + + $this->action_templateoverview(); + } + + /** + * @todo document this + */ + function action_templateclone() { + global $member; + + $templateid = intRequestVar('templateid'); + + $member->isAdmin() or $this->disallow(); + + // 1. read old template + $name = Template::getNameFromId($templateid); + $desc = Template::getDesc($templateid); + + // 2. create desc thing + $name = "cloned" . $name; + + // if a template with that name already exists: + if (Template::exists($name)) { + $i = 1; + while (Template::exists($name . $i)) + $i++; + $name .= $i; + } + + $newid = Template::createNew($name, $desc); + + // 3. create clone + // go through parts of old template and add them to the new one + $res = DB::getResult('SELECT tpartname, tcontent FROM '.sql_table('template').' WHERE tdesc=' . $templateid); + foreach ( $res as $row ) { + $this->addToTemplate($newid, $row['tpartname'], $row['tcontent']); + } + + $this->action_templateoverview(); + } + + /** + * Admin::action_skinoverview() + * + * @param void + * @return void + */ + public function action_skinoverview() + { + global $member, $manager; + + $member->isAdmin() or $this->disallow(); + + $this->pagehead(); + + echo '

(' . _BACKTOMANAGE . ")

\n"; + echo '

' . _SKIN_EDIT_TITLE . "

\n"; + echo '

' . _SKIN_AVAILABLE_TITLE . "

\n"; + + $query = 'SELECT * FROM '.sql_table('skin_desc').' ORDER BY sdname;'; + $template['content'] = 'skinlist'; + $template['tabindex'] = 10; + + showlist($query,'table',$template); + + echo '

' . _SKIN_NEW_TITLE . "

\n"; + echo "
\n"; + echo "
\n"; + echo "\n"; + + $manager->addTicketHidden() . "\n"; + + echo "\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo '\n"; + echo "\n"; + echo "
" . _SKIN_NAME; + echo help('shortnames'); + echo "
" . _SKIN_DESC . "
' . _SKIN_CREATE . "' . "
\n"; + + echo "
\n"; + echo "
\n"; + + $this->pagefoot(); + return; + } + + /** + * @todo document this + */ + function action_skinnew() { + global $member; + + $member->isAdmin() or $this->disallow(); + + $name = trim(postVar('name')); + $desc = trim(postVar('desc')); + + if (!isValidSkinName($name)) + $this->error(_ERROR_BADSKINNAME); + + if (Skin::exists($name)) + $this->error(_ERROR_DUPSKINNAME); + + $newId = Skin::createNew($name, $desc); + + $this->action_skinoverview(); + } + + /** + * Admin::action_skinedit() + * @param void + * @return void + */ + public function action_skinedit() + { + global $member, $manager; + + $skinid = intRequestVar('skinid'); + + $member->isAdmin() or $this->disallow(); + + $skin = new SKIN($skinid); + $default_skin_types = $skin->getDefaultTypes(); + $available_skin_types = $skin->getAvailableTypes(); + + $this->pagehead(); + + echo "

"; + echo '( ' . _SKIN_BACK . " )"; + echo "

\n"; + echo '

' . _SKIN_EDITONE_TITLE . $skin->getName() . "

\n"; + + echo '

' . _SKIN_PARTS_TITLE . "

\n"; + echo _SKIN_PARTS_MSG . "\n"; + echo "\n"; + + echo '

' . _SKIN_PARTS_SPECIAL . '

'; + echo "
\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo "
\n"; + + /* NOTE: special skin parts has FALSE in its value */ + if ( in_array(FALSE, array_values($available_skin_types)) ) + { + $tabstart = 75; + + echo ''; + } + + echo '

' . _SKIN_GENSETTINGS_TITLE . "

\n"; + echo "
\n"; + echo "
\n"; + echo "\n"; + $manager->addTicketHidden() . "\n"; + echo "\n"; + + echo '' . "\n"; + echo "\n"; + echo '\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo '\n"; + echo "\n"; + echo "
'; + echo _SKIN_NAME; + help('shortnames'); + echo "' . "
' . _SKIN_DESC . "' . "
' . _SKIN_TYPE . "' . "
'; + echo _SKIN_INCLUDE_MODE; + help('includemode'); + echo "'; + $this->input_yesno('inc_mode', $skin->getIncludeMode(), 120, 'skindir', 'normal', _PARSER_INCMODE_SKINDIR, _PARSER_INCMODE_NORMAL); + echo "
'; + echo _SKIN_INCLUDE_PREFIX; + help('includeprefix'); + echo "' . "
' . _SKIN_CHANGE . "' . "
\n"; + + echo "
\n"; + echo "
\n"; + $this->pagefoot(); + return; + } + + /** + * @todo document this + */ + function action_skineditgeneral() { + global $member; + + $skinid = intRequestVar('skinid'); + + $member->isAdmin() or $this->disallow(); + + $name = postVar('name'); + $desc = postVar('desc'); + $type = postVar('type'); + $inc_mode = postVar('inc_mode'); + $inc_prefix = postVar('inc_prefix'); + + $skin = new SKIN($skinid); + + // 1. Some checks + if (!isValidSkinName($name)) + $this->error(_ERROR_BADSKINNAME); + + if (($skin->getName() != $name) && Skin::exists($name)) + $this->error(_ERROR_DUPSKINNAME); + + if (!$type) $type = 'text/html'; + if (!$inc_mode) $inc_mode = 'normal'; + + // 2. Update description + $skin->updateGeneralInfo($name, $desc, $type, $inc_mode, $inc_prefix); + + $this->action_skinedit(); + + } + + /** + * Admin::action_skinedittype() + * + * @param string $msg message for pageheader + * @return void + */ + public function action_skinedittype($msg = '') + { + global $member, $manager; + + $skinid = intRequestVar('skinid'); + $type = requestVar('type'); + + $member->isAdmin() or $this->disallow(); + + $type = trim($type); + $type = strtolower($type); + + if ( !isValidShortName($type) ) + { + $this->error(_ERROR_SKIN_PARTS_SPECIAL_FORMAT); + } + + $skin = new SKIN($skinid); + $skin_types = $skin->getAvailableTypes(); + if ( !array_key_exists($type, $skin_types) || !$skin_types[$type] ) + { + $friendlyName = ucfirst($type); + } + else + { + $friendlyName = $skin_types[$type]; + } + + $this->pagehead(); + + echo '

(' . _SKIN_GOBACK . ")

\n"; + + echo '

' . _SKIN_EDITPART_TITLE . " '" . Entity::hsc($skin->getName()) . "': " . Entity::hsc($friendlyName) . "

\n"; + + if ( $msg != '') + { + echo "

" . _MESSAGE . ": $msg

\n"; + } + + echo "
\n"; + echo "
\n"; + + echo "\n"; + $manager->addTicketHidden() . "\n"; + echo "\n"; + echo "\n"; + + echo '' . "\n"; + echo '' . "\n"; + echo '(skin type: ' . Entity::hsc($friendlyName) . ")\n"; + + if ( !array_key_exists($type, $skin_types) || !$skin_types[$type] ) + { + help('skinpartspecial'); + } + else + { + help('skinpart' . $type); + } + echo "
\n"; + + echo "\n"; + + echo "
\n"; + echo '' . "\n"; + echo '' . "\n"; + echo '(skin type: ' . Entity::hsc($friendlyName) . ")\n"; + + echo "
\n"; + echo "
\n"; + echo _SKIN_ALLOWEDVARS; + + $actions = $skin->getAllowedActionsForType($type); + + sort($actions); + + while ( $current = array_shift($actions) ) + { + // skip deprecated vars + if ( in_array($current, array('ifcat', 'imagetext', 'vars')) ) + { + continue; + } + + echo helplink("skinvar-{$current}") . "{$current}\n"; + + if ( count($actions) != 0 ) + { + echo ", "; + } + } + + echo "
\n"; + echo "
\n"; + echo _SKINEDIT_ALLOWEDBLOGS; + + $query = 'SELECT bshortname, bname FROM '.sql_table('blog'); + showlist($query, 'table', array('content'=>'shortblognames')); + + echo "
\n"; + echo _SKINEDIT_ALLOWEDTEMPLATESS; + + $query = 'SELECT tdname as name, tddesc as description FROM '.sql_table('template_desc'); + showlist($query, 'table', array('content'=>'shortnames')); + + echo "
\n"; + echo "
\n"; + + $this->pagefoot(); + + return; + } + + /** + * @todo document this + */ + function action_skinupdate() { + global $member; + + $skinid = intRequestVar('skinid'); + $content = trim(postVar('content')); + $type = postVar('type'); + + $member->isAdmin() or $this->disallow(); + + $skin = new SKIN($skinid); + $skin->update($type, $content); + + $this->action_skinedittype(_SKIN_UPDATED); + } + + /** + * @todo document this + */ + function action_skindelete() { + global $member, $manager, $CONF; + + $skinid = intRequestVar('skinid'); + + $member->isAdmin() or $this->disallow(); + + // don't allow default skin to be deleted + if ($skinid == $CONF['BaseSkin']) + $this->error(_ERROR_DEFAULTSKIN); + + // don't allow deletion of default skins for blogs + $query = 'SELECT bname FROM '.sql_table('blog').' WHERE bdefskin=' . $skinid; + $r = DB::getValue($query); + if ( $r ) + $this->error(_ERROR_SKINDEFDELETE . Entity::hsc($r)); + + $this->pagehead(); + + $skin = new SKIN($skinid); + $name = $skin->getName(); + $desc = $skin->getDescription(); + + ?> +

+ +

+ () +

+ +
+ + addTicketHidden() ?> + + +
+ pagefoot(); + } + + /** + * @todo document this + */ + function action_skindeleteconfirm() { + global $member, $CONF, $manager; + + $skinid = intRequestVar('skinid'); + + $member->isAdmin() or $this->disallow(); + + // don't allow default skin to be deleted + if ($skinid == $CONF['BaseSkin']) + $this->error(_ERROR_DEFAULTSKIN); + + // don't allow deletion of default skins for blogs + $query = 'SELECT bname FROM '.sql_table('blog').' WHERE bdefskin=' . $skinid; + $r = DB::getValue($query); + if ($r) + $this->error(_ERROR_SKINDEFDELETE .$r); + + $manager->notify('PreDeleteSkin', array('skinid' => $skinid)); + + // 1. delete description + DB::execute('DELETE FROM '.sql_table('skin_desc').' WHERE sdnumber=' . $skinid); + + // 2. delete parts + DB::execute('DELETE FROM '.sql_table('skin').' WHERE sdesc=' . $skinid); + + $manager->notify('PostDeleteSkin', array('skinid' => $skinid)); + + $this->action_skinoverview(); + } + + /** + * Admin::action_skinremovetype() + * + * @param void + * @return void + */ + public function action_skinremovetype() + { + global $member, $manager, $CONF; + + $skinid = intRequestVar('skinid'); + $skintype = requestVar('type'); + + if ( !isValidShortName($skintype) ) + { + $this->error(_ERROR_SKIN_PARTS_SPECIAL_DELETE); + } + + $member->isAdmin() or $this->disallow(); + + // don't allow default skinparts to be deleted + $skin = new Skin($skinid); + $default_skin_types = $skin->getDefaultTypes(); + if ( array_key_exists($skintype, $default_skin_types) ) + { + $this->error(_ERROR_SKIN_PARTS_SPECIAL_DELETE); + } + + $name = $skin->getName(); + $desc = $skin->getDescription(); + + $this->pagehead(); + + echo '

' . _DELETE_CONFIRM . "

\n"; + echo "

\n"; + echo _CONFIRMTXT_SKIN_PARTS_SPECIAL; + echo Entity::hsc($skintype); + echo '(' . Entity::hsc($name) . ')'; + echo ' (' . Entity::hsc($desc) . ')'; + echo "

\n"; + + echo "
\n"; + echo "
\n"; + echo "\n"; + $manager->addTicketHidden(); + echo "\n"; + echo '' . "\n"; + echo '' . "\n"; + echo "
\n"; + echo "
\n"; + $this->pagefoot(); + return; + } + + /** + * Admin::action_skinremovetypeconfirm() + * + * @param void + * @return void + */ + public function action_skinremovetypeconfirm() + { + global $member, $CONF, $manager; + + $skinid = intRequestVar('skinid'); + $skintype = requestVar('type'); + + if ( !isValidShortName($skintype) ) + { + $this->error(_ERROR_SKIN_PARTS_SPECIAL_DELETE); + } + + $member->isAdmin() or $this->disallow(); + + // don't allow default skinparts to be deleted + $skin = new Skin($skinid); + $default_skin_types = $skin->getDefaultTypes(); + if ( array_key_exists($skintype, $default_skin_types) ) + { + $this->error(_ERROR_SKIN_PARTS_SPECIAL_DELETE); + } + + $data = array( + 'skinid' => $skinid, + 'skintype' => $skintype + ); + $manager->notify('PreDeleteSkinPart', $data); + + // delete part + $query = "DELETE FROM %s WHERE sdesc=%d AND stype='%s';"; + $query = sprintf($query, sql_table('skin'), (integer) $skinid, $skintype); + DB::execute($query); + + $data = array( + 'skinid' => $skinid, + 'skintype' => $skintype + ); + $manager->notify('PostDeleteSkinPart', $data); + + $this->action_skinedit(); + return; + } + + /** + * @todo document this + */ + function action_skinclone() { + global $member; + + $skinid = intRequestVar('skinid'); + + $member->isAdmin() or $this->disallow(); + + // 1. read skin to clone + $skin = new SKIN($skinid); + + $name = "clone_" . $skin->getName(); + + // if a skin with that name already exists: + if (Skin::exists($name)) { + $i = 1; + while (Skin::exists($name . $i)) + $i++; + $name .= $i; + } + + // 2. create skin desc + $newid = Skin::createNew( + $name, + $skin->getDescription(), + $skin->getContentType(), + $skin->getIncludeMode(), + $skin->getIncludePrefix() + ); + + $query = "SELECT stype FROM " . sql_table('skin') . " WHERE sdesc = " . $skinid; + $res = DB::getResult($query); + foreach ( $res as $row) { + $this->skinclonetype($skin, $newid, $row['stype']); + } + + $this->action_skinoverview(); + + } +======= + if ( !is_object(self::$skin) ) + { + global $DIR_SKINS; + $query = "SELECT min(sdnumber) FROM %s WHERE sdname != 'admin/bookmarklet' AND sdname LIKE 'admin/%%'"; + $query = sprintf($query, sql_table('skin_desc')); + $res = intval(DB::getValue($query)); + $query = "UPDATE %s SET value = %d WHERE name = 'AdminSkin'"; + $query = sprintf($query, sql_table('config'), $res); + DB::execute($query); + if ( $res ) + { + redirect($CONF['AdminURL']); + exit; + } + $skin = new Skin(0, 'AdminActions', 'AdminSkin'); + $skin->parse('importAdmin', $DIR_SKINS . 'admin/defaultimporter.skn'); + } + else + { + self::$skin->parse('adminskiniedoimport'); + } + return; + } +>>>>>>> skinnable-master + + /** + * Admin::action_adminskinieexport() + * + * @param void + * @return void + */ + static private function action_adminskinieexport() + { +<<<<<<< HEAD + $newid = intval($newid); + $content = $skin->getContentFromDB($type); + + if ( $content ) + { + $query = "INSERT INTO %s (sdesc, scontent, stype) VALUES (%d, '%s', '%s')"; + $query = sprintf($query, sql_table('skin'), (integer) $newid, $content, $type); + DB::execute($query); + } +======= + global $member; + + $member->isAdmin() or self::disallow(); + + // load skinie class + $aSkins = requestIntArray('skin'); + $aTemplates = requestIntArray('template'); + $info = postVar('info'); + + self::skinieexport($aSkins, $aTemplates, $info); + +>>>>>>> skinnable-master + return; + } + + /** + * Admin::action_settingsedit() + * + * @param Void + * @return Void + */ + static private function action_settingsedit() + { + global $member, $manager, $CONF, $DIR_NUCLEUS, $DIR_MEDIA; +<<<<<<< HEAD + + $member->isAdmin() or $this->disallow(); + + $this->pagehead(); + + echo '

(',_BACKTOMANAGE,')

'; + ?> + +

+ +
+
+ + + addTicketHidden() ?> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + + +
+ input_yesno('DisableSite',$CONF['DisableSite'],10060); ?> +
+ +
+
+ + input_yesno('DisableJsTools',$CONF['DisableJsTools'],10075); */ ?> + +
input_yesno('URLMode',$CONF['URLMode'],10077, + 'normal','pathinfo',_SETTINGS_URLMODE_NORMAL,_SETTINGS_URLMODE_PATHINFO); + + echo ' ', _SETTINGS_URLMODE_HELP; + + ?> + +
input_yesno('DebugVars',$CONF['DebugVars'],10078); + + ?> + +
+ + +
+ + + + +
+ + " . _WARNING_NOTADIR . ""; + if (!is_readable($DIR_MEDIA)) + echo "
" . _WARNING_NOTREADABLE . ""; + if (!is_writeable($DIR_MEDIA)) + echo "
" . _WARNING_NOTWRITABLE . ""; + ?> +
+ +
input_yesno('AllowUpload',$CONF['AllowUpload'],10090); ?>
+ +
+ +
input_yesno('MediaPrefix',$CONF['MediaPrefix'],10110); ?>
input_yesno('AllowLoginEdit',$CONF['AllowLoginEdit'],10120); ?>
+ + input_yesno('AllowMemberCreate',$CONF['AllowMemberCreate'],10130); ?> +
+
+
input_yesno('NewMemberCanLogon',$CONF['NewMemberCanLogon'],10140); ?> +
+ + input_yesno('AllowMemberMail',$CONF['AllowMemberMail'],10150); ?> +
+ + input_yesno('NonmemberMail',$CONF['NonmemberMail'],10155); ?> +
+ + input_yesno('ProtectMemNames',$CONF['ProtectMemNames'],10156); ?> +
input_yesno('CookieSecure',$CONF['CookieSecure'],10180); ?>
input_yesno('SessionCookie',$CONF['SessionCookie'],10190, + 1,0,_SETTINGS_COOKIESESSION,_SETTINGS_COOKIEMONTH); ?> +
input_yesno('LastVisit',$CONF['LastVisit'],10200); ?>
+ +
+
+ + ',_PLUGINS_EXTRA,''; + + $manager->notify( + 'GeneralSettingsFormExtras', + array() + ); + + $this->pagefoot(); +======= + + $member->isAdmin() or self::disallow(); + + self::$skin->parse('settingsedit'); + return; +>>>>>>> skinnable-master + } + + /** + * Admin::action_settingsupdate() + * Update $CONFIG and redirect + * + * @param void + * @return void + */ + static private function action_settingsupdate() + { + global $member, $CONF; + + $member->isAdmin() or self::disallow(); + + // check if email address for admin is valid + if ( !NOTIFICATION::address_validation(postVar('AdminEmail')) ) + { + self::error(_ERROR_BADMAILADDRESS); + return; + } + + // save settings + self::updateConfig('DefaultBlog', postVar('DefaultBlog')); + self::updateConfig('BaseSkin', postVar('BaseSkin')); + self::updateConfig('IndexURL', postVar('IndexURL')); + self::updateConfig('AdminURL', postVar('AdminURL')); + self::updateConfig('PluginURL', postVar('PluginURL')); + self::updateConfig('SkinsURL', postVar('SkinsURL')); + self::updateConfig('ActionURL', postVar('ActionURL')); + self::updateConfig('Locale', postVar('Locale')); + self::updateConfig('AdminEmail', postVar('AdminEmail')); + self::updateConfig('SessionCookie', postVar('SessionCookie')); + self::updateConfig('AllowMemberCreate', postVar('AllowMemberCreate')); + self::updateConfig('AllowMemberMail', postVar('AllowMemberMail')); + self::updateConfig('NonmemberMail', postVar('NonmemberMail')); + self::updateConfig('ProtectMemNames', postVar('ProtectMemNames')); + self::updateConfig('SiteName', postVar('SiteName')); + self::updateConfig('NewMemberCanLogon', postVar('NewMemberCanLogon')); + self::updateConfig('DisableSite', postVar('DisableSite')); + self::updateConfig('DisableSiteURL', postVar('DisableSiteURL')); + self::updateConfig('LastVisit', postVar('LastVisit')); + self::updateConfig('MediaURL', postVar('MediaURL')); + self::updateConfig('AllowedTypes', postVar('AllowedTypes')); + self::updateConfig('AllowUpload', postVar('AllowUpload')); + self::updateConfig('MaxUploadSize', postVar('MaxUploadSize')); + self::updateConfig('MediaPrefix', postVar('MediaPrefix')); + self::updateConfig('AllowLoginEdit', postVar('AllowLoginEdit')); + self::updateConfig('DisableJsTools', postVar('DisableJsTools')); + self::updateConfig('CookieDomain', postVar('CookieDomain')); + self::updateConfig('CookiePath', postVar('CookiePath')); + self::updateConfig('CookieSecure', postVar('CookieSecure')); + self::updateConfig('URLMode', postVar('URLMode')); + self::updateConfig('CookiePrefix', postVar('CookiePrefix')); + self::updateConfig('DebugVars', postVar('DebugVars')); + self::updateConfig('DefaultListSize', postVar('DefaultListSize')); + self::updateConfig('AdminCSS', postVar('AdminCSS')); + self::updateConfig('AdminSkin', postVar('adminskin')); + self::updateConfig('BookmarkletSkin', postVar('bookmarklet')); + + // load new config and redirect (this way, the new locale will be used is necessary) + // note that when changing cookie settings, this redirect might cause the user + // to have to log in again. + getConfig(); + redirect($CONF['AdminURL'] . '?action=manage'); + return; + } + + /** + * Admin::action_systemoverview() + * Output system overview + * + * @param void + * @return void + */ + static private function action_systemoverview() + { +<<<<<<< HEAD + global $member, $nucleus, $CONF; + + $this->pagehead(); + + echo '

' . _ADMIN_SYSTEMOVERVIEW_HEADING . "

\n"; + + if ( $member->isLoggedIn() && $member->isAdmin() ) + { + // Information about the used PHP and MySQL installation + echo '

' . _ADMIN_SYSTEMOVERVIEW_PHPANDMYSQL . "

\n\n"; + + // Version of PHP MySQL + echo '\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo "
' . _ADMIN_SYSTEMOVERVIEW_VERSIONS . "
' . _ADMIN_SYSTEMOVERVIEW_PHPVERSION . "' . phpversion() . "
' . _ADMIN_SYSTEMOVERVIEW_MYSQLVERSION . "' . DB::getAttribute(PDO::ATTR_SERVER_VERSION) . ' (' . DB::getAttribute(PDO::ATTR_CLIENT_VERSION) . ')' . "
\n\n"; + + // Important PHP settings + echo '\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo '\n"; + $mqg = get_magic_quotes_gpc() ? 'On' : 'Off'; + echo '\n"; + echo "\n"; + echo "\n"; + echo '\n"; + $mqr = get_magic_quotes_runtime() ? 'On' : 'Off'; + echo '\n"; + echo "\n"; + echo "\n"; + echo '\n"; + $rg = ini_get('register_globals') ? 'On' : 'Off'; + echo '\n"; + echo "\n"; + echo "\n"; + echo "
' . _ADMIN_SYSTEMOVERVIEW_SETTINGS . "
magic_quotes_gpc' . "' . $mqg . "
magic_quotes_runtime' . "' . $mqr . "
register_globals' . "' . $rg . "
\n\n"; + + // Information about GD library + $gdinfo = gd_info(); + echo '\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo "\n"; + foreach ( $gdinfo as $key=>$value ) + { + if ( is_bool($value) ) + { + $value = $value ? _ADMIN_SYSTEMOVERVIEW_ENABLE : _ADMIN_SYSTEMOVERVIEW_DISABLE; + } + else + { + $value = Entity::hsc($value); + } + echo "\n"; + echo '\n"; + echo '\n"; + echo "\n"; + } + echo "\n"; + echo "
' . _ADMIN_SYSTEMOVERVIEW_GDLIBRALY . "
' . $key . "' . $value . "
\n\n"; + + // Check if special modules are loaded + ob_start(); + phpinfo(INFO_MODULES); + $im = ob_get_contents(); + ob_clean(); + echo '\n"; + echo "\n"; + echo ""; + echo '\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo '\n"; + $modrewrite = (i18n::strpos($im, 'mod_rewrite') !== FALSE) ? + _ADMIN_SYSTEMOVERVIEW_ENABLE : + _ADMIN_SYSTEMOVERVIEW_DISABLE; + echo '\n"; + echo "\n"; + echo "\n"; + echo "
' . _ADMIN_SYSTEMOVERVIEW_MODULES . "
mod_rewrite' . "' . $modrewrite . "
\n\n"; + + // Information about the used Nucleus CMS + echo '

' . _ADMIN_SYSTEMOVERVIEW_NUCLEUSSYSTEM . "

\n"; + global $nucleus; + $nv = getNucleusVersion() / 100 . '(' . $nucleus['version'] . ')'; + $np = getNucleusPatchLevel(); + echo "\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo "
Nucleus CMS' . "
' . _ADMIN_SYSTEMOVERVIEW_NUCLEUSVERSION . "' . $nv . "
' . _ADMIN_SYSTEMOVERVIEW_NUCLEUSPATCHLEVEL . "' . $np . "
\n\n"; + + // Important settings of the installation + echo '\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo '\n"; + $ohs = $CONF['alertOnHeadersSent'] ? + _ADMIN_SYSTEMOVERVIEW_ENABLE : + _ADMIN_SYSTEMOVERVIEW_DISABLE; + echo '\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo '\n"; + echo "\n"; + echo "\n"; + echo "
' . _ADMIN_SYSTEMOVERVIEW_NUCLEUSSETTINGS . "
' . '$CONF[' . "'Self']' . $CONF['Self'] . "
' . '$CONF[' . "'ItemURL']' . $CONF['ItemURL'] . "
' . '$CONF[' . "'alertOnHeadersSent']' . $ohs . "
i18n::get_current_charset()' . i18n::get_current_charset() . "
\n\n"; + + // Link to the online version test at the Nucleus CMS website + echo '

' . _ADMIN_SYSTEMOVERVIEW_VERSIONCHECK . "

\n"; + if ( $nucleus['codename'] != '') + { + $codenamestring = ' "' . $nucleus['codename'] . '"'; + } + else + { + $codenamestring = ''; + } + echo _ADMIN_SYSTEMOVERVIEW_VERSIONCHECK_TXT; + $checkURL = sprintf(_ADMIN_SYSTEMOVERVIEW_VERSIONCHECK_URL, getNucleusVersion(), getNucleusPatchLevel()); + echo ''; + echo 'Nucleus CMS ' . $nv . $codenamestring; + echo ''; + } + else + { + echo _ADMIN_SYSTEMOVERVIEW_NOT_ADMIN; + } + $this->pagefoot(); +======= + self::$skin->parse('systemoverview'); + return; +>>>>>>> skinnable-master + } + + /** + * Admin::updateConfig() + * + * @param string $name + * @param string $val + * @return integer return the ID in which the latest query posted + */ + static private function updateConfig($name, $val) + { +<<<<<<< HEAD + $name = DB::quoteValue($name); + $val = DB::quoteValue(trim($val)); + + $query = "UPDATE %s SET value=%s WHERE name=%s"; + $query = sprintf($query, sql_table('config'), $val, $name); + if ( DB::execute($query) === FALSE ) + { + $err = DB::getError(); + die("Query error: " . $err[2]); +======= + $query = "UPDATE %s SET value=%s WHERE name=%s"; + $query = sprintf($query, sql_table('config'), DB::quoteValue($val), DB::quoteValue($name)); + if ( DB::execute($query) === FALSE ) + { + $err = DB::getError(); + die(_ADMIN_SQLDIE_QUERYERROR . $err[2]); +>>>>>>> skinnable-master + } + return DB::getInsertId(); + } + + /** + * Admin::error() + * Error message + * + * @param string $msg message that will be shown + * @return void + */ + static public function error($msg) + { + self::$headMess = $msg; + self::$skin->parse('adminerrorpage'); + return; + } + + /** + * Admin::disallow() + * add error log and show error page + * + * @param void + * @return void + */ + static public function disallow() + { + ActionLog::add(WARNING, _ACTIONLOG_DISALLOWED . serverVar('REQUEST_URI')); + self::error(_ERROR_DISALLOWED); + return; + } + + /** + * Admin::action_PluginAdmin() + * Output pluginadmin + * + * @param string $skinContents + * @param string $extrahead + * @return void + */ + static public function action_PluginAdmin($skinContents, $extrahead = '') + { + self::$extrahead .= $extrahead; + self::$skin->parse('pluginadmin', $skinContents); + return; + } + + /** + * Admin::action_bookmarklet() + * + * @param void + * @return void + */ +<<<<<<< HEAD + function pagehead($extrahead = '') + { + global $member, $nucleus, $CONF, $manager; + + $manager->notify( + 'AdminPrePageHead', + array( + 'extrahead' => &$extrahead, + 'action' => $this->action)); + + $baseUrl = Entity::hsc($CONF['AdminURL']); + if ( !array_key_exists('AdminCSS',$CONF) ) + { + DB::execute("INSERT INTO ".sql_table('config')." VALUES ('AdminCSS', 'original')"); + $CONF['AdminCSS'] = 'original'; + } + + /* HTTP 1.1 application for no caching */ + header("Cache-Control: no-cache, must-revalidate"); + header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); + + $root_element = 'html'; + $charset = i18n::get_current_charset(); + $locale = preg_replace('#_#', '-', i18n::get_current_locale()); + + echo "xml_version_info}\" encoding=\"{$charset}\" ?>\n"; + echo "formal_public_identifier}\" \"{$this->system_identifier}\">\n"; + echo "<{$root_element} xmlns=\"{$this->xhtml_namespace}\" xml:lang=\"{$locale}\" lang=\"{$locale}\">\n"; + echo "\n"; + echo '' . Entity::hsc($CONF['SiteName']) . " - Admin\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo "{$extrahead}\n"; + echo "\n\n"; + echo "\n"; + echo "
\n"; + echo "
\n"; + echo '

' . Entity::hsc($CONF['SiteName']) . "

\n"; + echo "
\n"; + echo "
\n"; + echo "
\n"; + echo "
\n"; + if ( $member->isLoggedIn() ) + { + echo _LOGGEDINAS . ' ' . $member->getDisplayName() ." - " . _LOGOUT. "
\n"; + echo "" . _ADMINHOME . " - "; + } + else + { + echo '' . _NOTLOGGEDIN . "
\n"; + } + echo ""._YOURSITE."
\n"; + echo '('; +======= + static private function action_bookmarklet() + { + global $member, $manager; +>>>>>>> skinnable-master + + $blogid = intRequestVar('blogid'); + $member->teamRights($blogid) or self::disallow(); + + self::$skin->parse('bookmarklet'); + return; + } + + /** + * Admin::action_actionlog() + * + * @param void + * @return void + */ + static private function action_actionlog() + { + global $member, $manager; + + $member->isAdmin() or self::disallow(); + + self::$skin->parse('actionlog'); + return; + } + + /** + * Admin::action_banlist() + * + * @param void + * @return void + */ + static private function action_banlist() + { + global $member, $manager; + + $blogid = intRequestVar('blogid'); + $member->blogAdminRights($blogid) or self::disallow(); + + self::$skin->parse('banlist'); + return; + } + + /** + * Admin::action_banlistdelete() + * + * @param void + * @return void + */ + static private function action_banlistdelete() + { + global $member, $manager; + + $blogid = intRequestVar('blogid'); + $member->blogAdminRights($blogid) or self::disallow(); + + self::$skin->parse('banlistdelete'); + return; + } + + /** + * Admin::action_banlistdeleteconfirm() + * + * @param void + * @return void + */ + static private function action_banlistdeleteconfirm() + { + global $member, $manager; + + $blogid = intPostVar('blogid'); + $allblogs = postVar('allblogs'); + $iprange = postVar('iprange'); + + $member->blogAdminRights($blogid) or self::disallow(); + + $deleted = array(); + + if ( !$allblogs ) + { + if ( Ban::removeBan($blogid, $iprange) ) + { + $deleted[] = $blogid; + } + } + else + { + // get blogs fot which member has admin rights + $adminblogs = $member->getAdminBlogs(); + foreach ($adminblogs as $blogje) + { + if ( Ban::removeBan($blogje, $iprange) ) + { + $deleted[] = $blogje; + } + } + } + + if ( sizeof($deleted) == 0 ) + { + self::error(_ERROR_DELETEBAN); + return; + } + + /* TODO: we should use other ways */ + $_REQUEST['delblogs'] = $deleted; + + self::$skin->parse('banlistdeleteconfirm'); + return; + } + + /** +<<<<<<< HEAD + * Admin::action_bookmarklet() +======= + * Admin::action_banlistnewfromitem() +>>>>>>> skinnable-master + * + * @param void + * @return void + */ +<<<<<<< HEAD + public function action_bookmarklet() + { + global $member, $manager; + + $blogid = intRequestVar('blogid'); + $member->teamRights($blogid) or $this->disallow(); + $blog =& $manager->getBlog($blogid); + + $this->pagehead(); + + echo '

(' . _BACKHOME . ")

\n"; + + echo '

' . _BOOKMARKLET_TITLE . "

\n"; + echo '

'; + echo _BOOKMARKLET_DESC1 . _BOOKMARKLET_DESC2 . _BOOKMARKLET_DESC3 . _BOOKMARKLET_DESC4 . _BOOKMARKLET_DESC5; + echo "

\n"; + + echo '

' . _BOOKMARKLET_BOOKARKLET . "

\n"; + echo '

'; + echo _BOOKMARKLET_BMARKTEXT . '' . _BOOKMARKLET_BMARKTEST . ''; + echo "

\n"; + echo '

'; + echo '' . sprintf(_BOOKMARKLET_ANCHOR, Entity::hsc($blog->getName())) . ''; + echo _BOOKMARKLET_BMARKFOLLOW; + echo "

\n"; + + $this->pagefoot(); + return; + } + + /** + * @todo document this + */ + function action_actionlog() { + global $member, $manager; + + $member->isAdmin() or $this->disallow(); + + $this->pagehead(); + + echo '

(',_BACKTOMANAGE,')

'; + + $url = $manager->addTicketToUrl('index.php?action=clearactionlog'); + + ?> +

+

+ ' . _ACTIONLOG_TITLE . ''; + + $query = 'SELECT * FROM '.sql_table('actionlog').' ORDER BY timestamp DESC'; + $template['content'] = 'actionlist'; + $amount = showlist($query,'table',$template); + + $this->pagefoot(); + + } + + /** + * @todo document this + */ + function action_banlist() { + global $member, $manager; + + $blogid = intRequestVar('blogid'); + + $member->blogAdminRights($blogid) or $this->disallow(); + + $blog =& $manager->getBlog($blogid); + + $this->pagehead(); + + echo '

(',_BACKHOME,')

'; + + echo '

' . _BAN_TITLE . " '". $this->bloglink($blog) ."'

"; + + $query = 'SELECT * FROM '.sql_table('ban').' WHERE blogid='.$blogid.' ORDER BY iprange'; + $template['content'] = 'banlist'; + $amount = showlist($query,'table',$template); + + if ($amount == 0) + echo _BAN_NONE; + + echo '

'._BAN_NEW_TITLE.'

'; + echo "

"._BAN_NEW_TEXT."

"; + + + $this->pagefoot(); + + } + + /** + * @todo document this + */ + function action_banlistdelete() { + global $member, $manager; + + $blogid = intRequestVar('blogid'); + $iprange = requestVar('iprange'); + + $member->blogAdminRights($blogid) or $this->disallow(); + + $blog =& $manager->getBlog($blogid); + $banBlogName = Entity::hsc($blog->getName()); + + $this->pagehead(); + ?> +

+ +
+ +

+ +

+ + +

+ +

+ +
+ + + +
+ +
+ +

+ +
+ addTicketHidden() ?> + + +
+ +
+ pagefoot(); + } + + /** + * @todo document this + */ + function action_banlistdeleteconfirm() { + global $member, $manager; + + $blogid = intPostVar('blogid'); + $allblogs = postVar('allblogs'); + $iprange = postVar('iprange'); + + $member->blogAdminRights($blogid) or $this->disallow(); + + $deleted = array(); + + if (!$allblogs) { + if (Ban::removeBan($blogid, $iprange)) + array_push($deleted, $blogid); + } else { + // get blogs fot which member has admin rights + $adminblogs = $member->getAdminBlogs(); + foreach ($adminblogs as $blogje) { + if (Ban::removeBan($blogje, $iprange)) + array_push($deleted, $blogje); + } + } + + if (sizeof($deleted) == 0) + $this->error(_ERROR_DELETEBAN); + + $this->pagehead(); + + echo '(',_BACK,')'; + echo '

'._BAN_REMOVED_TITLE.'

'; + echo "

"._BAN_REMOVED_TEXT."

"; + + echo "
    "; + foreach ($deleted as $delblog) { + $b =& $manager->getBlog($delblog); + echo "
  • " . Entity::hsc($b->getName()). "
  • "; + } + echo "
"; + + $this->pagefoot(); + + } + + /** + * @todo document this + */ + function action_banlistnewfromitem() { + $this->action_banlistnew(getBlogIDFromItemID(intRequestVar('itemid'))); + } + + /** + * @todo document this + */ + function action_banlistnew($blogid = '') { + global $member, $manager; + + if ($blogid == '') + $blogid = intRequestVar('blogid'); + + $ip = requestVar('ip'); + + $member->blogAdminRights($blogid) or $this->disallow(); + + $blog =& $manager->getBlog($blogid); + + $this->pagehead(); + ?> +

+ + +
+ +

+ +

+ +
+ + +
+ +
+ + + +
+ + + + "; + echo ""; + } + ?> +
+ +

+ +

+ +
+ + +
+ +
+ +

+ +

+ +
+ +

+ +
+ + addTicketHidden() ?> + +
+ +
+ + pagefoot(); + } + + /** + * @todo document this + */ + function action_banlistadd() { + global $member; + + $blogid = intPostVar('blogid'); + $allblogs = postVar('allblogs'); + $iprange = postVar('iprange'); + if ($iprange == "custom") + $iprange = postVar('customiprange'); + $reason = postVar('reason'); + + $member->blogAdminRights($blogid) or $this->disallow(); + + // TODO: check IP range validity + + if (!$allblogs) { + if (!Ban::addBan($blogid, $iprange, $reason)) + $this->error(_ERROR_ADDBAN); + } else { + // get blogs fot which member has admin rights + $adminblogs = $member->getAdminBlogs(); + $failed = 0; + foreach ($adminblogs as $blogje) { + if (!Ban::addBan($blogje, $iprange, $reason)) + $failed = 1; + } + if ($failed) + $this->error(_ERROR_ADDBAN); + } + + $this->action_banlist(); + + } + + /** + * @todo document this + */ + function action_clearactionlog() { + global $member; + + $member->isAdmin() or $this->disallow(); + + ActionLog::clear(); + + $this->action_manage(_MSG_ACTIONLOGCLEARED); + } + + /** + * @todo document this + */ + function action_backupoverview() { + global $member, $manager; + + $member->isAdmin() or $this->disallow(); + + $this->pagehead(); + + echo '

(',_BACKTOMANAGE,')

'; + ?> +

+ +

+ +

+ +

+ + addTicketHidden() ?> + + +
+ +

+ + +

+ +
+ + +

+ +
+ +

+ +

+ + addTicketHidden() ?> + +

+ +
+
+

+======= + static private function action_banlistnewfromitem() + { + global $manager; + + $itemid = intRequestVar('itemid'); + $item =& $manager->getItem($itemid, 1, 1); + self::action_banlistnew($item['blogid']); + return; + } + + /** + * Admin::action_banlistnew() + * + * @param integer $blogid ID for weblog + * @return void + */ + static private function action_banlistnew($blogid = '') + { + global $member, $manager; + + if ( $blogid == '' ) + { + $blogid = intRequestVar('blogid'); + } + + $ip = requestVar('ip'); + + $member->blogAdminRights($blogid) or self::disallow(); + + /* TODO: we should consider to use the other way instead of this */ + $_REQUEST['blogid'] = $blogid; + + self::$skin->parse('banlistnew'); + + return; + } +>>>>>>> skinnable-master + + /** + * Admin::action_banlistadd() + * + * @param void + * @return void + */ + static private function action_banlistadd() + { + global $member; + + $blogid = intPostVar('blogid'); + $allblogs = postVar('allblogs'); + $iprange = postVar('iprange'); + + if ( $iprange == "custom" ) + { + $iprange = postVar('customiprange'); + } + $reason = postVar('reason'); + + $member->blogAdminRights($blogid) or self::disallow(); + + // TODO: check IP range validity + + if ( !$allblogs ) + { + if ( !Ban::addBan($blogid, $iprange, $reason) ) + { + self::error(_ERROR_ADDBAN); + return; + } + } + else + { + // get blogs fot which member has admin rights + $adminblogs = $member->getAdminBlogs(); + $failed = 0; + foreach ($adminblogs as $blogje) + { + if ( !Ban::addBan($blogje, $iprange, $reason) ) + { + $failed = 1; + } + } + if ( $failed ) + { + self::error(_ERROR_ADDBAN); + return; + } + } + self::action_banlist(); + return; + } + + /** + * Admin::action_clearactionlog() + * + * @param void + * @return void + */ + static private function action_clearactionlog() + { + global $member; + + $member->isAdmin() or self::disallow(); + + ActionLog::clear(); + + self::action_manage(_MSG_ACTIONLOGCLEARED); + return; + } + + /** + * Admin::action_backupoverview() + * + * @param void + * @return void + */ + static private function action_backupoverview() + { + global $member, $manager; + + $member->isAdmin() or self::disallow(); + + self::$skin->parse('backupoverview'); + return; + } + + /** + * Admin::action_backupcreate() + * create file for backup + * + * @param void + * @return void + * + */ + static private function action_backupcreate() + { + global $member, $DIR_LIBS; + + $member->isAdmin() or self::disallow(); + + // use compression ? + $useGzip = (integer) postVar('gzip'); + + include($DIR_LIBS . 'backup.php'); + + // try to extend time limit + // (creating/restoring dumps might take a while) + @set_time_limit(1200); + + Backup::do_backup($useGzip); + return; + } + + /** + * Admin::action_backuprestore() + * restoring from uploaded file + * + * @param void + * @return void + */ + static private function action_backuprestore() + { + global $member, $DIR_LIBS; + + $member->isAdmin() or self::disallow(); + + if ( intPostVar('letsgo') != 1 ) + { + self::error(_ERROR_BACKUP_NOTSURE); + return; + } + + include($DIR_LIBS . 'backup.php'); + + // try to extend time limit + // (creating/restoring dumps might take a while) + @set_time_limit(1200); + + $message = Backup::do_restore(); + if ( $message != '' ) + { + self::error($message); + return; + } + self::$skin->parse('backuprestore'); + return; + } + + /** + * Admin::action_pluginlist() + * output the list of installed plugins + * + * @param void + * @return void + * + */ + static private function action_pluginlist() + { + global $DIR_PLUGINS, $member, $manager; + + // check if allowed + $member->isAdmin() or self::disallow(); + + self::$skin->parse('pluginlist'); + return; + } + + /** + * Admin::action_pluginhelp() + * + * @param void + * @return void + */ + static private function action_pluginhelp() + { + global $member, $manager, $DIR_PLUGINS, $CONF; + +<<<<<<< HEAD + while ( $filename = readdir($dirhandle) ) + { + if ( preg_match('#^NP_(.*)\.php$#', $filename, $matches) ) + { + $name = $matches[1]; + + // only show in list when not yet installed + $query = 'SELECT * FROM %s WHERE pfile = %s'; + $query = sprintf($query, sql_table('plugin'), DB::quoteValue('NP_'.$name)); + $res = DB::getResult($query); + + if ( $res->rowCount() == 0 ) + { + array_push($candidates, $name); + } + } + } +======= + // check if allowed + $member->isAdmin() or self::disallow(); +>>>>>>> skinnable-master + + $plugid = intGetVar('plugid'); + + if ( !$manager->pidInstalled($plugid) ) + { + self::error(_ERROR_NOSUCHPLUGIN); + return; + } + + self::$skin->parse('pluginhelp'); + return; + } + +<<<<<<< HEAD + /** + * @todo document this + */ + function action_pluginhelp() { + global $member, $manager, $DIR_PLUGINS, $CONF; + + // check if allowed + $member->isAdmin() or $this->disallow(); + + $plugid = intGetVar('plugid'); + + if (!$manager->pidInstalled($plugid)) + $this->error(_ERROR_NOSUCHPLUGIN); + + $plugName = $manager->getPluginNameFromPid($plugid); + + $this->pagehead(); + + echo '

(',_PLUGS_BACK,')

'; + + echo '

',_PLUGS_HELP_TITLE,': ',Entity::hsc($plugName),'

'; + + $plug =& $manager->getPlugin($plugName); + $helpFile = $DIR_PLUGINS.$plug->getShortName().'/help.html'; + + if (($plug->supportsFeature('HelpPage') > 0) && (@file_exists($helpFile))) { + @readfile($helpFile); + } else { + echo '

Error: ', _ERROR_PLUGNOHELPFILE,'

'; + echo '

(',_BACK,')

'; + } + + + $this->pagefoot(); + } + +======= +>>>>>>> skinnable-master + /** + * Admin::action_pluginadd() + * + * @param Void + * @return Void + * + */ + static private function action_pluginadd() + { + global $member, $manager, $DIR_PLUGINS; + + // check if allowed + $member->isAdmin() or self::disallow(); + + $name = postVar('filename'); + + if ( $manager->pluginInstalled($name) ) + { + self::error(_ERROR_DUPPLUGIN); + return; + } + + if ( !checkPlugin($name) ) + { + self::error(_ERROR_PLUGFILEERROR . ' (' . Entity::hsc($name) . ')'); + return; + } + + // get number of currently installed plugins +<<<<<<< HEAD + $res = DB::getResult('SELECT * FROM '.sql_table('plugin')); +======= + $res = DB::getResult('SELECT * FROM ' . sql_table('plugin')); +>>>>>>> skinnable-master + $numCurrent = $res->rowCount(); + + // plugin will be added as last one in the list + $newOrder = $numCurrent + 1; + + $data = array('file' => &$name); + $manager->notify('PreAddPlugin', $data); + + // do this before calling getPlugin (in case the plugin id is used there) +<<<<<<< HEAD + $query = 'INSERT INTO '.sql_table('plugin').' (porder, pfile) VALUES ('.$newOrder.','.DB::quoteValue($name).')'; +======= + $query = "INSERT INTO %s (porder, pfile) VALUES (%d, %s);"; + $query = sprintf($query, sql_table('plugin'), (integer) $newOrder, DB::quoteValue($name)); +>>>>>>> skinnable-master + DB::execute($query); + $iPid = DB::getInsertId(); + + $manager->clearCachedInfo('installedPlugins'); + + // Load the plugin for condition checking and instalation + $plugin =& $manager->getPlugin($name); + + // check if it got loaded (could have failed) + if ( !$plugin ) + { +<<<<<<< HEAD + DB::execute('DELETE FROM ' . sql_table('plugin') . ' WHERE pid='. intval($iPid)); +======= + $query = "DELETE FROM %s WHERE pid=%d;"; + $query = sprintf($query, sql_table('plugin'), (integer) $iPid); + + DB::execute($query); + +>>>>>>> skinnable-master + $manager->clearCachedInfo('installedPlugins'); + self::error(_ERROR_PLUGIN_LOAD); + return; + } + + // check if plugin needs a newer Nucleus version + if ( getNucleusVersion() < $plugin->getMinNucleusVersion() ) + { + // uninstall plugin again... + self::deleteOnePlugin($plugin->getID()); + + // ...and show error + self::error(_ERROR_NUCLEUSVERSIONREQ . Entity::hsc($plugin->getMinNucleusVersion())); + return; + } + + // check if plugin needs a newer Nucleus version + if ( (getNucleusVersion() == $plugin->getMinNucleusVersion()) && (getNucleusPatchLevel() < $plugin->getMinNucleusPatchLevel()) ) + { + // uninstall plugin again... + self::deleteOnePlugin($plugin->getID()); + + // ...and show error + self::error(_ERROR_NUCLEUSVERSIONREQ . Entity::hsc( $plugin->getMinNucleusVersion() . ' patch ' . $plugin->getMinNucleusPatchLevel() ) ); + return; + } + + $pluginList = $plugin->getPluginDep(); + foreach ( $pluginList as $pluginName ) + { + $res = DB::getResult('SELECT * FROM '.sql_table('plugin') . ' WHERE pfile=' . DB::quoteValue($pluginName)); + if ($res->rowCount() == 0) + { + // uninstall plugin again... + self::deleteOnePlugin($plugin->getID()); + self::error(sprintf(_ERROR_INSREQPLUGIN, Entity::hsc($pluginName))); + return; + } + } + + // call the install method of the plugin + $plugin->install(); + + $data = array('plugin' => &$plugin); + $manager->notify('PostAddPlugin', $data); + + // update all events + self::action_pluginupdate(); + return; + } + + /** + * ADMIN:action_pluginupdate(): + * + * @param Void + * @return Void + * + */ + static private function action_pluginupdate() + { + global $member, $manager, $CONF; + + // check if allowed + $member->isAdmin() or self::disallow(); + + // delete everything from plugin_events + DB::execute('DELETE FROM '.sql_table('plugin_event')); + + // loop over all installed plugins + $res = DB::getResult('SELECT pid, pfile FROM '.sql_table('plugin')); + foreach ( $res as $row ) + { + $pid = $row['pid']; + $plug =& $manager->getPlugin($row['pfile']); + if ( $plug ) + { + $eventList = $plug->getEventList(); + foreach ( $eventList as $eventName ) + { + $query = "INSERT INTO %s (pid, event) VALUES (%d, %s)"; + $query = sprintf($query, sql_table('plugin_event'), (integer) $pid, DB::quoteValue($eventName)); + DB::execute($query); + } + } + } + redirect($CONF['AdminURL'] . '?action=pluginlist'); + return; + } + + /** + * Admin::action_plugindelete() + * + * @param void + * @return void + */ + static private function action_plugindelete() + { + global $member, $manager; + + // check if allowed + $member->isAdmin() or self::disallow(); + + $pid = intGetVar('plugid'); + + if ( !$manager->pidInstalled($pid) ) + { + self::error(_ERROR_NOSUCHPLUGIN); + return; + } + + self::$skin->parse('plugindelete'); + return; + } + + /** + * Admin::action_plugindeleteconfirm() + * + * @param void + * @return void + */ + static private function action_plugindeleteconfirm() + { + global $member, $manager, $CONF; + + // check if allowed + $member->isAdmin() or self::disallow(); + + $pid = intPostVar('plugid'); + + $error = self::deleteOnePlugin($pid, 1); + if ( $error ) + { + self::error($error); + return; + } + + redirect($CONF['AdminURL'] . '?action=pluginlist'); + return; + } + + /** + * Admin::deleteOnePlugin() + * + * @param integer $pid + * @param boolean $callUninstall + * @return string empty or message if failed + */ + static public function deleteOnePlugin($pid, $callUninstall = 0) + { + global $manager; + + $pid = intval($pid); + + if ( !$manager->pidInstalled($pid) ) + { + return _ERROR_NOSUCHPLUGIN; + } + + $query = "SELECT pfile as result FROM %s WHERE pid=%d;"; + $query = sprintf($query, sql_table('plugin'), (integer) $pid); + $name = DB::getValue($query); + + // check dependency before delete + $res = DB::getResult('SELECT pfile FROM ' . sql_table('plugin')); + foreach ( $res as $row ) + { + $plug =& $manager->getPlugin($row['pfile']); + if ( $plug ) + { + $depList = $plug->getPluginDep(); + foreach ( $depList as $depName ) + { + if ( $name == $depName ) + { + return sprintf(_ERROR_DELREQPLUGIN, $row['pfile']); + } + } + } + } + + $data = array('plugid' => $pid); + $manager->notify('PreDeletePlugin', $data); + + // call the unInstall method of the plugin + if ( $callUninstall ) + { + $plugin =& $manager->getPlugin($name); + if ( $plugin ) + { + $plugin->unInstall(); + } + } + + // delete all subscriptions + DB::execute('DELETE FROM ' . sql_table('plugin_event') . ' WHERE pid=' . $pid); + + // delete all options + // get OIDs from plugin_option_desc + $res = DB::getResult('SELECT oid FROM ' . sql_table('plugin_option_desc') . ' WHERE opid=' . $pid); + $aOIDs = array(); + foreach ( $res as $row ) + { + array_push($aOIDs, $row['oid']); + } + + // delete from plugin_option and plugin_option_desc + DB::execute('DELETE FROM ' . sql_table('plugin_option_desc') . ' WHERE opid=' . $pid); + if (count($aOIDs) > 0) + { + DB::execute('DELETE FROM ' . sql_table('plugin_option') . ' WHERE oid in (' . implode(',', $aOIDs) . ')'); + } + + // update order numbers + $res = DB::getValue('SELECT porder FROM ' . sql_table('plugin') . ' WHERE pid=' . $pid); + DB::execute('UPDATE ' . sql_table('plugin') . ' SET porder=(porder - 1) WHERE porder>' . $res); + + // delete row + DB::execute('DELETE FROM ' . sql_table('plugin') . ' WHERE pid=' . $pid); + + $manager->clearCachedInfo('installedPlugins'); + $data = array('plugid' => $pid); + $manager->notify('PostDeletePlugin', $data); + + return ''; + } + + /** + * Admin::action_pluginup() + * + * @param void + * @return void + */ + static private function action_pluginup() + { + global $member, $manager, $CONF; + + // check if allowed + $member->isAdmin() or self::disallow(); + + $plugid = intGetVar('plugid'); + + if ( !$manager->pidInstalled($plugid) ) + { +<<<<<<< HEAD + $res = DB::getResult('SELECT * FROM '.sql_table('plugin') . ' WHERE pfile=' . DB::quoteValue($pluginName)); + if ($res->rowCount() == 0) + { + // uninstall plugin again... + $this->deleteOnePlugin($plugin->getID()); + $this->error(sprintf(_ERROR_INSREQPLUGIN, Entity::hsc($pluginName))); + } +======= + self::error(_ERROR_NOSUCHPLUGIN); + return; +>>>>>>> skinnable-master + } + + // 1. get old order number + $oldOrder = DB::getValue('SELECT porder FROM ' . sql_table('plugin') . ' WHERE pid=' . $plugid); + + // 2. calculate new order number + $newOrder = ($oldOrder > 1) ? ($oldOrder - 1) : 1; + + // 3. update plug numbers + DB::execute('UPDATE ' . sql_table('plugin') . ' SET porder=' . $oldOrder . ' WHERE porder=' . $newOrder); + DB::execute('UPDATE ' . sql_table('plugin') . ' SET porder=' . $newOrder . ' WHERE pid=' . $plugid); + + //self::action_pluginlist(); + // To avoid showing ticket in the URL, redirect to pluginlist, instead. + redirect($CONF['AdminURL'] . '?action=pluginlist'); + return; + } + + /** + * Admin::action_plugindown() + * + * @param void + * @return void + */ + static private function action_plugindown() + { + global $member, $manager, $CONF; + + // check if allowed +<<<<<<< HEAD + $member->isAdmin() or $this->disallow(); + + // delete everything from plugin_events + DB::execute('DELETE FROM '.sql_table('plugin_event')); + + // loop over all installed plugins + $res = DB::getResult('SELECT pid, pfile FROM '.sql_table('plugin')); + foreach ( $res as $row ) + { + $pid = $row['pid']; + $plug =& $manager->getPlugin($row['pfile']); + if ( $plug ) + { + $eventList = $plug->getEventList(); + foreach ( $eventList as $eventName ) + { + $query = "INSERT INTO %s (pid, event) VALUES (%d, %s)"; + $query = sprintf($query, sql_table('plugin_event'), (integer) $pid, DB::quoteValue($eventName)); + DB::execute($query); + } + } +======= + $member->isAdmin() or self::disallow(); + + $plugid = intGetVar('plugid'); + if ( !$manager->pidInstalled($plugid) ) + { + self::error(_ERROR_NOSUCHPLUGIN); + return; +>>>>>>> skinnable-master + } + + // 1. get old order number + $oldOrder = DB::getValue('SELECT porder FROM ' . sql_table('plugin') . ' WHERE pid=' . $plugid); + + $res = DB::getResult('SELECT * FROM ' . sql_table('plugin')); + $maxOrder = $res->rowCount(); + + // 2. calculate new order number + $newOrder = ($oldOrder < $maxOrder) ? ($oldOrder + 1) : $maxOrder; + + // 3. update plug numbers + DB::execute('UPDATE ' . sql_table('plugin') . ' SET porder=' . $oldOrder . ' WHERE porder=' . $newOrder); + DB::execute('UPDATE ' . sql_table('plugin') . ' SET porder=' . $newOrder . ' WHERE pid=' . $plugid); + + //self::action_pluginlist(); + // To avoid showing ticket in the URL, redirect to pluginlist, instead. + redirect($CONF['AdminURL'] . '?action=pluginlist'); + return; + } + +<<<<<<< HEAD + /** + * @todo document this + */ + function action_plugindelete() { + global $member, $manager; + + // check if allowed + $member->isAdmin() or $this->disallow(); + + $pid = intGetVar('plugid'); + + if (!$manager->pidInstalled($pid)) + $this->error(_ERROR_NOSUCHPLUGIN); + + $this->pagehead(); + ?> +

+ +

getPluginNameFromPid($pid) ?>?

+ +
+ addTicketHidden() ?> + + + +
+ pagefoot(); + } + + /** + * @todo document this + */ + function action_plugindeleteconfirm() { + global $member, $manager, $CONF; + + // check if allowed + $member->isAdmin() or $this->disallow(); + + $pid = intPostVar('plugid'); + + $error = $this->deleteOnePlugin($pid, 1); + if ($error) { + $this->error($error); + } + + redirect($CONF['AdminURL'] . '?action=pluginlist'); +// $this->action_pluginlist(); + } + + /** + * @todo document this + */ + function deleteOnePlugin($pid, $callUninstall = 0) { + global $manager; + + $pid = intval($pid); + + if (!$manager->pidInstalled($pid)) + return _ERROR_NOSUCHPLUGIN; + + $name = DB::getValue('SELECT pfile as result FROM '.sql_table('plugin').' WHERE pid='.$pid); + +/* // call the unInstall method of the plugin + if ($callUninstall) { + $plugin =& $manager->getPlugin($name); + if ($plugin) $plugin->unInstall(); + }*/ + + // check dependency before delete + $res = DB::getResult('SELECT pfile FROM '.sql_table('plugin')); + foreach ( $res as $row ) { + $plug =& $manager->getPlugin($row['pfile']); + if ($plug) + { + $depList = $plug->getPluginDep(); + foreach ($depList as $depName) + { + if ($name == $depName) + { + return sprintf(_ERROR_DELREQPLUGIN, $row['pfile']); + } + } + } + } + + $manager->notify('PreDeletePlugin', array('plugid' => $pid)); + + // call the unInstall method of the plugin + if ($callUninstall) { + $plugin =& $manager->getPlugin($name); + if ($plugin) $plugin->unInstall(); + } + + // delete all subscriptions + DB::execute('DELETE FROM '.sql_table('plugin_event').' WHERE pid=' . $pid); + + // delete all options + // get OIDs from plugin_option_desc + $res = DB::getResult('SELECT oid FROM ' . sql_table('plugin_option_desc') . ' WHERE opid=' . $pid); + $aOIDs = array(); + foreach ( $res as $row ) { + array_push($aOIDs, $row['oid']); + } + + // delete from plugin_option and plugin_option_desc + DB::execute('DELETE FROM '.sql_table('plugin_option_desc').' WHERE opid=' . $pid); + if (count($aOIDs) > 0) + DB::execute('DELETE FROM '.sql_table('plugin_option').' WHERE oid in ('.implode(',',$aOIDs).')'); + + // update order numbers + $res = DB::getValue('SELECT porder FROM '.sql_table('plugin').' WHERE pid=' . $pid); + DB::execute('UPDATE '.sql_table('plugin').' SET porder=(porder - 1) WHERE porder>'.$res); + + // delete row + DB::execute('DELETE FROM '.sql_table('plugin').' WHERE pid='.$pid); + + $manager->clearCachedInfo('installedPlugins'); + $manager->notify('PostDeletePlugin', array('plugid' => $pid)); + + return ''; + } + + /** + * @todo document this + */ + function action_pluginup() { + global $member, $manager, $CONF; + + // check if allowed + $member->isAdmin() or $this->disallow(); + + $plugid = intGetVar('plugid'); + + if (!$manager->pidInstalled($plugid)) + $this->error(_ERROR_NOSUCHPLUGIN); + + // 1. get old order number + $oldOrder = DB::getValue('SELECT porder FROM '.sql_table('plugin').' WHERE pid='.$plugid); + + // 2. calculate new order number + $newOrder = ($oldOrder > 1) ? ($oldOrder - 1) : 1; + + // 3. update plug numbers + DB::execute('UPDATE '.sql_table('plugin').' SET porder='.$oldOrder.' WHERE porder='.$newOrder); + DB::execute('UPDATE '.sql_table('plugin').' SET porder='.$newOrder.' WHERE pid='.$plugid); + + //$this->action_pluginlist(); + // To avoid showing ticket in the URL, redirect to pluginlist, instead. + redirect($CONF['AdminURL'] . '?action=pluginlist'); + } + + /** + * @todo document this + */ + function action_plugindown() { + global $member, $manager, $CONF; + + // check if allowed + $member->isAdmin() or $this->disallow(); + + $plugid = intGetVar('plugid'); + if (!$manager->pidInstalled($plugid)) + $this->error(_ERROR_NOSUCHPLUGIN); + + // 1. get old order number + $oldOrder = DB::getValue('SELECT porder FROM '.sql_table('plugin').' WHERE pid='.$plugid); + + $res = DB::getResult('SELECT * FROM '.sql_table('plugin')); + $maxOrder = $res->rowCount(); + + // 2. calculate new order number + $newOrder = ($oldOrder < $maxOrder) ? ($oldOrder + 1) : $maxOrder; + + // 3. update plug numbers + DB::execute('UPDATE '.sql_table('plugin').' SET porder='.$oldOrder.' WHERE porder='.$newOrder); + DB::execute('UPDATE '.sql_table('plugin').' SET porder='.$newOrder.' WHERE pid='.$plugid); + + //$this->action_pluginlist(); + // To avoid showing ticket in the URL, redirect to pluginlist, instead. + redirect($CONF['AdminURL'] . '?action=pluginlist'); + } + +======= +>>>>>>> skinnable-master + /** + * Admin::action_pluginoptions() + * + * Output Plugin option page + * + * @access public + * @param string $message message when fallbacked + * @return void + * + */ + static private function action_pluginoptions($message = '') + { + global $member, $manager; + + // check if allowed + $member->isAdmin() or self::disallow(); + + $pid = intRequestVar('plugid'); + if ( !$manager->pidInstalled($pid) ) + { + self::error(_ERROR_NOSUCHPLUGIN); + return; + } + +<<<<<<< HEAD + $pname = $manager->getPluginNameFromPid($pid); + + /* NOTE: to include translation file */ + $manager->getPlugin($pname); + + $extrahead = "\n"; + $this->pagehead($extrahead); + echo '

(' . _PLUGS_BACK . ")

\n"; + echo '

' . sprintf(_PLUGIN_OPTIONS_TITLE, Entity::hsc($pname)) . "

\n"; + + if ( isset($message) ) + { + echo $message; + } + + echo "
\n"; + echo "
\n"; + echo "\n"; + echo "\n"; + $manager->addTicketHidden(); + + $options = array(); + $query = "SELECT * FROM %s WHERE ocontext='global' and opid=%d ORDER BY oid ASC"; + $query = sprintf($query, sql_table('plugin_option_desc'), $pid); + $result = DB::getResult($query); + foreach ( $result as $row ) + { + $options[$row['oid']] = array( + 'oid' => $row['oid'], + 'value' => $row['odef'], + 'name' => $row['oname'], + 'description' => $row['odesc'], + 'type' => $row['otype'], + 'typeinfo' => $row['oextra'], + 'contextid' => 0 + ); + } + // fill out actual values + if ( count($options) > 0 ) + { + $query = "SELECT oid, ovalue FROM %s WHERE oid in (%s)"; + $query = sprintf($query, sql_table('plugin_option'), implode(',',array_keys($options))); + $result = DB::getResult($query); + foreach ( $result as $row ) + { + $options[$row['oid']]['value'] = $row['ovalue']; + } + } + + // call plugins + $data = array('context' => 'global', 'plugid' => $pid, 'options'=>&$options); + $manager->notify('PrePluginOptionsEdit',$data); + + $template['content'] = 'plugoptionlist'; + $amount = showlist($options,'table', $template); + if ( $amount == 0 ) + { + echo '

',_ERROR_NOPLUGOPTIONS,'

'; +======= + if ( isset($message) ) + { + self::$headMess = $message; +>>>>>>> skinnable-master + } + $plugname = $manager->getPluginNameFromPid($pid); + $plugin = $manager->getPlugin($plugname); + self::$extrahead .= "\n"; + + self::$skin->parse('pluginoptions'); + return; + } + + /** + * Admin::action_pluginoptionsupdate() + * + * Update plugin options and fallback to plugin option page + * + * @access public + * @param void + * @return void + */ + static private function action_pluginoptionsupdate() + { + global $member, $manager; + + // check if allowed + $member->isAdmin() or self::disallow(); + + $pid = intRequestVar('plugid'); + + if ( !$manager->pidInstalled($pid) ) + { + self::error(_ERROR_NOSUCHPLUGIN); + return; + } + + $aOptions = requestArray('plugoption'); + NucleusPlugin::apply_plugin_options($aOptions); + + $data = array( + 'context' => 'global', + 'plugid' => $pid + ); + $manager->notify('PostPluginOptionsUpdate', $data); + + self::action_pluginoptions(_PLUGS_OPTIONS_UPDATED); + return; + } + + /** + * Admin::skineditgeneral() + * + * @param integer $skinid + * @param string $handler + * @return string empty or message if failed + */ + static private function skineditgeneral($skinid, $handler='') + { + global $manager; + + $name = postVar('name'); + $desc = postVar('desc'); + $type = postVar('type'); + $inc_mode = postVar('inc_mode'); + $inc_prefix = postVar('inc_prefix'); + + $skin =& $manager->getSkin($skinid, $handler); + + // 1. Some checks + if ( !isValidSkinName($name) ) + { + return _ERROR_BADSKINNAME; + } + + if ( ($skin->getName() != $name) && SKIN::exists($name) ) + { + return _ERROR_DUPSKINNAME; + } + + if ( !$type ) + { + $type = 'text/html'; + } + + if ( !$inc_mode ) + { + $inc_mode = 'normal'; + } + + // 2. Update description + $skin->updateGeneralInfo($name, $desc, $type, $inc_mode, $inc_prefix); + + return ''; + } + /** + * Admin::skindeleteconfirm() + * + * @param integer $skinid + * @return void + */ + static private function skindeleteconfirm($skinid) + { + global $manager; + + if ( !in_array(self::$action, self::$adminskin_actions) ) + { + $event_identifier = 'Skin'; + } + else + { + $event_identifier = 'AdminSkin'; + } + + $data = array('skinid' => $skinid); + $manager->notify("PreDelete{$event_identifier}", $data); + + // 1. delete description + $query = "DELETE FROM %s WHERE sdnumber=%d;"; + $query = sprintf($query, sql_table('skin_desc'), (integer) $skinid); + DB::execute($query); + + // 2. delete parts + $query = "DELETE FROM %s WHERE sdesc=%d;"; + $query = sprintf($query, sql_table('skin'), (integer) $skinid); + DB::execute($query); + + $manager->notify("PostDelete{$event_identifier}", $data); + + return; + } + + /** + * Admin::skinremovetypeconfirm() + * + * @param integer $skinid + * @param string $skintype + * @return string empty or message if failed + */ + static private function skinremovetypeconfirm($skinid, $skintype) + { + global $manager; + +<<<<<<< HEAD + /* get current registered plugin option list in this context even if it's not used */ + $query = 'SELECT * FROM %s AS plugins, %s AS options LEFT OUTER JOIN %s AS added ' + . 'ON ( options.oid=added.oid ) ' + . 'WHERE plugins.pid=options.opid AND options.ocontext=%s AND added.ocontextid=%d ' + . 'ORDER BY options.oid ASC'; + $query = sprintf($query, sql_table('plugin'), sql_table('plugin_option_desc'), sql_table('plugin_option'), DB::quoteValue($context), intval($contextid)); + + $res = DB::getResult($query); + + $options = array(); + foreach ( $res as $row ) + { + /* NOTE: to include translation file */ + $manager->getPlugin($row['pfile']); + + $options[] = array( + 'pid' => $row['pid'], + 'pfile' => $row['pfile'], + 'oid' => $row['oid'], + 'value' => ( !$row['ovalue'] ) ? $row['odef'] : $row['ovalue'], + 'name' => $row['oname'], + 'description' => $row['odesc'], + 'type' => $row['otype'], + 'typeinfo' => $row['oextra'], + 'contextid' => $contextid, + 'extra' => '' + ); + } + + $manager->notify('PrePluginOptionsEdit',array('context' => $context, 'contextid' => $contextid, 'options'=>&$options)); + + $iPrevPid = -1; + foreach ( $options as $option) + { + // new plugin? + if ( $iPrevPid != $option['pid'] ) + { + $iPrevPid = $option['pid']; + if ( !defined('_PLUGIN_OPTIONS_TITLE') ) + { + define('_PLUGIN_OPTIONS_TITLE', 'Options for %s'); + } + echo "\n"; + echo '' . sprintf(_PLUGIN_OPTIONS_TITLE, Entity::hsc($option['pfile'])) . "\n"; + echo "\n"; + } + + $meta = NucleusPlugin::getOptionMeta($option['typeinfo']); + if ( @$meta['access'] != 'hidden' ) + { + echo ''; + listplug_plugOptionRow($option); + echo ''; +======= + if ( !in_array(self::$action, self::$adminskin_actions) ) + { + $event_identifier = 'Skin'; + } + else + { + $event_identifier = 'AdminSkin'; + } + + if ( !isValidShortName($skintype) ) + { + return _ERROR_SKIN_PARTS_SPECIAL_DELETE; + } + + $data = array( + 'skinid' => $skinid, + 'skintype' => $skintype + ); + $manager->notify("PreDelete{$event_identifier}Part", $data); + + // delete part + $query = 'DELETE FROM %s WHERE sdesc = %d AND stype = %s;'; + $query = sprintf($query, sql_table('skin'), (integer) $skinid, DB::quoteValue($skintype) ); + DB::execute($query); + + $data = array( + 'skinid' => $skinid, + 'skintype' => $skintype + ); + $manager->notify("PostDelete{$event_identifier}Part", $data); + + return ''; + } + + /** + * Admin::skinclone() + * + * @param integer $skinid + * @param string $handler + * @return void + */ + static private function skinclone($skinid, $handler='') + { + global $manager; + + // 1. read skin to clone + $skin =& $manager->getSkin($skinid, $handler); + $name = "{$skin->getName()}_clone"; + + // if a skin with that name already exists: + if ( Skin::exists($name) ) + { + $i = 1; + while ( Skin::exists($name . $i) ) + { + $i++; + } + $name .= $i; + } + + // 2. create skin desc + $newid = Skin::createNew( + $name, + $skin->getDescription(), + $skin->getContentType(), + $skin->getIncludeMode(), + $skin->getIncludePrefix() + ); + + // 3. clone + $query = "SELECT stype FROM %s WHERE sdesc=%d;"; + $query = sprintf($query, sql_table('skin'), (integer) $skinid); + + $res = DB::getResult($query); + foreach ( $res as $row ) + { + $content = $skin->getContentFromDB($row['stype']); + if ( $content ) + { + $query = "INSERT INTO %s (sdesc, scontent, stype) VALUES (%d, %s, %s)"; + $query = sprintf($query, sql_table('skin'), (integer) $newid, DB::quoteValue($content), DB::quoteValue($row['stype'])); + DB::execute($query); +>>>>>>> skinnable-master + } + } + return; + } + + /** + * Admin::skinieimport() + * + * @param string $mode + * @param string $skinFileRaw + * @return string empty or message if failed + */ + static private function skinieimport($mode, $skinFileRaw) + { + global $DIR_LIBS, $DIR_SKINS; + + // load skinie class + include_once($DIR_LIBS . 'skinie.php'); + + $importer = new SkinImport(); + + // get full filename + if ( $mode == 'file' ) + { + $skinFile = $DIR_SKINS . $skinFileRaw . '/skinbackup.xml'; + } + else + { + $skinFile = $skinFileRaw; + } + + // read only metadata + $error = $importer->readFile($skinFile, 1); + if ( $error ) + { + unset($importer); + return $error; + } + + self::$contents['mode'] = $mode; + self::$contents['skinfile'] = $skinFileRaw; + self::$contents['skininfo'] = $importer->getInfo(); + self::$contents['skinnames'] = $importer->getSkinNames(); + self::$contents['tpltnames'] = $importer->getTemplateNames(); + + // clashes + $skinNameClashes = $importer->checkSkinNameClashes(); + $templateNameClashes = $importer->checkTemplateNameClashes(); + $hasNameClashes = (count($skinNameClashes) > 0) || (count($templateNameClashes) > 0); + + self::$contents['skinclashes'] = $skinNameClashes; + self::$contents['tpltclashes'] = $templateNameClashes; + self::$contents['nameclashes'] = $hasNameClashes ? 1 : 0; + + unset($importer); + return ''; + } + + /** + * Admin::skinieedoimport() + * + * @param string $mode + * @param string $skinFileRaw + * @param boolean $allowOverwrite + * @return string empty or message if failed + */ + static private function skiniedoimport($mode, $skinFileRaw, $allowOverwrite) + { + global $DIR_LIBS, $DIR_SKINS; + + // load skinie class + include_once($DIR_LIBS . 'skinie.php'); + + $importer = new SkinImport(); + + // get full filename + if ( $mode == 'file' ) + { + $skinFile = $DIR_SKINS . $skinFileRaw . '/skinbackup.xml'; + } + else + { + $skinFile = $skinFileRaw; + } + + $error = $importer->readFile($skinFile); + if ( $error ) + { + unset($importer); + return $error; + } + + $error = $importer->writeToDatabase($allowOverwrite); + if ( $error ) + { + unset($importer); + return $error; + } + + self::$contents['mode'] = $mode; + self::$contents['skinfile'] = $skinFileRaw; + self::$contents['skininfo'] = $importer->getInfo(); + self::$contents['skinnames'] = $importer->getSkinNames(); + self::$contents['tpltnames'] = $importer->getTemplateNames(); + + unset($importer); + return ''; + } + + /** + * Admin::skinieexport() + * + * @param array $aSkins + * @param array $aTemplates + * @param string $info + * @return void + */ + static private function skinieexport($aSkins, $aTemplates, $info) + { + global $DIR_LIBS; + + // load skinie class + include_once($DIR_LIBS . 'skinie.php'); + + if ( !is_array($aSkins) ) + { + $aSkins = array(); + } + + if (!is_array($aTemplates)) + { + $aTemplates = array(); + } + + $skinList = array_keys($aSkins); + $templateList = array_keys($aTemplates); + + $exporter = new SkinExport(); + foreach ( $skinList as $skinId ) + { + $exporter->addSkin($skinId); + } + foreach ( $templateList as $templateId ) + { + $exporter->addTemplate($templateId); + } + $exporter->setInfo($info); + $exporter->export(); + + return; + } + + /** + * Admin::action_parseSpecialskin() + * + * @param void + * @return void + */ + static private function action_parseSpecialskin() + { + self::$skin->parse(self::$action); + return; + } +}