Seditio Source
Root |
./othercms/ips_4.3.4/applications/gallery/extensions/core/MemberFilter/Album.php
<?php
/**
 * @brief        Member Filter Extension
 * @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
 * @subpackage    Gallery
 * @since        23 Mar 2017
 */

namespace IPS\gallery\extensions\core\MemberFilter;

/* 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;
}

/**
 * Member Filter Extension
 */
class _Album
{
   
/**
     * Determine if the filter is available in a given area
     *
     * @param    string    $area    Area to check
     * @return    bool
     */
   
public function availableIn( $area )
    {
        return
in_array( $area, array( 'bulkmail', 'group_promotions' ) );
    }

   
/**
     * Get Setting Field
     *
     * @param    mixed    $criteria    Value returned from the save() method
     * @return    array     Array of form elements
     */
   
public function getSettingField( $criteria )
    {
       
$options = array( 'any' => 'any', 'yes' => 'yes', 'no' => 'no' );

        return array(
            new \
IPS\Helpers\Form\Radio( 'mf_has_album', isset( $criteria['has_album'] ) ? $criteria['has_album'] : 'any', FALSE, array( 'options' => $options ) ),
        );
    }

   
/**
     * Save the filter data
     *
     * @param    array    $post    Form values
     * @return    mixed            False, or an array of data to use later when filtering the members
     * @throws \LogicException
     */
   
public function save( $post )
    {
        if( isset(
$post['mf_has_album'] ) and in_array( $post['mf_has_album'], array( 'yes', 'no' ) ) )
        {
            return array(
'has_album' => $post['mf_has_album'] );
        }

        return
FALSE;
    }

   
/**
     * Get where clause to add to the member retrieval database query
     *
     * @param    mixed                $data    The array returned from the save() method
     * @return    string|array|NULL    Where clause
     */
   
public function getQueryWhereClause( $data )
    {
        if( isset(
$data['has_album'] ) )
        {
            return (
$data['has_album'] == 'yes' ) ? array( array( "gallery_albums.album_id IS NOT NULL" ) ) : array( array( "gallery_albums.album_id IS NULL" ) );
        }

        return
NULL;
    }

   
/**
     * Callback for member retrieval database query
     * Can be used to set joins
     *
     * @param    mixed            $data    The array returned from the save() method
     * @param    \IPS\Db\Query    $query    The query
     * @return    void
     */
   
public function queryCallback( $data, &$query )
    {
        if( isset(
$data['has_album'] ) )
        {
           
$query->join( 'gallery_albums', "core_members.member_id=gallery_albums.album_owner_id" );
        }

        return
NULL;
    }

   
/**
     * Determine if a member matches specified filters
     *
     * @note    This is only necessary if availableIn() includes group_promotions
     * @param    \IPS\Member    $member        Member object to check
     * @param    array         $filters    Previously defined filters
     * @return    bool
     */
   
public function matches( \IPS\Member $member, $filters )
    {
       
/* If we aren't filtering by this, then any member matches */
       
if( !isset( $filters['has_album'] ) OR !$filters['has_album'] )
        {
            return
TRUE;
        }

       
$result = (bool) \IPS\Db::i()->select( 'COUNT(*)', 'gallery_albums', array( 'album_owner_id=?', $member->member_id ) )->first();

        return (
$filters['has_album'] == 'no' ) ? !$result : $result;
    }
}