3 * Implements Special:Newimages
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
21 * @ingroup SpecialPage
23 class SpecialNewFiles
extends IncludableSpecialPage
{
25 public function __construct(){
26 parent
::__construct( 'Newimages' );
29 public function execute( $par ){
31 $this->outputHeader();
33 $pager = new NewFilesPager( $this->getContext(), $par );
35 if ( !$this->including() ) {
36 $form = $pager->getForm();
38 $form->displayForm( '' );
40 $this->getOutput()->addHTML( $pager->getBody() );
41 if ( !$this->including() ) {
42 $this->getOutput()->addHTML( $pager->getNavigationBar() );
49 * @ingroup SpecialPage Pager
51 class NewFilesPager
extends ReverseChronologicalPager
{
58 function __construct( IContextSource
$context, $par = null ) {
59 $this->like
= $context->getRequest()->getText( 'like' );
60 $this->showbots
= $context->getRequest()->getBool( 'showbots' , 0 );
61 if ( is_numeric( $par ) ) {
62 $this->setLimit( $par );
65 parent
::__construct( $context );
68 function getQueryInfo() {
70 $conds = $jconds = array();
71 $tables = array( 'image' );
73 if( !$this->showbots
) {
74 $groupsWithBotPermission = User
::getGroupsWithPermission( 'bot' );
75 if( count( $groupsWithBotPermission ) ) {
76 $tables[] = 'user_groups';
77 $conds[] = 'ug_group IS NULL';
78 $jconds['user_groups'] = array(
81 'ug_group' => $groupsWithBotPermission,
88 if( !$wgMiserMode && $this->like
!== null ){
89 $dbr = wfGetDB( DB_SLAVE
);
90 $likeObj = Title
::newFromURL( $this->like
);
91 if( $likeObj instanceof Title
){
92 $like = $dbr->buildLike( $dbr->anyString(), strtolower( $likeObj->getDBkey() ), $dbr->anyString() );
93 $conds[] = "LOWER(img_name) $like";
100 'join_conds' => $jconds,
107 function getIndexField(){
108 return 'img_timestamp';
111 function getStartBody(){
112 if ( !$this->gallery
) {
113 $this->gallery
= new ImageGallery();
118 function getEndBody(){
119 return $this->gallery
->toHTML();
122 function formatRow( $row ) {
123 $name = $row->img_name
;
124 $user = User
::newFromId( $row->img_user
);
126 $title = Title
::makeTitle( NS_FILE
, $name );
127 $ul = Linker
::link( $user->getUserpage(), $user->getName() );
132 . htmlspecialchars( $this->getLanguage()->userTimeAndDate( $row->img_timestamp
, $this->getUser() ) )
143 'label-message' => 'newimages-label',
148 'label' => $this->msg( 'showhidebots', $this->msg( 'show' )->plain() )->escaped(),
149 'name' => 'showbots',
150 # 'default' => $this->getRequest()->getBool( 'showbots', 0 ),
154 'default' => $this->mLimit
,
159 'default' => $this->getRequest()->getText( 'offset' ),
165 unset( $fields['like'] );
168 $form = new HTMLForm( $fields, $this->getContext() );
169 $form->setTitle( $this->getTitle() );
170 $form->setSubmitTextMsg( 'ilsubmit' );
171 $form->setMethod( 'get' );
172 $form->setWrapperLegendMsg( 'newimages-legend' );