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() );
46 protected function getGroupName() {
52 * @ingroup SpecialPage Pager
54 class NewFilesPager
extends ReverseChronologicalPager
{
61 function __construct( IContextSource
$context, $par = null ) {
62 $this->like
= $context->getRequest()->getText( 'like' );
63 $this->showbots
= $context->getRequest()->getBool( 'showbots', 0 );
64 if ( is_numeric( $par ) ) {
65 $this->setLimit( $par );
68 parent
::__construct( $context );
71 function getQueryInfo() {
73 $conds = $jconds = array();
74 $tables = array( 'image' );
76 if ( !$this->showbots
) {
77 $groupsWithBotPermission = User
::getGroupsWithPermission( 'bot' );
78 if ( count( $groupsWithBotPermission ) ) {
79 $tables[] = 'user_groups';
80 $conds[] = 'ug_group IS NULL';
81 $jconds['user_groups'] = array(
84 'ug_group' => $groupsWithBotPermission,
91 if ( !$wgMiserMode && $this->like
!== null ) {
92 $dbr = wfGetDB( DB_SLAVE
);
93 $likeObj = Title
::newFromURL( $this->like
);
94 if ( $likeObj instanceof Title
) {
95 $like = $dbr->buildLike( $dbr->anyString(), strtolower( $likeObj->getDBkey() ), $dbr->anyString() );
96 $conds[] = "LOWER(img_name) $like";
103 'join_conds' => $jconds,
110 function getIndexField() {
111 return 'img_timestamp';
114 function getStartBody() {
115 if ( !$this->gallery
) {
116 $this->gallery
= new ImageGallery();
121 function getEndBody() {
122 return $this->gallery
->toHTML();
125 function formatRow( $row ) {
126 $name = $row->img_name
;
127 $user = User
::newFromId( $row->img_user
);
129 $title = Title
::makeTitle( NS_FILE
, $name );
130 $ul = Linker
::link( $user->getUserpage(), $user->getName() );
135 . htmlspecialchars( $this->getLanguage()->userTimeAndDate( $row->img_timestamp
, $this->getUser() ) )
146 'label-message' => 'newimages-label',
151 'label' => $this->msg( 'showhidebots', $this->msg( 'show' )->plain() )->escaped(),
152 'name' => 'showbots',
153 # 'default' => $this->getRequest()->getBool( 'showbots', 0 ),
157 'default' => $this->mLimit
,
162 'default' => $this->getRequest()->getText( 'offset' ),
167 if ( $wgMiserMode ) {
168 unset( $fields['like'] );
171 $form = new HTMLForm( $fields, $this->getContext() );
172 $form->setTitle( $this->getTitle() );
173 $form->setSubmitTextMsg( 'ilsubmit' );
174 $form->setMethod( 'get' );
175 $form->setWrapperLegendMsg( 'newimages-legend' );