40e22f18b38dbe7f845de1f0e50b14b55a2b888c
[lhc/web/wiklou.git] / includes / SpecialNewpages.php
1 <?php
2 /**
3 *
4 * @package MediaWiki
5 * @subpackage SpecialPage
6 */
7
8 /**
9 *
10 */
11 require_once( 'QueryPage.php' );
12
13 /**
14 *
15 * @package MediaWiki
16 * @subpackage SpecialPage
17 */
18 class NewPagesPage extends QueryPage {
19 var $namespace;
20
21 function NewPagesPage( $namespace = NS_MAIN ) {
22 $this->namespace = $namespace;
23 }
24
25 function getName() {
26 return 'Newpages';
27 }
28
29 function isExpensive() {
30 # Indexed on RC, and will *not* work with querycache yet.
31 return false;
32 }
33
34 function getSQL() {
35 global $wgUser, $wgUseRCPatrol;
36 $usepatrol = ( $wgUseRCPatrol && $wgUser->isAllowed( 'patrol' ) ) ? 1 : 0;
37 $dbr =& wfGetDB( DB_SLAVE );
38 extract( $dbr->tableNames( 'recentchanges', 'page', 'text' ) );
39
40 # FIXME: text will break with compression
41 return
42 "SELECT 'Newpages' as type,
43 rc_namespace AS namespace,
44 rc_title AS title,
45 rc_cur_id AS cur_id,
46 rc_user AS user,
47 rc_user_text AS user_text,
48 rc_comment as comment,
49 rc_timestamp AS timestamp,
50 rc_timestamp AS value,
51 '{$usepatrol}' as usepatrol,
52 rc_patrolled AS patrolled,
53 rc_id AS rcid,
54 page_len as length,
55 page_latest as rev_id
56 FROM $recentchanges,$page
57 WHERE rc_cur_id=page_id AND rc_new=1
58 AND rc_namespace=" . $this->namespace . " AND page_is_redirect=0";
59 }
60
61 function preprocessResults( &$dbo, &$res ) {
62 # Do a batch existence check on the user and talk pages
63 $linkBatch = new LinkBatch();
64 while( $row = $dbo->fetchObject( $res ) ) {
65 $linkBatch->addObj( Title::makeTitleSafe( NS_USER, $row->user_text ) );
66 $linkBatch->addObj( Title::makeTitleSafe( NS_USER_TALK, $row->user_text ) );
67 }
68 $linkBatch->execute();
69 # Seek to start
70 if( $dbo->numRows( $res ) > 0 )
71 $dbo->dataSeek( $res, 0 );
72 }
73
74 function formatResult( $skin, $result ) {
75 global $wgLang, $wgContLang, $wgUser, $wgUseRCPatrol;
76 $u = $result->user;
77 $ut = $result->user_text;
78
79 $length = wfMsgHtml( 'nbytes', htmlspecialchars( $wgLang->formatNum( $result->length ) ) );
80 $d = $wgLang->timeanddate( $result->timestamp, true );
81
82 # Since there is no diff link, we need to give users a way to
83 # mark the article as patrolled if it isn't already
84 $ns = $wgContLang->getNsText( $result->namespace );
85 if( $wgUseRCPatrol && !is_null( $result->usepatrol ) && $result->usepatrol && $result->patrolled == 0 && $wgUser->isAllowed( 'patrol' ) ) {
86 $link = $skin->makeKnownLink( $ns . ':' . $result->title, '', "rcid={$result->rcid}" );
87 } else {
88 $link = $skin->makeKnownLink( $ns . ':' . $result->title, '' );
89 }
90
91 $userTools = $skin->userLink( $u, $ut ) . $skin->userToolLinks( $u, $ut );
92
93 $s = "{$d} {$link} ({$length}) . . {$userTools}";
94 $s .= $skin->commentBlock( $result->comment );
95 return $s;
96 }
97
98 function feedItemDesc( $row ) {
99 if( isset( $row->rev_id ) ) {
100 $revision = Revision::newFromId( $row->rev_id );
101 if( $revision ) {
102 return '<p>' . htmlspecialchars( wfMsg( 'summary' ) ) . ': ' .
103 htmlspecialchars( $revision->getComment() ) . "</p>\n<hr />\n<div>" .
104 nl2br( htmlspecialchars( $revision->getText() ) ) . "</div>";
105 }
106 }
107 return parent::feedItemDesc( $row );
108 }
109
110 /**
111 * Show a namespace selection form for filtering
112 *
113 * @return string
114 */
115 function getPageHeader() {
116 $thisTitle = Title::makeTitle( NS_SPECIAL, $this->getName() );
117 $form = wfOpenElement( 'form', array(
118 'method' => 'post',
119 'action' => $thisTitle->getLocalUrl() ) );
120 $form .= wfElement( 'label', array( 'for' => 'namespace' ),
121 wfMsg( 'namespace' ) ) . ' ';
122 $form .= HtmlNamespaceSelector( $this->namespace );
123 # Preserve the offset and limit
124 $form .= wfElement( 'input', array(
125 'type' => 'hidden',
126 'name' => 'offset',
127 'value' => $this->offset ) );
128 $form .= wfElement( 'input', array(
129 'type' => 'hidden',
130 'name' => 'limit',
131 'value' => $this->limit ) );
132 $form .= wfElement( 'input', array(
133 'type' => 'submit',
134 'name' => 'submit',
135 'id' => 'submit',
136 'value' => wfMsg( 'allpagessubmit' ) ) );
137 $form .= wfCloseElement( 'form' );
138 return( $form );
139 }
140
141 /**
142 * Link parameters
143 *
144 * @return array
145 */
146 function linkParameters() {
147 return( array( 'namespace' => $this->namespace ) );
148 }
149
150 }
151
152 /**
153 * constructor
154 */
155 function wfSpecialNewpages($par, $specialPage) {
156 global $wgRequest, $wgContLang;
157
158 list( $limit, $offset ) = wfCheckLimits();
159 $namespace = NS_MAIN;
160
161 if ( $par ) {
162 $bits = preg_split( '/\s*,\s*/', trim( $par ) );
163 foreach ( $bits as $bit ) {
164 if ( 'shownav' == $bit )
165 $shownavigation = true;
166 if ( is_numeric( $bit ) )
167 $limit = $bit;
168
169 if ( preg_match( '/^limit=(\d+)$/', $bit, $m ) )
170 $limit = intval($m[1]);
171 if ( preg_match( '/^offset=(\d+)$/', $bit, $m ) )
172 $offset = intval($m[1]);
173 if ( preg_match( '/^namespace=(.*)$/', $bit, $m ) ) {
174 $ns = $wgContLang->getNsIndex( $m[1] );
175 if( $ns !== false ) {
176 $namespace = $ns;
177 }
178 }
179 }
180 } else {
181 if( $ns = $wgRequest->getInt( 'namespace', 0 ) )
182 $namespace = $ns;
183 }
184
185 if ( ! isset( $shownavigation ) )
186 $shownavigation = ! $specialPage->including();
187
188 $npp = new NewPagesPage( $namespace );
189
190 if ( ! $npp->doFeed( $wgRequest->getVal( 'feed' ), $limit ) )
191 $npp->doQuery( $offset, $limit, $shownavigation );
192 }
193
194 ?>