4 * @addtogroup SpecialPage
10 function wfSpecialNewimages( $par, $specialPage ) {
11 global $wgUser, $wgOut, $wgLang, $wgRequest, $wgGroupPermissions, $wgMiserMode;
13 $wpIlMatch = $wgRequest->getText( 'wpIlMatch' );
14 $dbr = wfGetDB( DB_SLAVE
);
15 $sk = $wgUser->getSkin();
16 $shownav = !$specialPage->including();
17 $hidebots = $wgRequest->getBool('hidebots',1);
22 /** Make a list of group names which have the 'bot' flag
26 foreach ($wgGroupPermissions as $groupname=>$perms) {
27 if(array_key_exists('bot',$perms) && $perms['bot']) {
28 $botconds[]="ug_group='$groupname'";
32 /* If not bot groups, do not set $hidebotsql */
34 $isbotmember=$dbr->makeList($botconds, LIST_OR
);
36 /** This join, in conjunction with WHERE ug_group
37 IS NULL, returns only those rows from IMAGE
38 where the uploading user is not a member of
39 a group which has the 'bot' permission set.
41 $ug = $dbr->tableName('user_groups');
42 $hidebotsql = " LEFT OUTER JOIN $ug ON img_user=ug_user AND ($isbotmember)";
46 $image = $dbr->tableName('image');
48 $sql="SELECT img_timestamp from $image";
50 $sql .= "$hidebotsql WHERE ug_group IS NULL";
52 $sql.=' ORDER BY img_timestamp DESC LIMIT 1';
53 $res = $dbr->query($sql, 'wfSpecialNewImages');
54 $row = $dbr->fetchRow($res);
60 $dbr->freeResult($res);
63 /** If we were clever, we'd use this to cache. */
64 $latestTimestamp = wfTimestamp( TS_MW
, $ts);
66 /** Hardcode this for now. */
69 if ( $parval = intval( $par ) ) {
70 if ( $parval <= $limit && $parval > 0 ) {
77 if ( $wpIlMatch != '' && !$wgMiserMode) {
78 $nt = Title
::newFromUrl( $wpIlMatch );
80 $m = $dbr->strencode( strtolower( $nt->getDBkey() ) );
81 $m = str_replace( '%', "\\%", $m );
82 $m = str_replace( '_', "\\_", $m );
83 $where[] = "LOWER(img_name) LIKE '%{$m}%'";
84 $searchpar = '&wpIlMatch=' . urlencode( $wpIlMatch );
89 if( $until = $wgRequest->getVal( 'until' ) ) {
90 $where[] = "img_timestamp < '" . $dbr->timestamp( $until ) . "'";
92 if( $from = $wgRequest->getVal( 'from' ) ) {
93 $where[] = "img_timestamp >= '" . $dbr->timestamp( $from ) . "'";
96 $sql='SELECT img_size, img_name, img_user, img_user_text,'.
97 "img_description,img_timestamp FROM $image";
101 $where[]='ug_group IS NULL';
104 $sql.=' WHERE '.$dbr->makeList($where, LIST_AND
);
106 $sql.=' ORDER BY img_timestamp '. ( $invertSort ?
'' : ' DESC' );
107 $sql.=' LIMIT '.($limit+
1);
108 $res = $dbr->query($sql, 'wfSpecialNewImages');
111 * We have to flip things around to get the last N after a certain date
114 while ( $s = $dbr->fetchObject( $res ) ) {
116 array_unshift( $images, $s );
118 array_push( $images, $s );
121 $dbr->freeResult( $res );
123 $gallery = new ImageGallery();
124 $firstTimestamp = null;
125 $lastTimestamp = null;
127 foreach( $images as $s ) {
128 if( ++
$shownImages > $limit ) {
129 # One extra just to test for whether to show a page link;
130 # don't actually show it.
134 $name = $s->img_name
;
135 $ut = $s->img_user_text
;
137 $nt = Title
::newFromText( $name, NS_IMAGE
);
138 $img = new Image( $nt );
139 $ul = $sk->makeLinkObj( Title
::makeTitle( NS_USER
, $ut ), $ut );
141 $gallery->add( $img, "$ul<br />\n<i>".$wgLang->timeanddate( $s->img_timestamp
, true )."</i><br />\n" );
143 $timestamp = wfTimestamp( TS_MW
, $s->img_timestamp
);
144 if( empty( $firstTimestamp ) ) {
145 $firstTimestamp = $timestamp;
147 $lastTimestamp = $timestamp;
150 $bydate = wfMsg( 'bydate' );
151 $lt = $wgLang->formatNum( min( $shownImages, $limit ) );
153 $text = wfMsgExt( 'imagelisttext', array('parse'), $lt, $bydate );
154 $wgOut->addHTML( $text . "\n" );
157 $sub = wfMsg( 'ilsubmit' );
158 $titleObj = SpecialPage
::getTitleFor( 'Newimages' );
159 $action = $titleObj->escapeLocalURL( $hidebots ?
'' : 'hidebots=0' );
160 if ($shownav && !$wgMiserMode) {
161 $wgOut->addHTML( "<form id=\"imagesearch\" method=\"post\" action=\"" .
163 Xml
::input( 'wpIlMatch', 20, $wpIlMatch ) . ' ' .
164 Xml
::submitButton( $sub, array( 'name' => 'wpIlSubmit' ) ) .
172 # If we change bot visibility, this needs to be carried along.
174 $botpar='&hidebots=0';
178 $now = wfTimestampNow();
179 $date = $wgLang->timeanddate( $now, true );
180 $dateLink = $sk->makeKnownLinkObj( $titleObj, wfMsgHtml( 'sp-newimages-showfrom', $date ), 'from='.$now.$botpar.$searchpar );
182 $botLink = $sk->makeKnownLinkObj($titleObj, wfMsgHtml( 'showhidebots', ($hidebots ?
wfMsgHtml('show') : wfMsgHtml('hide'))),'hidebots='.($hidebots ?
'0' : '1').$searchpar);
184 $prevLink = wfMsgHtml( 'prevn', $wgLang->formatNum( $limit ) );
185 if( $firstTimestamp && $firstTimestamp != $latestTimestamp ) {
186 $prevLink = $sk->makeKnownLinkObj( $titleObj, $prevLink, 'from=' . $firstTimestamp . $botpar . $searchpar );
189 $nextLink = wfMsgHtml( 'nextn', $wgLang->formatNum( $limit ) );
190 if( $shownImages > $limit && $lastTimestamp ) {
191 $nextLink = $sk->makeKnownLinkObj( $titleObj, $nextLink, 'until=' . $lastTimestamp.$botpar.$searchpar );
194 $prevnext = '<p>' . $botLink . ' '. wfMsgHtml( 'viewprevnext', $prevLink, $nextLink, $dateLink ) .'</p>';
197 $wgOut->addHTML( $prevnext );
199 if( count( $images ) ) {
200 $wgOut->addHTML( $gallery->toHTML() );
202 $wgOut->addHTML( $prevnext );
204 $wgOut->addWikiText( wfMsg( 'noimages' ) );