Document previous change
[mediawiki.git] / includes / SpecialNewimages.php
blob98c6c36059ae8fc32fab1dfb4677c281eb8134f0
1 <?php
2 /**
4 * @package MediaWiki
5 * @subpackage SpecialPage
6 */
8 /** */
9 require_once( 'ImageGallery.php' );
11 /**
14 function wfSpecialNewimages( $par, $specialPage ) {
15 global $wgUser, $wgOut, $wgLang, $wgContLang, $wgRequest,
16 $wgGroupPermissions;
18 $wpIlMatch = $wgRequest->getText( 'wpIlMatch' );
19 $dbr =& wfGetDB( DB_SLAVE );
20 $sk = $wgUser->getSkin();
21 $shownav = !$specialPage->including();
22 $hidebots = $wgRequest->getBool('hidebots',1);
24 if($hidebots) {
26 /** Make a list of group names which have the 'bot' flag
27 set.
29 $botconds=array();
30 foreach ($wgGroupPermissions as $groupname=>$perms) {
31 if(array_key_exists('bot',$perms) && $perms['bot']) {
32 $botconds[]="ug_group='$groupname'";
35 $isbotmember=$dbr->makeList($botconds, LIST_OR);
37 /** This join, in conjunction with WHERE ug_group
38 IS NULL, returns only those rows from IMAGE
39 where the uploading user is not a member of
40 a group which has the 'bot' permission set.
42 $ug = $dbr->tableName('user_groups');
43 $joinsql=" LEFT OUTER JOIN $ug ON img_user=ug_user AND ("
44 . $isbotmember.')';
47 $image = $dbr->tableName('image');
49 $sql="SELECT img_timestamp from $image";
50 if($hidebots) {
51 $sql.=$joinsql.' WHERE ug_group IS NULL';
53 $sql.=' ORDER BY img_timestamp DESC LIMIT 1';
54 $res = $dbr->query($sql, 'wfSpecialNewImages');
55 $row = $dbr->fetchRow($res);
56 if($row!==false) {
57 $ts=$row[0];
58 } else {
59 $ts=false;
61 $dbr->freeResult($res);
62 $sql='';
64 /** If we were clever, we'd use this to cache. */
65 $latestTimestamp = wfTimestamp( TS_MW, $ts);
67 /** Hardcode this for now. */
68 $limit = 48;
70 if ( $parval = intval( $par ) )
71 if ( $parval <= $limit && $parval > 0 )
72 $limit = $parval;
74 $where = array();
75 $searchpar = '';
76 if ( $wpIlMatch != '' ) {
77 $nt = Title::newFromUrl( $wpIlMatch );
78 if($nt ) {
79 $m = $dbr->strencode( strtolower( $nt->getDBkey() ) );
80 $m = str_replace( '%', "\\%", $m );
81 $m = str_replace( '_', "\\_", $m );
82 $where[] = "LCASE(img_name) LIKE '%{$m}%'";
83 $searchpar = '&wpIlMatch=' . urlencode( $wpIlMatch );
87 $invertSort = false;
88 if( $until = $wgRequest->getVal( 'until' ) ) {
89 $where[] = 'img_timestamp < ' . $dbr->timestamp( $until );
91 if( $from = $wgRequest->getVal( 'from' ) ) {
92 $where[] = 'img_timestamp >= ' . $dbr->timestamp( $from );
93 $invertSort = true;
95 $sql='SELECT img_size, img_name, img_user, img_user_text,'.
96 "img_description,img_timestamp FROM $image";
98 if($hidebots) {
99 $sql.=$joinsql;
100 $where[]='ug_group IS NULL';
102 if(count($where)) {
103 $sql.=' WHERE '.$dbr->makeList($where, LIST_AND);
105 $sql.=' ORDER BY img_timestamp '. ( $invertSort ? '' : ' DESC' );
106 $sql.=' LIMIT '.($limit+1);
107 $res = $dbr->query($sql, 'wfSpecialNewImages');
110 * We have to flip things around to get the last N after a certain date
112 $images = array();
113 while ( $s = $dbr->fetchObject( $res ) ) {
114 if( $invertSort ) {
115 array_unshift( $images, $s );
116 } else {
117 array_push( $images, $s );
120 $dbr->freeResult( $res );
122 $gallery = new ImageGallery();
123 $firstTimestamp = null;
124 $lastTimestamp = null;
125 $shownImages = 0;
126 foreach( $images as $s ) {
127 if( ++$shownImages > $limit ) {
128 # One extra just to test for whether to show a page link;
129 # don't actually show it.
130 break;
133 $name = $s->img_name;
134 $ut = $s->img_user_text;
136 $nt = Title::newFromText( $name, NS_IMAGE );
137 $img = Image::newFromTitle( $nt );
138 $ul = $sk->makeLinkObj( Title::makeTitle( NS_USER, $ut ), $ut );
140 $gallery->add( $img, "$ul<br />\n<i>".$wgLang->timeanddate( $s->img_timestamp, true )."</i><br />\n" );
142 $timestamp = wfTimestamp( TS_MW, $s->img_timestamp );
143 if( empty( $firstTimestamp ) ) {
144 $firstTimestamp = $timestamp;
146 $lastTimestamp = $timestamp;
149 $bydate = wfMsg( 'bydate' );
150 $lt = $wgLang->formatNum( min( $shownImages, $limit ) );
151 if ($shownav) {
152 $text = wfMsg( 'imagelisttext', "<strong>{$lt}</strong>", "<strong>{$bydate}</strong>" );
153 $wgOut->addHTML( "<p>{$text}\n</p>" );
156 $sub = wfMsg( 'ilsubmit' );
157 $titleObj = Title::makeTitle( NS_SPECIAL, 'Newimages' );
158 $action = $titleObj->escapeLocalURL();
159 if(!$hidebots) {
160 $action.='&hidebots=0';
162 if ($shownav) {
163 $wgOut->addHTML( "<form id=\"imagesearch\" method=\"post\" action=\"" .
164 "{$action}\">" .
165 "<input type='text' size='20' name=\"wpIlMatch\" value=\"" .
166 htmlspecialchars( $wpIlMatch ) . "\" /> " .
167 "<input type='submit' name=\"wpIlSubmit\" value=\"{$sub}\" /></form>" );
169 $here = $wgContLang->specialPage( 'Newimages' );
172 * Paging controls...
175 # If we change bot visibility, this needs to be carried along.
176 if(!$hidebots) {
177 $botpar='&hidebots=0';
178 } else {
179 $botpar='';
181 $now = wfTimestampNow();
182 $date = $wgLang->timeanddate( $now );
183 $dateLink = $sk->makeKnownLinkObj( $titleObj, wfMsg( 'rclistfrom', $date ), 'from='.$now.$botpar.$searchpar );
185 $botLink = $sk->makeKnownLinkObj($titleObj, wfMsg( 'showhidebots', ($hidebots ? wfMsg('show') : wfMsg('hide'))),'hidebots='.($hidebots ? '0' : '1').$searchpar);
187 $prevLink = wfMsg( 'prevn', $wgLang->formatNum( $limit ) );
188 if( $firstTimestamp && $firstTimestamp != $latestTimestamp ) {
189 $prevLink = $sk->makeKnownLinkObj( $titleObj, $prevLink, 'from=' . $firstTimestamp . $botpar . $searchpar );
192 $nextLink = wfMsg( 'nextn', $wgLang->formatNum( $limit ) );
193 if( $shownImages > $limit && $lastTimestamp ) {
194 $nextLink = $sk->makeKnownLinkObj( $titleObj, $nextLink, 'until=' . $lastTimestamp.$botpar.$searchpar );
197 $prevnext = '<p>' . $botLink . ' '. wfMsg( 'viewprevnext', $prevLink, $nextLink, $dateLink ) .'</p>';
199 if ($shownav)
200 $wgOut->addHTML( $prevnext );
202 if( count( $images ) ) {
203 $wgOut->addHTML( $gallery->toHTML() );
204 if ($shownav)
205 $wgOut->addHTML( $prevnext );
206 } else {
207 $wgOut->addWikiText( wfMsg( 'noimages' ) );