<?php
/**
* @brief topSubmitters Widget
* @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 Downloads
* @since 09 Jan 2014
*/
namespace IPS\downloads\widgets;
/* 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;
}
/**
* topSubmitters Widget
*/
class _topSubmitters extends \IPS\Widget\PermissionCache
{
/**
* @brief Widget Key
*/
public $key = 'topSubmitters';
/**
* @brief App
*/
public $app = 'downloads';
/**
* @brief Plugin
*/
public $plugin = '';
/**
* Init the widget
*
* @return void
*/
public function init()
{
\IPS\Output::i()->cssFiles = array_merge( \IPS\Output::i()->cssFiles, \IPS\Theme::i()->css( 'widgets.css', 'downloads', 'front' ) );
parent::init();
}
/**
* Specify widget configuration
*
* @param null|\IPS\Helpers\Form $form Form object
* @return \IPS\Helpers\Form
*/
public function configuration( &$form=null )
{
if ( $form === null )
{
$form = new \IPS\Helpers\Form;
}
$form->add( new \IPS\Helpers\Form\Number( 'number_to_show', isset( $this->configuration['number_to_show'] ) ? $this->configuration['number_to_show'] : 5, TRUE ) );
return $form;
}
/**
* Render a widget
*
* @return string
*/
public function render()
{
foreach ( array( 'week' => 'P1W', 'month' => 'P1M', 'year' => 'P1Y', 'all' => NULL ) as $time => $interval )
{
/* What's the time period we care about? */
$intervalWhere = NULL;
if ( $interval )
{
$intervalWhere = array( 'file_submitted>?', \IPS\DateTime::create()->sub( new \DateInterval( $interval ) )->getTimestamp() );
}
/* Get the submitters ordered by their rating */
$where = array( array( 'file_submitter != ? and file_rating > ? AND file_open = 1', 0, 0 ) );
if ( $interval )
{
$where[] = $intervalWhere;
}
$ratings = iterator_to_array( \IPS\Db::i()->select(
'downloads_files.file_submitter, AVG(file_rating) as rating, COUNT(file_id) AS files',
'downloads_files',
$where,
'files DESC, rating DESC',
isset( $this->configuration['number_to_show'] ) ? $this->configuration['number_to_show'] : 5, 'file_submitter'
)->setKeyField('file_submitter')->setValueField('rating') );
/* Get their file counts */
$where = array( array( \IPS\Db::i()->in( 'file_submitter', array_keys( $ratings ) ) ) );
if ( $interval )
{
$where[] = $intervalWhere;
}
$fileCounts = iterator_to_array( \IPS\Db::i()->select( 'file_submitter, COUNT(*) AS count', 'downloads_files', $where, NULL, NULL, 'file_submitter' )->setKeyField('file_submitter')->setValueField('count') );
/* Get member data and put it together */
${$time} = array();
foreach( \IPS\Db::i()->select( '*', 'core_members', \IPS\Db::i()->in( 'member_id', array_keys( $ratings ) ) ) as $key => $memberData )
{
${$time}[$key]['member'] = \IPS\Member::constructFromData( $memberData );
${$time}[$key]['files'] = isset( $fileCounts[ $memberData['member_id'] ] ) ? $fileCounts[ $memberData['member_id'] ] : 0;
${$time}[$key]['rating'] = $ratings[ $memberData['member_id'] ];
}
}
return $this->output( $week, $month, $year, $all );
}
}