File: /var/www/ilya/data/www/irkboard.ru/admin/sources/classes/customfields/profileFields.php
<?php
/**
* Invision Power Services
* IP.Board v3.0.1
* Custom Profile Fields
* Last Updated: $Date: 2009-07-14 11:22:47 -0400 (Tue, 14 Jul 2009) $
*
* @author $Author: bfarber $
* @copyright (c) 2001 - 2009 Invision Power Services, Inc.
* @license http://www.invisionpower.com/community/board/license.html
* @link http://www.invisionpower.com
* @version $Rev: 4882 $
*
*/
if ( ! defined( 'IN_IPB' ) )
{
print "<h1>Incorrect access</h1>You cannot access this file directly. If you have recently upgraded, make sure you upgraded all the relevant files.";
exit();
}
class customProfileFields
{
/**
* Member ID
*
* @access public
* @var int
*/
public $member_id = 0;
/**
* Member ID
*
* @access public
* @var int
*/
public $mem_data_id = 0;
/**
* Array of incoming data
*
* @access public
* @var array
*/
public $in_fields = array();
/**
* Final/parsed data
*
* @access public
* @var array
*/
public $out_fields = array();
/**
* Chosen output data
*
* @access public
* @var array
*/
public $out_chosen = array();
/**
* Member record
*
* @access public
* @var array
*/
public $member_data = array();
/**
* Field names
*
* @access public
* @var array
*/
public $field_names = array();
/**
* Field descriptions
*
* @access public
* @var array
*/
public $field_desc = array();
/**
* Error fields
*
* @access public
* @var array
*/
public $error_fields = array();
/**
* Error messages
*
* @access public
* @var array
*/
public $error_messages = array();
/**
* What type of parse this is
*
* @access public
* @var string
*/
public $type = '';
/**
* Is an admin
*
* @access public
* @var bool
*/
public $admin = false;
/**
* Is an admin
*
* @access public
* @var bool
*/
public $supmod = false;
/**
* Initialized yet
*
* @access public
* @var bool
*/
public $init = false;
/**
* Cache data
*
* @access public
* @var array
*/
public $cache_data = array();
/**
* Custom fields library
*
* @access public
* @var object
*/
public $cfields;
/**
* Skin group to use for view parsing
*
* @access public
* @var string
*/
public $skinGroup = '';
/**
* Database handle
*
* @access private
* @var object
*/
private $DB;
/**
* CONSTRUCTOR
*
* @access public
* @return void
*/
public function __construct()
{
/* Shortcuts */
$this->DB = ipsRegistry::DB();
$this->cache_data = ipsRegistry::cache()->getCache( 'profilefields' );
/* User Setup */
$this->member_id = ipsRegistry::member()->getProperty( 'member_id' );
$this->admin = intval( ipsRegistry::member()->getProperty( 'g_access_cp' ) );
$this->supmod = intval( ipsRegistry::member()->getProperty( 'g_is_supmod' ) );
}
/**
* Initializes cache, loads kernel class, and formats data for kernel class
*
* @access public
* @param string $type Set to view for displaying the field normally or edit for displaying in a form
* @param bool $mlist Whether this is the memberlist or not
* @return void
*/
public function initData( $type='view', $mlist=0 )
{
/* Store Type */
$this->type = $type;
/* Get Member */
if( ! count( $this->member_data ) and $this->mem_data_id && ! $mlist )
{
$this->member_data = $this->DB->buildAndFetch( array( 'select' => '*', 'from' => 'pfields_content', 'where' => 'member_id='.intval($this->mem_data_id) ) );
}
if( count( $this->member_data ) )
{
$this->mem_data_id = isset( $this->member_data['member_id'] ) ? $this->member_data['member_id'] : 0;
}
if( ! $this->init )
{
/* Cache data... */
if( ! is_array( $this->cache_data ) )
{
$this->DB->build( array( 'select' => '*', 'from' => 'pfields_data', 'order' => 'pf_group_id,pf_position' ) );
$this->DB->execute();
while ( $r = $this->DB->fetch() )
{
$this->cache_data[ $r['pf_id'] ] = $r;
}
}
}
/* Get names... */
if( is_array( $this->cache_data ) and count( $this->cache_data ) )
{
foreach( $this->cache_data as $id => $data )
{
/* Field names and descriptions */
$this->field_names[ $id ] = $data['pf_title'];
$this->field_desc[ $id ] = $data['pf_desc'];
/* In Fields */
foreach( $this->cache_data as $id => $data )
{
$data['pf_key'] = ( ! empty( $data['pf_key'] ) ) ? $data['pf_key'] : '_key_' . $data['pf_id'];
$data['pf_group_key'] = $data['pf_group_key'] ? $data['pf_group_key'] : '_other';
if( $mlist )
{
$this->in_fields[ $id ] = ipsRegistry::$request[ 'field_' . $id ];
}
else
{
$this->in_fields[ $id ] = isset( $this->member_data['field_'.$id] ) ? $this->member_data['field_' . $id] : ipsRegistry::$request[ 'field_' . $id ];
}
}
}
}
/* Clean up on aisle #4 */
$this->out_fields = array();
$this->out_chosen = array();
/* Format data for kernel class */
foreach( $this->cache_data as $k => $v )
{
/* Add any option to dropdown */
if( $v['pf_type'] == 'drop' && $mlist )
{
$v['pf_content'] = '0=|' . $v['pf_content'];
}
/* Field Info */
$this->cache_data[$k]['id'] = $v['pf_id'];
$this->cache_data[$k]['type'] = $v['pf_type'];
$this->cache_data[$k]['data'] = $v['pf_content'];
$this->cache_data[$k]['value'] = $this->in_fields[$k];
/* Field Restrictions */
$this->cache_data[$k]['restrictions'] = array(
'max_size' => isset( $v['pf_max_input'] ) ? $v['pf_max_input'] : '',
'min_size' => isset( $v['pf_min_input'] ) ? $v['pf_min_input'] : '',
'not_null' => isset( $v['pf_not_null'] ) ? $v['pf_not_null'] : '',
'format' => isset( $v['pf_input_format'] ) ? $v['pf_input_format'] : '',
);
}
/* Kernel profile field class */
$_NOW = IPSDebug::getMemoryDebugFlag();
require_once( IPS_KERNEL_PATH . 'classCustomFields.php' );
IPSDebug::setMemoryDebugFlag( "Get CustomFields Kernel Class", $_NOW );
$this->cfields_obj = new classCustomFields( $this->cache_data, $type );
$this->cfields = $this->cfields_obj->cfields;
$this->init = 1;
}
/**
* Parses fields for saving into the database, results are stored in $this->out_fields
*
* @access public
* @param array $field_data Array that contains the fields to parse, usually $this->request
* @return void
*/
public function parseToSave( $field_data, $mode='normal' )
{
/* Parse the fields */
$save_fields = $this->cfields_obj->getFieldsToSave( $field_data );
/* Save the raw error data */
$this->error_fields = $save_fields['errors'];
/* Reformat the errors into nicer output */
if( is_array( $this->error_fields ) && count( $this->error_fields ) )
{
/* Make sure error message texts are loaded */
ipsRegistry::getClass( 'class_localization' )->loadLanguageFile( array( 'public_profile' ), 'members' );
foreach( $this->error_fields as $id => $err )
{
/* Can we view this field? */
if( ! $this->_checkFieldAuth( $this->cfields[ str_replace( 'field_', '', $id ) ], $mode ) )
{
continue;
}
$_error_messages = array();
foreach( $err as $e )
{
$_error_messages[] = ipsRegistry::getClass( 'class_localization' )->words[ 'profile_field_error__' . $e ];
}
$this->error_messages[$id] = $this->cache_data[ str_replace( 'field_', '', $id ) ]['pf_title'] . ': ' . implode( ', ', $_error_messages );
}
}
/* Loop through our custom fields */
foreach( $this->cfields as $id => $field )
{
/* Can we view this field? */
if( ! $this->_checkFieldAuth( $field, $mode ) )
{
continue;
}
/* Now add any missing content fields */
if ( ! isset( $this->member_data[ 'field_' . $id ] ) )
{
if ( ! $this->DB->checkForField( "field_$id", 'pfields_content' ) )
{
$this->DB->addField( 'pfields_content', "field_$id", 'text' );
}
}
$this->out_fields[ 'field_' . $id ] = IPSText::getTextClass( 'bbcode' )->stripBadWords( $save_fields['save_array']['field_' . $id] );
}
}
/**
* Parses fields for viewing, results are stored in $this->out_fields
*
* @access public
* @param bool $check_topic_format Whether to apply topic formatting
* @param string $location Location being called from
* @return void
*/
public function parseToView( $check_topic_format=0, $location='profile' )
{
/* Loop through our custom fields */
foreach( $this->cfields as $id => $field )
{
/* Can we view this field? */
if( ! $this->_checkFieldAuth( $field ) )
{
continue;
}
/* Topic Format */
if( $check_topic_format )
{
if ( ! $field->raw_data['pf_topic_format'] OR $location != 'topic' )
{
/* Override formatting with skin function? */
if( $this->skinGroup )
{
/* Check for a field level skin bit first */
$__func = 'customField__' . $field->raw_data['pf_key'];
if( method_exists( ipsRegistry::getClass( 'output' )->getTemplate( $this->skinGroup ), $__func ) )
{
$this->out_fields[ $field->raw_data['pf_group_key'] ] [ $field->raw_data['pf_key'] ] = ipsRegistry::getClass( 'output')->getTemplate( $this->skinGroup )->$__func( $field );
continue;
}
/* Now check for a group level skin bit */
$__func = 'customFieldGroup__' . $field->raw_data['pf_group_key'];
if( method_exists( ipsRegistry::getClass( 'output' )->getTemplate( $this->skinGroup ), $__func ) )
{
$this->out_fields[ $field->raw_data['pf_group_key'] ] [ $field->raw_data['pf_key'] ] = ipsRegistry::getClass( 'output')->getTemplate( $this->skinGroup )->$__func( $field );
continue;
}
/* Now check for a generic skin bit */
$__func = 'customField__generic';
if( method_exists( ipsRegistry::getClass( 'output' )->getTemplate( $this->skinGroup ), $__func ) )
{
$this->out_fields[ $field->raw_data['pf_group_key'] ] [ $field->raw_data['pf_key'] ] = ipsRegistry::getClass( 'output')->getTemplate( $this->skinGroup )->$__func( $field );
continue;
}
}
if ( ! $field->raw_data['pf_topic_format'] )
{
continue;
}
}
}
$this->out_fields[ $field->raw_data['pf_group_key'] ][ $field->raw_data['pf_key'] ] = $field->getValue();
/* Format using the format configured in the ACP */
if( $check_topic_format )
{
/* Save the value */
$current_value = isset( $this->out_fields[ $field->raw_data['pf_group_key'] ][ $field->raw_data['pf_key'] ] ) ? $this->out_fields[ $field->raw_data['pf_group_key'] ][ $field->raw_data['pf_key'] ] : '';
if( $current_value )
{
/* Get the format */
$this->out_fields[ $field->raw_data['pf_group_key'] ] [ $field->raw_data['pf_key'] ] = $field->raw_data['pf_topic_format'];
$this->out_fields[ $field->raw_data['pf_group_key'] ] [ $field->raw_data['pf_key'] ] = str_replace( '{title}' , $field->raw_data['pf_title'], $this->out_fields[ $field->raw_data['pf_group_key'] ] [ $field->raw_data['pf_key'] ] );
$this->out_fields[ $field->raw_data['pf_group_key'] ] [ $field->raw_data['pf_key'] ] = str_replace( '{key}' , $this->in_fields[$field->id] , $this->out_fields[ $field->raw_data['pf_group_key'] ] [ $field->raw_data['pf_key'] ] );
$this->out_fields[ $field->raw_data['pf_group_key'] ] [ $field->raw_data['pf_key'] ] = str_replace( '{content}', $current_value , $this->out_fields[ $field->raw_data['pf_group_key'] ] [ $field->raw_data['pf_key'] ] );
}
}
}
}
/**
* Fetch group keys and titles
*
* @access public
* @return array array( pf_group_key => pf_group_name )
*/
public function fetchGroupTitles()
{
$return = array();
/* Loop through our custom fields */
foreach( $this->cfields as $id => $field )
{
/* Can we view this field? */
if( ! $this->_checkFieldAuth( $field ) )
{
continue;
}
$return[ $field->raw_data['pf_group_key'] ] = $field->raw_data['pf_group_name'];
}
return $return;
}
/**
* Parses fields for editing, results are stored in $this->out_fields
*
* @access public
* @param string [$mode] register or normal, normal is default
* @return void
*/
public function parseToEdit( $mode='normal' )
{
/* Loop through our custom fields */
foreach( $this->cfields as $id => $field )
{
/* Can we view this field? */
if( ! $this->_checkFieldAuth( $field, $mode ) )
{
continue;
}
if( $mode == 'register' && ! $field->raw_data['pf_show_on_reg'] )
{
continue;
}
$this->out_fields[ $id ] = $field->getValue();
}
}
/**
* Checks to see if the field is viewable by the current user
*
* @access private
* @param array $field Array of field data
* @param string $mode Register, or blank
* @return bool
*/
private function _checkFieldAuth( $field, $mode='normal' )
{
/* Admin / mod only? */
if( $field->raw_data['pf_admin_only'] )
{
if ( ! $this->admin AND ! $this->supmod )
{
return false;
}
}
/* Member Edit? */
if( $this->type == 'edit' && ! $field->raw_data['pf_member_edit'] )
{
if ( $mode != 'register' AND ! $this->admin AND !$this->supmod )
{
return false;
}
}
/* Private FIeld */
if( $field->raw_data['pf_member_hide'] )
{
$pass = 0;
if ( $this->admin )
{
$pass = 1;
}
else if ( $this->supmod )
{
$pass = 1;
}
else if ( ($this->member_id and ( $this->member_id == $this->mem_data_id )) OR ($this->type == 'edit' AND $mode == 'register') )
{
$pass = 1;
}
else
{
$pass = 0;
}
if ( ! $pass )
{
return false;
}
}
return true;
}
/**
* Returns the id for the specified key
*
* @param string $key Field key
* @return integer
*/
public function getFieldIDByKey( $key )
{
$field = 0;
foreach( $this->cache_data as $id => $_c )
{
if( $_c['pf_key'] == $key )
{
$field = $id;
break;
}
}
return $field;
}
}