123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332 |
- <?php
- /**
- * Date formatter, recognises dates in plain text and formats them accoding to user preferences.
- * @todo preferences, OutputPage
- * @ingroup Parser
- */
- class DateFormatter
- {
- var $mSource, $mTarget;
- var $monthNames = '', $rxDM, $rxMD, $rxDMY, $rxYDM, $rxMDY, $rxYMD;
- var $regexes, $pDays, $pMonths, $pYears;
- var $rules, $xMonths, $preferences;
- const ALL = -1;
- const NONE = 0;
- const MDY = 1;
- const DMY = 2;
- const YMD = 3;
- const ISO1 = 4;
- const LASTPREF = 4;
- const ISO2 = 5;
- const YDM = 6;
- const DM = 7;
- const MD = 8;
- const LAST = 8;
- /**
- * @todo document
- */
- function DateFormatter() {
- global $wgContLang;
- $this->monthNames = $this->getMonthRegex();
- for ( $i=1; $i<=12; $i++ ) {
- $this->xMonths[$wgContLang->lc( $wgContLang->getMonthName( $i ) )] = $i;
- $this->xMonths[$wgContLang->lc( $wgContLang->getMonthAbbreviation( $i ) )] = $i;
- }
- $this->regexTrail = '(?![a-z])/iu';
- # Partial regular expressions
- $this->prxDM = '\[\[(\d{1,2})[ _](' . $this->monthNames . ')\]\]';
- $this->prxMD = '\[\[(' . $this->monthNames . ')[ _](\d{1,2})\]\]';
- $this->prxY = '\[\[(\d{1,4}([ _]BC|))\]\]';
- $this->prxISO1 = '\[\[(-?\d{4})]]-\[\[(\d{2})-(\d{2})\]\]';
- $this->prxISO2 = '\[\[(-?\d{4})-(\d{2})-(\d{2})\]\]';
- # Real regular expressions
- $this->regexes[self::DMY] = "/{$this->prxDM} *,? *{$this->prxY}{$this->regexTrail}";
- $this->regexes[self::YDM] = "/{$this->prxY} *,? *{$this->prxDM}{$this->regexTrail}";
- $this->regexes[self::MDY] = "/{$this->prxMD} *,? *{$this->prxY}{$this->regexTrail}";
- $this->regexes[self::YMD] = "/{$this->prxY} *,? *{$this->prxMD}{$this->regexTrail}";
- $this->regexes[self::DM] = "/{$this->prxDM}{$this->regexTrail}";
- $this->regexes[self::MD] = "/{$this->prxMD}{$this->regexTrail}";
- $this->regexes[self::ISO1] = "/{$this->prxISO1}{$this->regexTrail}";
- $this->regexes[self::ISO2] = "/{$this->prxISO2}{$this->regexTrail}";
- # Extraction keys
- # See the comments in replace() for the meaning of the letters
- $this->keys[self::DMY] = 'jFY';
- $this->keys[self::YDM] = 'Y jF';
- $this->keys[self::MDY] = 'FjY';
- $this->keys[self::YMD] = 'Y Fj';
- $this->keys[self::DM] = 'jF';
- $this->keys[self::MD] = 'Fj';
- $this->keys[self::ISO1] = 'ymd'; # y means ISO year
- $this->keys[self::ISO2] = 'ymd';
- # Target date formats
- $this->targets[self::DMY] = '[[F j|j F]] [[Y]]';
- $this->targets[self::YDM] = '[[Y]], [[F j|j F]]';
- $this->targets[self::MDY] = '[[F j]], [[Y]]';
- $this->targets[self::YMD] = '[[Y]] [[F j]]';
- $this->targets[self::DM] = '[[F j|j F]]';
- $this->targets[self::MD] = '[[F j]]';
- $this->targets[self::ISO1] = '[[Y|y]]-[[F j|m-d]]';
- $this->targets[self::ISO2] = '[[y-m-d]]';
- # Rules
- # pref source target
- $this->rules[self::DMY][self::MD] = self::DM;
- $this->rules[self::ALL][self::MD] = self::MD;
- $this->rules[self::MDY][self::DM] = self::MD;
- $this->rules[self::ALL][self::DM] = self::DM;
- $this->rules[self::NONE][self::ISO2] = self::ISO1;
- $this->preferences = array(
- 'default' => self::NONE,
- 'dmy' => self::DMY,
- 'mdy' => self::MDY,
- 'ymd' => self::YMD,
- 'ISO 8601' => self::ISO1,
- );
- }
- /**
- * Get a DateFormatter object
- *
- * @return DateFormatter object
- */
- public static function &getInstance() {
- global $wgMemc;
- static $dateFormatter = false;
- if ( !$dateFormatter ) {
- $dateFormatter = $wgMemc->get( wfMemcKey( 'dateformatter' ) );
- if ( !$dateFormatter ) {
- $dateFormatter = new DateFormatter;
- $wgMemc->set( wfMemcKey( 'dateformatter' ), $dateFormatter, 3600 );
- }
- }
- return $dateFormatter;
- }
- /**
- * @param $preference String: User preference
- * @param $text String: Text to reformat
- */
- function reformat( $preference, $text, $options = array('linked') ) {
-
- $linked = in_array( 'linked', $options );
- $match_whole = in_array( 'match-whole', $options );
-
- if ( isset( $this->preferences[$preference] ) ) {
- $preference = $this->preferences[$preference];
- } else {
- $preference = self::NONE;
- }
- for ( $i=1; $i<=self::LAST; $i++ ) {
- $this->mSource = $i;
- if ( isset ( $this->rules[$preference][$i] ) ) {
- # Specific rules
- $this->mTarget = $this->rules[$preference][$i];
- } elseif ( isset ( $this->rules[self::ALL][$i] ) ) {
- # General rules
- $this->mTarget = $this->rules[self::ALL][$i];
- } elseif ( $preference ) {
- # User preference
- $this->mTarget = $preference;
- } else {
- # Default
- $this->mTarget = $i;
- }
- $regex = $this->regexes[$i];
-
- // Horrible hack
- if (!$linked) {
- $regex = str_replace( array( '\[\[', '\]\]' ), '', $regex );
- }
-
- if ($match_whole) {
- // Let's hope this works
- $regex = preg_replace( '!^/!', '/^', $regex );
- $regex = str_replace( $this->regexTrail,
- '$'.$this->regexTrail, $regex );
- }
-
- // Another horrible hack
- $this->mLinked = $linked;
- $text = preg_replace_callback( $regex, array( &$this, 'replace' ), $text );
- unset($this->mLinked);
- }
- return $text;
- }
- /**
- * @param $matches
- */
- function replace( $matches ) {
- # Extract information from $matches
- $linked = true;
- if ( isset( $this->mLinked ) )
- $linked = $this->mLinked;
-
- $bits = array();
- $key = $this->keys[$this->mSource];
- for ( $p=0; $p < strlen($key); $p++ ) {
- if ( $key{$p} != ' ' ) {
- $bits[$key{$p}] = $matches[$p+1];
- }
- }
-
- return $this->formatDate( $bits, $linked );
- }
-
- function formatDate( $bits, $link = true ) {
- $format = $this->targets[$this->mTarget];
-
- if (!$link) {
- // strip piped links
- $format = preg_replace( '/\[\[[^|]+\|([^\]]+)\]\]/', '$1', $format );
- // strip remaining links
- $format = str_replace( array( '[[', ']]' ), '', $format );
- }
- # Construct new date
- $text = '';
- $fail = false;
-
- // Pre-generate y/Y stuff because we need the year for the <span> title.
- if ( !isset( $bits['y'] ) && isset( $bits['Y'] ) )
- $bits['y'] = $this->makeIsoYear( $bits['Y'] );
- if ( !isset( $bits['Y'] ) && isset( $bits['y'] ) )
- $bits['Y'] = $this->makeNormalYear( $bits['y'] );
-
- if ( !isset( $bits['m'] ) ) {
- $m = $this->makeIsoMonth( $bits['F'] );
- if ( !$m || $m == '00' ) {
- $fail = true;
- } else {
- $bits['m'] = $m;
- }
- }
-
- if ( !isset($bits['d']) ) {
- $bits['d'] = sprintf( '%02d', $bits['j'] );
- }
- for ( $p=0; $p < strlen( $format ); $p++ ) {
- $char = $format{$p};
- switch ( $char ) {
- case 'd': # ISO day of month
- $text .= $bits['d'];
- break;
- case 'm': # ISO month
- $text .= $bits['m'];
- break;
- case 'y': # ISO year
- $text .= $bits['y'];
- break;
- case 'j': # ordinary day of month
- if ( !isset($bits['j']) ) {
- $text .= intval( $bits['d'] );
- } else {
- $text .= $bits['j'];
- }
- break;
- case 'F': # long month
- if ( !isset( $bits['F'] ) ) {
- $m = intval($bits['m']);
- if ( $m > 12 || $m < 1 ) {
- $fail = true;
- } else {
- global $wgContLang;
- $text .= $wgContLang->getMonthName( $m );
- }
- } else {
- $text .= ucfirst( $bits['F'] );
- }
- break;
- case 'Y': # ordinary (optional BC) year
- $text .= $bits['Y'];
- break;
- default:
- $text .= $char;
- }
- }
- if ( $fail ) {
- $text = $matches[0];
- }
-
- $isoBits = array();
- if ( isset($bits['y']) )
- $isoBits[] = $bits['y'];
- $isoBits[] = $bits['m'];
- $isoBits[] = $bits['d'];
- $isoDate = implode( '-', $isoBits );;
-
- // Output is not strictly HTML (it's wikitext), but <span> is whitelisted.
- $text = Xml::tags( 'span',
- array( 'class' => 'mw-formatted-date', 'title' => $isoDate ), $text );
-
- return $text;
- }
- /**
- * @todo document
- */
- function getMonthRegex() {
- global $wgContLang;
- $names = array();
- for( $i = 1; $i <= 12; $i++ ) {
- $names[] = $wgContLang->getMonthName( $i );
- $names[] = $wgContLang->getMonthAbbreviation( $i );
- }
- return implode( '|', $names );
- }
- /**
- * Makes an ISO month, e.g. 02, from a month name
- * @param $monthName String: month name
- * @return string ISO month name
- */
- function makeIsoMonth( $monthName ) {
- global $wgContLang;
- $n = $this->xMonths[$wgContLang->lc( $monthName )];
- return sprintf( '%02d', $n );
- }
- /**
- * @todo document
- * @param $year String: Year name
- * @return string ISO year name
- */
- function makeIsoYear( $year ) {
- # Assumes the year is in a nice format, as enforced by the regex
- if ( substr( $year, -2 ) == 'BC' ) {
- $num = intval(substr( $year, 0, -3 )) - 1;
- # PHP bug note: sprintf( "%04d", -1 ) fails poorly
- $text = sprintf( '-%04d', $num );
- } else {
- $text = sprintf( '%04d', $year );
- }
- return $text;
- }
- /**
- * @todo document
- */
- function makeNormalYear( $iso ) {
- if ( $iso{0} == '-' ) {
- $text = (intval( substr( $iso, 1 ) ) + 1) . ' BC';
- } else {
- $text = intval( $iso );
- }
- return $text;
- }
- }
|