Seditio Source
Root |
./othercms/ips_4.3.4/applications/core/modules/admin/activitystats/communityactivity.php
<?php
/**
 * @brief        Community Activity
 * @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        23 Mar 2017
 */

namespace IPS\core\modules\admin\activitystats;

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

/**
 * Community Activity
 */
class _communityactivity extends \IPS\Dispatcher\Controller
{
   
/**
     * Execute
     *
     * @return    void
     */
   
public function execute()
    {
        \
IPS\Dispatcher::i()->checkAcpPermission( 'communityactivity_manage' );
       
parent::execute();
    }

   
/**
     * Show a graph of user activity
     *
     * @return    void
     * @note    Activity includes posting, following, reacting
     */
   
protected function manage()
    {
       
$chart = new \IPS\Helpers\Chart\Callback(
            \
IPS\Http\Url::internal( 'app=core&module=activitystats&controller=communityactivity' ),
            array(
$this, 'getResults' ),
           
'',
            array(
               
'isStacked' => TRUE,
               
'backgroundColor'     => '#ffffff',
               
'colors'            => array( '#10967e', '#ea7963' ),
               
'hAxis'                => array( 'gridlines' => array( 'color' => '#f5f5f5' ) ),
               
'lineWidth'            => 1,
               
'areaOpacity'        => 0.4
           
),
           
'AreaChart',
           
'weekly',
            array(
'start' => \IPS\DateTime::create()->sub( new \DateInterval( 'P90D' ) ), 'end' => \IPS\DateTime::ts( time() ) )
        );
       
$chart->addSeries( \IPS\Member::loggedIn()->language()->addToStack('activity'), 'number', FALSE );
       
$chart->title = \IPS\Member::loggedIn()->language()->addToStack('member_activity_timeperiod');
       
$chart->availableTypes = array( 'AreaChart', 'ColumnChart', 'BarChart' );

        if( \
IPS\Request::i()->isAjax() )
        {
            \
IPS\Output::i()->output = (string) $chart;
            return;
        }
   
        \
IPS\Output::i()->title = \IPS\Member::loggedIn()->language()->addToStack('menu__core_activitystats_communityactivity');
        \
IPS\Output::i()->output = \IPS\Theme::i()->getTemplate( 'stats' )->activitymessage();
        \
IPS\Output::i()->output .= (string) $chart;
    }

   
/**
     * Fetch the results
     *
     * @param    \IPS\Helpers\Chart\Callback    $chart    Chart object
     * @return    array
     */
   
public function getResults( $chart )
    {
       
/* Get results */
       
$results = array();
       
        if ( \
IPS\Settings::i()->search_method == 'mysql' )
        {
           
$results = array_replace_recursive( $results, $this->getSqlResults( 'core_search_index', 'index_date_updated', 'index_author', $chart ) );
        }
        else
        {
            foreach ( \
IPS\Application::allExtensions( 'core', 'ContentRouter' ) as $contentRouter )
            {
                foreach (
$contentRouter->classes as $class )
                {
                    if ( isset(
$class::$databaseColumnMap['author'] ) )
                    {
                       
$results = array_replace_recursive( $results, $this->getSqlResults(
                           
$class::$databaseTable,
                           
$class::$databasePrefix . ( isset( $class::$databaseColumnMap['updated'] ) ? $class::$databaseColumnMap['updated'] : $class::$databaseColumnMap['date'] ),
                           
$class::$databasePrefix . $class::$databaseColumnMap['author'],
                           
$chart
                       
) );
                    }
                }
            }
        }
       
$results = array_replace_recursive( $results, $this->getSqlResults( 'core_reputation_index', 'rep_date', 'member_id', $chart ) );
       
$results = array_replace_recursive( $results, $this->getSqlResults( 'core_follow', 'follow_added', 'follow_member_id', $chart ) );

       
/* Reformat now */
       
$finalResults = array();

        foreach(
$results as $date => $members )
        {
           
$finalResults[ $date ] = array( 'time' => $date, \IPS\Member::loggedIn()->language()->get('activity') => count( $members ) );
        }

        return
$finalResults;
    }

   
/**
     * Get SQL query/results
     *
     * @note Consolidated to reduce duplicated code
     * @param    string    $table    Database table
     * @param    string    $date    Date column
     * @param    string    $author    Author column
     * @param    object    $chart    Chart
     * @return    array
     */
   
protected function getSqlResults( $table, $date, $author, $chart )
    {
       
/* What's our SQL time? */
       
switch ( $chart->timescale )
        {
            case
'daily':
               
$timescale = '%Y-%c-%e';
                break;
           
            case
'weekly':
               
$timescale = '%Y-%u';
                break;
               
            case
'monthly':
               
$timescale = '%Y-%c';
                break;
        }

       
$results    = array();
       
$where        = array( array( "{$date}>?", 0 ) );
       
$where[]    = array( "{$author}>?", 0 );
        if (
$chart->start )
        {
           
$where[] = array( "{$date}>?", $chart->start->getTimestamp() );
        }
        if (
$chart->end )
        {
           
$where[] = array( "{$date}<?", $chart->end->getTimestamp() );
        }

       
/* First we need to get search index activity */
       
$fromUnixTime = "FROM_UNIXTIME( IFNULL( {$date}, 0 ) )";
        if ( !
$chart->timezoneError and \IPS\Member::loggedIn()->timezone and in_array( \IPS\Member::loggedIn()->timezone, \IPS\DateTime::getTimezoneIdentifiers() ) )
        {
           
$fromUnixTime = "CONVERT_TZ( {$fromUnixTime}, @@session.time_zone, '" . \IPS\Db::i()->escape_string( \IPS\Member::loggedIn()->timezone ) . "' )";
        }

       
$stmt = \IPS\Db::i()->select( "DATE_FORMAT( {$fromUnixTime}, '{$timescale}' ) AS time, {$author}", $table, $where, 'time ASC', NULL, array( $author, 'time' ) );

        foreach(
$stmt as $row )
        {
           
$results[ $row['time'] ][ $row[ $author ] ] = 1;
        }

        return
$results;
    }
}