Seditio Source
Root |
./othercms/ips_4.3.4/applications/core/extensions/core/IpAddresses/Validations.php
<?php
/**
 * @brief        IP Address Lookup: Validations
 * @author        <a href='https://www.invisioncommunity.com'>Invision Power Services, Inc.</a>
 * @copyright    (c) Invision Power Services, Inc.
 * @license        https://www.invisioncommunity.com/legal/standards/
 * @package        Invision Community
 * @since        12 Oct 2016
 */

namespace IPS\core\extensions\core\IpAddresses;

/* To prevent PHP errors (extending class does not exist) revealing path */
if ( !defined( '\IPS\SUITE_UNIQUE_KEY' ) )
{
   
header( ( isset( $_SERVER['SERVER_PROTOCOL'] ) ? $_SERVER['SERVER_PROTOCOL'] : 'HTTP/1.0' ) . ' 403 Forbidden' );
    exit;
}

/**
 * IP Address Lookup: Validations
 */
class _Validations
{
   
/**
     * Supported in the ACP IP address lookup tool?
     *
     * @return    bool
     * @note    If the method does not exist in an extension, the result is presumed to be TRUE
     */
   
public function supportedInAcp()
    {
        return
TRUE;
    }

   
/**
     * Supported in the ModCP IP address lookup tool?
     *
     * @return    bool
     * @note    If the method does not exist in an extension, the result is presumed to be TRUE
     */
   
public function supportedInModCp()
    {
        return
FALSE;
    }

   
/**
     * Find Records by IP
     *
     * @param    string            $ip            The IP Address
     * @param    \IPS\Http\Url    $baseUrl    URL table will be displayed on or NULL to return a count
     * @return    \IPS\Helpers\Table|int|null
     */
   
public function findByIp( $ip, \IPS\Http\Url $baseUrl = NULL )
    {
       
/* Return count */
       
if ( $baseUrl === NULL )
        {
            return \
IPS\Db::i()->select( 'COUNT(*)', 'core_validating', array( "ip_address LIKE ?", $ip ) )->first();
        }
       
       
/* Init Table */
       
$table = new \IPS\Helpers\Table\Db( 'core_validating', $baseUrl, array( "ip_address LIKE ?", $ip ) );
       
$table->langPrefix = 'members_';
               
       
/* Columns we need */
       
$table->include = array( 'photo', 'name', 'validatingType', 'entry_date', 'ip_address' );
       
$table->mainColumn = 'name';
       
$table->noSort    = array( 'photo' );
   
       
/* Default sort options */
       
$table->sortBy = $table->sortBy ?: 'entry_date';
       
$table->sortDirection = $table->sortDirection ?: 'desc';
       
       
/* Custom parsers */
       
$table->parsers = array(
           
'photo'                => function( $val, $row )
            {
               
$member = \IPS\Member::load( $row['member_id'] );
                return \
IPS\Theme::i()->getTemplate( 'global', 'core' )->userPhoto( $member, 'mini' );
            },
           
'entry_date'        => function( $val, $row )
            {
                return \
IPS\DateTime::ts( $val )->localeDate();
            },
           
'name'                => function( $val, $row )
            {
               
$member = \IPS\Member::load( $row['member_id'] );
               
$link = ( \IPS\Dispatcher::hasInstance() and \IPS\Dispatcher::i()->controllerLocation === 'front' ) ? $member->url() : $member->acpUrl();
                return \
IPS\Theme::i()->getTemplate( 'global', 'core', 'global' )->basicUrl( $link, FALSE, $member->name );
            },
           
'validatingType'    => function( $val, $row )
            {
                if(
$row['new_reg'] )
                {
                    return \
IPS\Member::loggedIn()->language()->addToStack( 'validate_type_newreg' );
                }
                elseif(
$row['lost_pass'] )
                {
                    return \
IPS\Member::loggedIn()->language()->addToStack( 'validate_type_lostpass' );
                }
                elseif(
$row['email_chg'] )
                {
                    return \
IPS\Member::loggedIn()->language()->addToStack( 'validate_type_emailchg' );
                }
            },
        );
       
       
/* Buttons */
       
$table->rowButtons = function( $row )
        {
           
$member = \IPS\Member::load( $row['member_id'] );
            return array(
               
'edit'    => array(
                   
'icon'        => 'pencil',
                   
'title'        => 'edit',
                   
'link'        => ( \IPS\Dispatcher::hasInstance() and \IPS\Dispatcher::i()->controllerLocation === 'front' ) ? $member->url()->setQueryString( array( 'do' => 'edit' ) ) : $member->acpUrl(),
                ),
            );
        };
       
       
/* Return */
       
return (string) $table;
    }
   
   
/**
     * Find IPs by Member
     *
     * @code
         return array(
             '::1' => array(
                 'ip'        => '::1'// string (IP Address)
                 'count'        => ...    // int (number of times this member has used this IP)
                 'first'        => ...     // int (timestamp of first use)
                 'last'        => ...     // int (timestamp of most recent use)
             ),
             ...
         );
     * @endcode
     * @param    \IPS\Member    $member    The member
     * @return    array
     */
   
public function findByMember( $member )
    {
        return \
IPS\Db::i()->select( 'ip_address AS ip, COUNT(*) AS count, MIN(entry_date) AS first, MAX(entry_date) AS last', 'core_validating', array( 'member_id=?', $member->member_id ), NULL, NULL, 'ip_address' )->setKeyField( 'ip' );
    }    
}