3 * Implements Special:Booksources
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.
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.
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
21 * @ingroup SpecialPage
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
28 * @author Rob Church <robchur@gmail.com>
29 * @todo Validate ISBNs using the standard check-digit method
30 * @ingroup SpecialPage
32 class SpecialBookSources
extends SpecialPage
{
35 * ISBN passed to the page, if any
42 public function __construct() {
43 parent
::__construct( 'Booksources' );
47 * Show the special page
49 * @param $isbn string ISBN passed as a subpage parameter
51 public function execute( $isbn ) {
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' );
65 * Returns whether a given ISBN (10 or 13) is valid. True indicates validity.
66 * @param isbn string ISBN passed for check
69 public static function isValidISBN( $isbn ) {
70 $isbn = self
::cleanIsbn( $isbn );
72 if( strlen( $isbn ) == 13 ) {
73 for( $i = 0; $i < 12; $i++
) {
77 $sum +
= 3 * $isbn[$i];
81 $check = (10 - ($sum %
10)) %
10;
82 if ($check == $isbn[12]) {
85 } elseif( strlen( $isbn ) == 10 ) {
86 for($i = 0; $i < 9; $i++
) {
87 $sum +
= $isbn[$i] * ($i +
1);
94 if($check == $isbn[9]) {
102 * Trim ISBN and remove characters which aren't required
104 * @param $isbn string Unclean ISBN
107 private static function cleanIsbn( $isbn ) {
108 return trim( preg_replace( '![^0-9X]!', '', $isbn ) );
112 * Generate a form to allow users to enter an ISBN
116 private function makeForm() {
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 .= ' ' . Xml
::submitButton( $this->msg( 'booksources-go' )->text() ) . '</p>';
124 $form .= Xml
::closeElement( 'form' );
125 $form .= '</fieldset>';
130 * Determine where to get the list of book sources from,
131 * format and output them
135 private function showList() {
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() ) );
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 );
147 $this->getOutput()->addWikiText( str_replace( 'MAGICNUMBER', $this->isbn
, $rev->getText() ) );
151 # Fall back to the defaults given in the language file
152 $this->getOutput()->addWikiMsg( 'booksources-text' );
153 $this->getOutput()->addHTML( '<ul>' );
154 $items = $wgContLang->getBookstoreList();
155 foreach( $items as $label => $url )
156 $this->getOutput()->addHTML( $this->makeListItem( $label, $url ) );
157 $this->getOutput()->addHTML( '</ul>' );
162 * Format a book source list item
164 * @param $label string Book source label
165 * @param $url string Book source URL
168 private function makeListItem( $label, $url ) {
169 $url = str_replace( '$1', $this->isbn
, $url );
170 return '<li><a href="' . htmlspecialchars( $url ) . '" class="external">' . htmlspecialchars( $label ) . '</a></li>';