Merge "Fixed dependencies for jquery.collapsibleTabs"
[lhc/web/wiklou.git] / includes / specials / SpecialBooksources.php
1 <?php
2 /**
3 * Implements Special:Booksources
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @ingroup SpecialPage
22 */
23
24 /**
25 * Special page outputs information on sourcing a book with a particular ISBN
26 * The parser creates links to this page when dealing with ISBNs in wikitext
27 *
28 * @author Rob Church <robchur@gmail.com>
29 * @todo Validate ISBNs using the standard check-digit method
30 * @ingroup SpecialPage
31 */
32 class SpecialBookSources extends SpecialPage {
33
34 /**
35 * ISBN passed to the page, if any
36 */
37 private $isbn = '';
38
39 /**
40 * Constructor
41 */
42 public function __construct() {
43 parent::__construct( 'Booksources' );
44 }
45
46 /**
47 * Show the special page
48 *
49 * @param $isbn string ISBN passed as a subpage parameter
50 */
51 public function execute( $isbn ) {
52 $this->setHeaders();
53 $this->outputHeader();
54 $this->isbn = self::cleanIsbn( $isbn ? $isbn : $this->getRequest()->getText( 'isbn' ) );
55 $this->getOutput()->addHTML( $this->makeForm() );
56 if( strlen( $this->isbn ) > 0 ) {
57 if( !self::isValidISBN( $this->isbn ) ) {
58 $this->getOutput()->wrapWikiMsg( "<div class=\"error\">\n$1\n</div>", 'booksources-invalid-isbn' );
59 }
60 $this->showList();
61 }
62 }
63
64 /**
65 * Returns whether a given ISBN (10 or 13) is valid. True indicates validity.
66 * @param isbn string ISBN passed for check
67 * @return bool
68 */
69 public static function isValidISBN( $isbn ) {
70 $isbn = self::cleanIsbn( $isbn );
71 $sum = 0;
72 if( strlen( $isbn ) == 13 ) {
73 for( $i = 0; $i < 12; $i++ ) {
74 if($i % 2 == 0) {
75 $sum += $isbn[$i];
76 } else {
77 $sum += 3 * $isbn[$i];
78 }
79 }
80
81 $check = (10 - ($sum % 10)) % 10;
82 if ($check == $isbn[12]) {
83 return true;
84 }
85 } elseif( strlen( $isbn ) == 10 ) {
86 for($i = 0; $i < 9; $i++) {
87 $sum += $isbn[$i] * ($i + 1);
88 }
89
90 $check = $sum % 11;
91 if($check == 10) {
92 $check = "X";
93 }
94 if($check == $isbn[9]) {
95 return true;
96 }
97 }
98 return false;
99 }
100
101 /**
102 * Trim ISBN and remove characters which aren't required
103 *
104 * @param $isbn string Unclean ISBN
105 * @return string
106 */
107 private static function cleanIsbn( $isbn ) {
108 return trim( preg_replace( '![^0-9X]!', '', $isbn ) );
109 }
110
111 /**
112 * Generate a form to allow users to enter an ISBN
113 *
114 * @return string
115 */
116 private function makeForm() {
117 global $wgScript;
118
119 $form = '<fieldset><legend>' . $this->msg( 'booksources-search-legend' )->escaped() . '</legend>';
120 $form .= Xml::openElement( 'form', array( 'method' => 'get', 'action' => $wgScript ) );
121 $form .= Html::hidden( 'title', $this->getTitle()->getPrefixedText() );
122 $form .= '<p>' . Xml::inputLabel( $this->msg( 'booksources-isbn' )->text(), 'isbn', 'isbn', 20, $this->isbn );
123 $form .= '&#160;' . Xml::submitButton( $this->msg( 'booksources-go' )->text() ) . '</p>';
124 $form .= Xml::closeElement( 'form' );
125 $form .= '</fieldset>';
126 return $form;
127 }
128
129 /**
130 * Determine where to get the list of book sources from,
131 * format and output them
132 *
133 * @return string
134 */
135 private function showList() {
136 global $wgContLang;
137
138 # Hook to allow extensions to insert additional HTML,
139 # e.g. for API-interacting plugins and so on
140 wfRunHooks( 'BookInformation', array( $this->isbn, $this->getOutput() ) );
141
142 # Check for a local page such as Project:Book_sources and use that if available
143 $page = $this->msg( 'booksources' )->inContentLanguage()->text();
144 $title = Title::makeTitleSafe( NS_PROJECT, $page ); # Show list in content language
145 if( is_object( $title ) && $title->exists() ) {
146 $rev = Revision::newFromTitle( $title, false, Revision::READ_NORMAL );
147 $content = $rev->getContent();
148
149 if ( $content instanceof TextContent ) {
150 //XXX: in the future, this could be stored as structured data, defining a list of book sources
151
152 $text = $content->getNativeData();
153 $this->getOutput()->addWikiText( str_replace( 'MAGICNUMBER', $this->isbn, $text ) );
154 return true;
155 } else {
156 throw new MWException( "Unexpected content type for book sources: " . $content->getModel() );
157 }
158 }
159
160 # Fall back to the defaults given in the language file
161 $this->getOutput()->addWikiMsg( 'booksources-text' );
162 $this->getOutput()->addHTML( '<ul>' );
163 $items = $wgContLang->getBookstoreList();
164 foreach( $items as $label => $url )
165 $this->getOutput()->addHTML( $this->makeListItem( $label, $url ) );
166 $this->getOutput()->addHTML( '</ul>' );
167 return true;
168 }
169
170 /**
171 * Format a book source list item
172 *
173 * @param $label string Book source label
174 * @param $url string Book source URL
175 * @return string
176 */
177 private function makeListItem( $label, $url ) {
178 $url = str_replace( '$1', $this->isbn, $url );
179 return '<li><a href="' . htmlspecialchars( $url ) . '" class="external">' . htmlspecialchars( $label ) . '</a></li>';
180 }
181 }