File: /var/www/ilya/data/www/irkboard.ru/admin/applications/forums/extensions/coreExtensions.php
<?php
/**
* Invision Power Services
* IP.Board v3.0.1
* Forum permissions mappings
*
* @author $author$
* @copyright (c) 2001 - 2009 Invision Power Services, Inc.
* @license http://www.invisionpower.com/community/board/license.html
* @package Invision Power Board
* @subpackage Forums
* @link http://www.invisionpower.com
* @version $Rev: 4770 $
**/
$_PERM_CONFIG = array( 'Forum' );
class forumsPermMappingForum
{
/**
* Mapping of keys to columns
*
* @access private
* @var array
*/
private $mapping = array(
'view' => 'perm_view',
'read' => 'perm_2',
'reply' => 'perm_3',
'start' => 'perm_4',
'upload' => 'perm_5',
'download' => 'perm_6'
);
/**
* Mapping of keys to names
*
* @access private
* @var array
*/
private $perm_names = array(
'view' => 'Show Forum',
'read' => 'Read Topics',
'reply' => 'Reply Topics',
'start' => 'Start Topics',
'upload' => 'Upload',
'download' => 'Download',
);
/**
* Mapping of keys to background colors for the form
*
* @access private
* @var array
*/
private $perm_colors = array(
'view' => '#fff0f2',
'read' => '#effff6',
'reply' => '#edfaff',
'start' => '#f0f1ff',
'upload' => '#fffaee',
'download' => '#ffeef9',
);
/**
* Method to pull the key/column mapping
*
* @access public
* @return array
*/
public function getMapping()
{
return $this->mapping;
}
/**
* Method to pull the key/name mapping
*
* @access public
* @return array
*/
public function getPermNames()
{
return $this->perm_names;
}
/**
* Method to pull the key/color mapping
*
* @access public
* @return array
*/
public function getPermColors()
{
return $this->perm_colors;
}
/**
* Retrieve the permission items
*
* @access public
* @return array
*/
public function getPermItems()
{
require_once( IPSLib::getAppDir( 'forums' ) . '/sources/classes/forums/class_forums.php' );
require_once( IPSLib::getAppDir( 'forums' ) . '/sources/classes/forums/admin_forum_functions.php' );
$forumfunc = new admin_forum_functions( ipsRegistry::instance() );
$forumfunc->forumsInit();
$forum_data = $forumfunc->adForumsForumData();
$_return_arr = array();
foreach( $forum_data as $r )
{
$return_arr[$r['id']] = array(
'title' => $r['depthed_name'],
'perm_view' => $r['perm_view'],
'perm_2' => $r['perm_2'],
'perm_3' => $r['perm_3'],
'perm_4' => $r['perm_4'],
'perm_5' => $r['perm_5'],
'perm_6' => $r['perm_6'],
'perm_7' => $r['perm_7'],
'restrict' => $r['parent_id'] == 'root' ? 'perm_view' : '',
);
}
return $return_arr;
}
}
/**
* Invision Power Services
* IP.Board v3.0.1
* Item Marking
* Last Updated: $Date: 2009-06-13 09:43:04 -0400 (Sat, 13 Jun 2009) $
*
* @author $Author: matt $
* @copyright (c) 2001 - 2009 Invision Power Services, Inc.
* @license http://www.invisionpower.com/community/board/license.html
* @package Invision Power Board
* @subpackage Forums
* @link http://www.invisionpower.com
* @version $Rev: 4770 $
*
*/
class itemMarking__forums
{
/**
* Field Convert Data Remap Array
*
* This is where you can map your app_key_# numbers to application savvy fields
*
* @access private
* @var array
*/
private $_convertData = array( 'forumID' => 'item_app_key_1' );
/**#@+
* Registry Object Shortcuts
*
* @access protected
* @var object
*/
protected $registry;
protected $DB;
protected $settings;
protected $request;
protected $lang;
protected $member;
protected $cache;
/**#@-*/
/**
* I'm a constructor, twisted constructor
*
* @access public
* @param object ipsRegistry reference
* @return void
*/
public function __construct( ipsRegistry $registry )
{
/* Make objects */
$this->registry = $registry;
$this->DB = $this->registry->DB();
$this->settings =& $this->registry->fetchSettings();
$this->request =& $this->registry->fetchRequest();
$this->lang = $this->registry->getClass('class_localization');
$this->member = $this->registry->member();
$this->memberData =& $this->registry->member()->fetchMemberData();
$this->cache = $this->registry->cache();
$this->caches =& $this->registry->cache()->fetchCaches();
}
/**
* Convert Data
* Takes an array of app specific data and remaps it to the DB table fields
*
* @access public
* @param array
* @return array
*/
public function convertData( $data )
{
$_data = array();
foreach( $data as $k => $v )
{
if ( isset($this->_convertData[$k]) )
{
# Make sure we use intval here as all 'forum' app fields
# are integers.
$_data[ $this->_convertData[ $k ] ] = intval( $v );
}
else
{
$_data[ $k ] = $v;
}
}
return $_data;
}
/**
* Fetch unread count
*
* Grab the number of items truly unread
* This is called upon by 'markRead' when the number of items
* left hits zero (or less).
*
*
* @access public
* @param array Array of data
* @param array Array of read itemIDs
* @param int Last global reset
* @return integer Last unread count
*/
public function fetchUnreadCount( $data, $readItems, $lastReset )
{
$count = 0;
$lastItem = 0;
$approved = $this->memberData['is_mod'] ? ' AND approved IN (0,1) ' : ' AND approved=1 ';
$readItems = is_array( $readItems ) ? $readItems : array( 0 );
if ( $data['forumID'] )
{
$_count = $this->DB->buildAndFetch( array(
'select' => 'COUNT(*) as cnt, MIN(last_post) as lastItem',
'from' => 'topics',
'where' => "forum_id=" . intval( $data['forumID'] ) . " {$approved} AND tid NOT IN(".implode(",",array_keys($readItems)).") AND last_post > ".intval($lastReset) . " AND state != 'link'"
) );
$count = intval( $_count['cnt'] );
$lastItem = intval( $_count['lastItem'] );
}
return array( 'count' => $count,
'lastItem' => $lastItem );
}
}
/**
* Invision Power Services
* IP.Board v3.0.1
* Fetch Skin
* Last Updated: $Date: 2009-06-13 09:43:04 -0400 (Sat, 13 Jun 2009) $
*
* @author $Author: matt $
* @copyright (c) 2001 - 2009 Invision Power Services, Inc.
* @license http://www.invisionpower.com/community/board/license.html
* @package Invision Power Board
* @subpackage Forums
* @link http://www.invisionpower.com
* @version $Rev: 4770 $
*
*/
class fetchSkin__forums
{
/**#@+
* Registry Object Shortcuts
*
* @access protected
* @var object
*/
protected $registry;
protected $DB;
protected $settings;
protected $request;
protected $lang;
protected $member;
protected $cache;
/**#@-*/
/**
* I'm a constructor, twisted constructor
*
* @access public
* @param object ipsRegistry reference
* @return void
*/
public function __construct( ipsRegistry $registry )
{
/* Make objects */
$this->registry = $registry;
$this->DB = $this->registry->DB();
$this->settings =& $this->registry->fetchSettings();
$this->request =& $this->registry->fetchRequest();
$this->lang = $this->registry->getClass('class_localization');
$this->member = $this->registry->member();
$this->memberData =& $this->registry->member()->fetchMemberData();
$this->cache = $this->registry->cache();
$this->caches =& $this->registry->cache()->fetchCaches();
/* Check for class_forums */
if( ipsRegistry::isClassLoaded('class_forums') !== TRUE )
{
require_once( IPSLib::getAppDir( 'forums' ) . "/sources/classes/forums/class_forums.php" );
$this->registry->setClass( 'class_forums', new class_forums( $registry ) );
$this->registry->class_forums->forumsInit();
}
}
/**
* Returns a skin ID or FALSE
*
* @access public
* @author Matt Mecham
* @return mixed INT or FALSE if no skin found / required
*/
public function fetchSkin()
{
//-----------------------------------------
// INIT
//-----------------------------------------
$useSkinID = FALSE;
$_keys = array_keys( $_REQUEST );
//-----------------------------------------
// OK, viewing a forum or WHAT?
//-----------------------------------------
if ( count( array_intersect( array( 'showtopic', 'showforum' ), $_keys ) ) OR ( $this->request['module'] == 'post' ) )
{
$cache = $this->registry->class_forums->forum_by_id;
$eff = intval( $this->request['f'] );
//-----------------------------------------
// Do we have a skin for a particular forum?
//-----------------------------------------
if ( $eff )
{
if ( isset( $cache[ $eff ]['skin_id'] ) && $cache[ $eff ]['skin_id'] )
{
$useSkinID = $cache[ $eff ]['skin_id'];
}
}
}
return $useSkinID;
}
}
/**
* Invision Power Services
* IP.Board v3.0.1
* Library: Handle public session data
* Last Updated: $Date: 2009-06-13 09:43:04 -0400 (Sat, 13 Jun 2009) $
*
* @author $Author: matt $
* @copyright (c) 2001 - 2009 Invision Power Services, Inc.
* @license http://www.invisionpower.com/community/board/license.html
* @package Invision Power Board
* @subpackage Forums
* @link http://www.invisionpower.com
* @since 12th March 2002
* @version $Revision: 4770 $
*
*/
class publicSessions__forums
{
/**
* Return session variables for this application
*
* current_appcomponent, current_module and current_section are automatically
* stored. This function allows you to add specific variables in.
*
* @access public
* @author Matt Mecham
* @return array
*/
public function getSessionVariables()
{
//-----------------------------------------
// INIT
//-----------------------------------------
$array = array( 'location_1_type' => '',
'location_1_id' => 0,
'location_2_type' => '',
'location_2_id' => 0 );
//-----------------------------------------
// FORUM
//-----------------------------------------
if ( ipsRegistry::$request['module'] == 'forums' AND ( isset( ipsRegistry::$request['f'] ) AND ipsRegistry::$request['f'] ) )
{
$array = array(
'location_2_type' => 'forum',
'location_2_id' => intval(ipsRegistry::$request['f']) );
}
//-----------------------------------------
// TOPIC
//-----------------------------------------
else if ( ipsRegistry::$request['module'] == 'forums' AND ipsRegistry::$request['section'] == 'topics' AND ( isset( ipsRegistry::$request['t'] ) AND ipsRegistry::$request['t'] ) )
{
$array = array(
'location_1_type' => 'topic',
'location_1_id' => intval(ipsRegistry::$request['t']),
'location_2_type' => 'forum',
'location_2_id' => intval(ipsRegistry::$request['f']) );
}
//-----------------------------------------
// POST
//-----------------------------------------
else if ( ipsRegistry::$request['module'] == 'post' AND ( isset( ipsRegistry::$request['f'] ) AND ipsRegistry::$request['f'] ) )
{
$array = array(
'location_1_type' => 'topic',
'location_1_id' => intval(ipsRegistry::$request['t']),
'location_2_type' => 'forum',
'location_2_id' => intval(ipsRegistry::$request['f']) );
}
return $array;
}
/**
* Parse/format the online list data for the records
*
* @access public
* @author Brandon Farber
* @param array Online list rows to check against
* @return array Online list rows parsed
*/
public function parseOnlineEntries( $rows )
{
if( !is_array($rows) OR !count($rows) )
{
return $rows;
}
//-----------------------------------------
// Init
//-----------------------------------------
$forums_raw = array();
$forums = array();
$topics_raw = array();
$topics = array();
$posts_raw = array();
$posts = array();
$final = array();
//-----------------------------------------
// Extract the topic/forum data
//-----------------------------------------
foreach( $rows as $row )
{
if( $row['current_appcomponent'] != 'forums' OR !$row['current_module'] )
{
continue;
}
if( $row['current_section'] == 'forums' )
{
$forums_raw[ $row['location_2_id'] ] = '';
}
else if( $row['current_section'] == 'topics' )
{
$topics_raw[ $row['location_1_id'] ] = $row['location_1_id'];
}
else if( $row['current_section'] == 'post' )
{
$forums_raw[ $row['location_2_id'] ] = '';
$topics_raw[ $row['location_1_id'] ] = $row['location_1_id'];
}
}
//-----------------------------------------
// Get the forums, if you dare
//-----------------------------------------
if( !class_exists('app_class_forums') OR !ipsRegistry::getClass('class_forums') )
{
require_once( IPSLib::getAppDir( 'forums' ) . '/app_class_forums.php' );
$app_class_forums = new app_class_forums( ipsRegistry::instance() );
if( count($forums_raw) )
{
foreach( ipsRegistry::getClass('class_forums')->forum_by_id as $fid => $forum )
{
if( isset($forums_raw[$fid]) )
{
if( ipsRegistry::getClass( 'permissions' )->check( 'view', $forum ) !== false )
{
$forums[ $fid ] = $forum['name'];
}
}
}
}
}
//-----------------------------------------
// Get the topics, if you care
//-----------------------------------------
if( count($topics_raw) )
{
ipsRegistry::DB()->build( array( 'select' => 't.tid, t.title, t.forum_id',
'from' => array( 'topics' => 't' ),
'where' => 't.approved=1 AND t.tid IN(' . implode( ',', $topics_raw ) . ') AND ' . ipsRegistry::getClass('permissions')->buildPermQuery('p'),
'add_join' => array(
array(
'from' => array( 'permission_index' => 'p' ),
'where' => "p.perm_type_id=t.forum_id AND p.app='forums' AND p.perm_type='forum'",
'type' => 'left',
),
)
) );
$tr = ipsRegistry::DB()->execute();
while( $r = ipsRegistry::DB()->fetch($tr) )
{
if( count( ipsRegistry::getClass('class_forums')->forum_by_id[ $r['forum_id'] ] ) )
{
if( ipsRegistry::getClass( 'permissions' )->check( 'read', ipsRegistry::getClass('class_forums')->forum_by_id[ $r['forum_id'] ] ) !== false )
{
$topics[ $r['tid'] ] = $r['title'];
}
}
}
}
//-----------------------------------------
// Put humpty dumpty together again
//-----------------------------------------
foreach( $rows as $row )
{
if( $row['current_appcomponent'] != 'forums' )
{
$final[ $row['id'] ] = $row;
continue;
}
if( !$row['current_module'] )
{
$row['where_line'] = ipsRegistry::getClass( 'class_localization' )->words['board_index'];
$final[ $row['id'] ] = $row;
continue;
}
if( $row['current_section'] == 'forums' )
{
if( isset($forums[ $row['location_2_id'] ]) )
{
$row['where_line'] = ipsRegistry::getClass( 'class_localization' )->words['WHERE_sf'];
$row['where_line_more'] = $forums[ $row['location_2_id'] ];
$row['where_link'] = 'showforum=' . $row['location_2_id'];
$row['_whereLinkSeo'] = ipsRegistry::getClass('output')->formatUrl( ipsRegistry::getClass('output')->buildUrl( "showforum=".$row['location_2_id'], 'public' ), IPSText::makeSeoTitle( $forums[ $row['location_2_id'] ] ), 'showforum' );
}
}
else if( $row['current_section'] == 'topics' )
{
if( isset($topics[ $row['location_1_id'] ]) )
{
$row['where_line'] = ipsRegistry::getClass( 'class_localization' )->words['WHERE_st'];
$row['where_line_more'] = $topics[ $row['location_1_id'] ];
$row['where_link'] = 'showtopic=' . $row['location_1_id'];
$row['_whereLinkSeo'] = ipsRegistry::getClass('output')->formatUrl( ipsRegistry::getClass('output')->buildUrl( "showtopic=".$row['location_1_id'], 'public' ), IPSText::makeSeoTitle( $topics[ $row['location_1_id'] ] ), 'showtopic' );
}
}
else if( $row['current_section'] == 'post' )
{
if( $row['location_1_id'] )
{
if( isset($topics[ $row['location_1_id'] ]) )
{
$row['where_line'] = ipsRegistry::getClass( 'class_localization' )->words['WHERE_postrep'];
$row['where_line_more'] = $topics[ $row['location_1_id'] ];
$row['where_link'] = 'showtopic=' . $row['location_1_id'];
$row['_whereLinkSeo'] = ipsRegistry::getClass('output')->formatUrl( ipsRegistry::getClass('output')->buildUrl( "showtopic=".$row['location_1_id'], 'public' ), IPSText::makeSeoTitle( $topics[ $row['location_1_id'] ] ), 'showtopic' );
}
}
else if( $row['location_2_id'] )
{
if( isset($forums[ $row['location_2_id'] ]) )
{
$row['where_line'] = ipsRegistry::getClass( 'class_localization' )->words['WHERE_postnew'];
$row['where_line_more'] = $forums[ $row['location_2_id'] ];
$row['where_link'] = 'showforum=' . $row['location_2_id'];
$row['_whereLinkSeo'] = ipsRegistry::getClass('output')->formatUrl( ipsRegistry::getClass('output')->buildUrl( "showforum=".$row['location_2_id'], 'public' ), IPSText::makeSeoTitle( $forums[ $row['location_2_id'] ] ), 'showforum' );
}
}
}
$final[ $row['id'] ] = $row;
}
return $final;
}
}