Put site name first in feed title
[lhc/web/wiklou.git] / includes / QueryPage.php
1 <?php
2
3 include_once ( "LogPage.php" ) ;
4 include_once ( "Feed.php" );
5
6 # This is a class for doing query pages; since they're almost all the same,
7 # we factor out some of the functionality into a superclass, and let
8 # subclasses derive from it.
9
10 class QueryPage {
11 # Subclasses return their name here. Make sure the name is also
12 # specified in Language.php, both in the $wgValidSpecialPagesEn
13 # variable, and as a language message param.
14
15 function getName() {
16 return "";
17 }
18
19 # Subclasses return a SQL query here.
20
21 function getSQL( $offset, $limit ) {
22 return "";
23 }
24
25 # Is this query expensive (for some definition of expensive)? Then we
26 # don't let it run in miser mode. $wgDisableQueryPages causes all query
27 # pages to be declared expensive. Some query pages are always expensive.
28 function isExpensive( ) {
29 global $wgDisableQueryPages;
30 return $wgDisableQueryPages;
31 }
32
33 # Formats the results of the query for display. The skin is the current
34 # skin; you can use it for making links. The result is a single row of
35 # result data. You should be able to grab SQL results off of it.
36
37 function formatResult( $skin, $result ) {
38 return "";
39 }
40
41 # This is the actual workhorse. It does everything needed to make a
42 # real, honest-to-gosh query page.
43
44 function doQuery( $offset, $limit ) {
45
46 global $wgUser, $wgOut, $wgLang, $wgMiserMode;
47
48 $sname = $this->getName();
49 $fname = get_class($this) . "::doQuery";
50
51 if ( $this->isExpensive( ) ) {
52
53 $vsp = $wgLang->getValidSpecialPages();
54 $logpage = new LogPage( "!" . $vsp[$sname] );
55 $logpage->mUpdateRecentChanges = false;
56
57 if ( $wgMiserMode ) {
58 $logpage->showAsDisabledPage();
59 return;
60 }
61 }
62
63 $sql = $this->getSQL( $offset, $limit );
64
65 $res = wfQuery( $sql, DB_READ, $fname );
66
67 $sk = $wgUser->getSkin( );
68
69 $top = wfShowingResults( $offset, $limit );
70 $wgOut->addHTML( "<p>{$top}\n" );
71
72 $sl = wfViewPrevNext( $offset, $limit, $wgLang->specialPage( $sname ) );
73 $wgOut->addHTML( "<br>{$sl}\n" );
74
75 $s = "<ol start=" . ( $offset + 1 ) . ">";
76 while ( $obj = wfFetchObject( $res ) ) {
77 $format = $this->formatResult( $sk, $obj );
78 $s .= "<li>{$format}</li>\n";
79 }
80 wfFreeResult( $res );
81 $s .= "</ol>";
82 $wgOut->addHTML( $s );
83 $wgOut->addHTML( "<p>{$sl}\n" );
84
85 # Saving cache
86
87 if ( $this->isExpensive() && $offset == 0 && $limit >= 50 ) {
88 $logpage->replaceContent( $s );
89 }
90 }
91
92 # Similar to above, but packaging in a syndicated feed instead of a web page
93 function doFeed( $class = "" ) {
94 global $wgFeedClasses;
95 global $wgOut, $wgLanguageCode, $wgLang;
96 if( $class == "rss" ) {
97 $wgOut->disable();
98
99 $feed = new RSSFeed(
100 $this->feedTitle(),
101 $this->feedDesc(),
102 $this->feedUrl() );
103 $feed->outHeader();
104
105 $sql = $this->getSQL( 0, 50 );
106 $res = wfQuery( $sql, DB_READ, "QueryPage::doFeed" );
107 while( $obj = wfFetchObject( $res ) ) {
108 $item = $this->feedResult( $obj );
109 if( $item ) $feed->outItem( $item );
110 }
111 wfFreeResult( $res );
112
113 $feed->outFooter();
114 return true;
115 } else {
116 return false;
117 }
118 }
119
120 # Override for custom handling. If the titles/links are ok, just do feedItemDesc()
121 function feedResult( $row ) {
122 if( isset( $row->cur_title ) ) {
123 $title = Title::MakeTitle( $row->cur_namespace, $row->cur_title );
124 } elseif( isset( $row->old_title ) ) {
125 $title = Title::MakeTitle( $row->old_namespace, $row->old_title );
126 } elseif( isset( $row->rc_title ) ) {
127 $title = Title::MakeTitle( $row->rc_namespace, $row->rc_title );
128 } else {
129 return NULL;
130 }
131 if( $title ) {
132 $date = "";
133 if( isset( $row->cur_timestamp ) ) {
134 $date = $row->cur_timestamp;
135 } elseif( isset( $row->old_timestamp ) ) {
136 $date = $row->old_timestamp;
137 } elseif( isset( $row->rc_cur_timestamp ) ) {
138 $date = $row->rc_cur_timestamp;
139 }
140 return new FeedItem(
141 $title->getText(),
142 $this->feedItemDesc( $row ),
143 $title->getURL( "", false, true ) ,
144 $date);
145 } else {
146 return NULL;
147 }
148 }
149
150 function feedItemDesc( $row ) {
151 if( isset( $row->cur_comment ) ) {
152 return $row->cur_comment;
153 } elseif( isset( $row->old_comment ) ) {
154 return $row->old_comment;
155 } elseif( isset( $row->rc_comment ) ) {
156 return $row->rc_comment;
157 }
158 return "";
159 }
160
161 function feedTitle() {
162 global $wgLanguageCode, $wgSitename, $wgLang;
163 $pages = $wgLang->getValidSpecialPages();
164 $title = $pages[$this->getName()];
165 return "$wgSitename - $title [$wgLanguageCode]";
166 }
167
168 function feedDesc() {
169 return wfMsg( "fromwikipedia" );
170 }
171
172 function feedUrl() {
173 global $wgLang;
174 return wfFullUrl( $wgLang->SpecialPage( $this->getName() ) );
175 }
176 }
177
178 # This is a subclass for very simple queries that are just looking for page
179 # titles that match some criteria. It formats each result item as a link to
180 # that page.
181
182 class PageQueryPage extends QueryPage {
183
184 function formatResult( $skin, $result ) {
185 return $skin->makeKnownLink( $result->cur_title, "" );
186 }
187 }
188
189 ?>