Replacing var keyword with private / public as we now require PHP5.
[lhc/web/wiklou.git] / includes / SearchUpdate.php
1 <?php
2 /**
3 * See deferred.txt
4 * @package MediaWiki
5 */
6
7 /**
8 *
9 * @package MediaWiki
10 */
11 class SearchUpdate {
12
13 private
14 $mId = 0,
15 $mNamespace,
16 $mTitle,
17 $mText,
18 $mTitleWords;
19
20 function SearchUpdate( $id, $title, $text = false ) {
21 $nt = Title::newFromText( $title );
22 if( $nt ) {
23 $this->mId = $id;
24 $this->mText = $text;
25
26 $this->mNamespace = $nt->getNamespace();
27 $this->mTitle = $nt->getText(); # Discard namespace
28
29 $this->mTitleWords = $this->mTextWords = array();
30 } else {
31 wfDebug( "SearchUpdate object created with invalid title '$title'\n" );
32 }
33 }
34
35 function doUpdate() {
36 global $wgContLang, $wgDisableSearchUpdate;
37
38 if( $wgDisableSearchUpdate || !$this->mId ) {
39 return false;
40 }
41 $fname = 'SearchUpdate::doUpdate';
42 wfProfileIn( $fname );
43
44 require_once( 'SearchEngine.php' );
45 $search = SearchEngine::create();
46 $lc = $search->legalSearchChars() . '&#;';
47
48 if( $this->mText === false ) {
49 $search->updateTitle($this->mId,
50 Title::indexTitle( $this->mNamespace, $this->mTitle ));
51 wfProfileOut( $fname );
52 return;
53 }
54
55 # Language-specific strip/conversion
56 $text = $wgContLang->stripForSearch( $this->mText );
57
58 wfProfileIn( $fname.'-regexps' );
59 $text = preg_replace( "/<\\/?\\s*[A-Za-z][A-Za-z0-9]*\\s*([^>]*?)>/",
60 ' ', strtolower( " " . $text /*$this->mText*/ . " " ) ); # Strip HTML markup
61 $text = preg_replace( "/(^|\\n)==\\s*([^\\n]+)\\s*==(\\s)/sD",
62 "\\1\\2 \\2 \\2\\3", $text ); # Emphasize headings
63
64 # Strip external URLs
65 $uc = "A-Za-z0-9_\\/:.,~%\\-+&;#?!=()@\\xA0-\\xFF";
66 $protos = "http|https|ftp|mailto|news|gopher";
67 $pat = "/(^|[^\\[])({$protos}):[{$uc}]+([^{$uc}]|$)/";
68 $text = preg_replace( $pat, "\\1 \\3", $text );
69
70 $p1 = "/([^\\[])\\[({$protos}):[{$uc}]+]/";
71 $p2 = "/([^\\[])\\[({$protos}):[{$uc}]+\\s+([^\\]]+)]/";
72 $text = preg_replace( $p1, "\\1 ", $text );
73 $text = preg_replace( $p2, "\\1 \\3 ", $text );
74
75 # Internal image links
76 $pat2 = "/\\[\\[image:([{$uc}]+)\\.(gif|png|jpg|jpeg)([^{$uc}])/i";
77 $text = preg_replace( $pat2, " \\1 \\3", $text );
78
79 $text = preg_replace( "/([^{$lc}])([{$lc}]+)]]([a-z]+)/",
80 "\\1\\2 \\2\\3", $text ); # Handle [[game]]s
81
82 # Strip all remaining non-search characters
83 $text = preg_replace( "/[^{$lc}]+/", " ", $text );
84
85 # Handle 's, s'
86 #
87 # $text = preg_replace( "/([{$lc}]+)'s /", "\\1 \\1's ", $text );
88 # $text = preg_replace( "/([{$lc}]+)s' /", "\\1s ", $text );
89 #
90 # These tail-anchored regexps are insanely slow. The worst case comes
91 # when Japanese or Chinese text (ie, no word spacing) is written on
92 # a wiki configured for Western UTF-8 mode. The Unicode characters are
93 # expanded to hex codes and the "words" are very long paragraph-length
94 # monstrosities. On a large page the above regexps may take over 20
95 # seconds *each* on a 1GHz-level processor.
96 #
97 # Following are reversed versions which are consistently fast
98 # (about 3 milliseconds on 1GHz-level processor).
99 #
100 $text = strrev( preg_replace( "/ s'([{$lc}]+)/", " s'\\1 \\1", strrev( $text ) ) );
101 $text = strrev( preg_replace( "/ 's([{$lc}]+)/", " s\\1", strrev( $text ) ) );
102
103 # Strip wiki '' and '''
104 $text = preg_replace( "/''[']*/", " ", $text );
105 wfProfileOut( "$fname-regexps" );
106 $search->update($this->mId, Title::indexTitle( $this->mNamespace, $this->mTitle ),
107 $text);
108 wfProfileOut( $fname );
109 }
110 }
111
112 /**
113 * Placeholder class
114 * @package MediaWiki
115 */
116 class SearchUpdateMyISAM extends SearchUpdate {
117 # Inherits everything
118 }
119
120 ?>