Merge "Genderize Special:Preferences"
[lhc/web/wiklou.git] / includes / Timestamp.php
1 <?php
2 /**
3 * Creation and parsing of MW-style timestamps.
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 * @since 1.20
22 * @author Tyler Romeo, 2012
23 */
24
25 /**
26 * Library for creating and parsing MW-style timestamps. Based on the JS
27 * library that does the same thing.
28 *
29 * @since 1.20
30 */
31 class MWTimestamp {
32 /**
33 * Standard gmdate() formats for the different timestamp types.
34 */
35 private static $formats = array(
36 TS_UNIX => 'U',
37 TS_MW => 'YmdHis',
38 TS_DB => 'Y-m-d H:i:s',
39 TS_ISO_8601 => 'Y-m-d\TH:i:s\Z',
40 TS_ISO_8601_BASIC => 'Ymd\THis\Z',
41 TS_EXIF => 'Y:m:d H:i:s', // This shouldn't ever be used, but is included for completeness
42 TS_RFC2822 => 'D, d M Y H:i:s',
43 TS_ORACLE => 'd-m-Y H:i:s.000000', // Was 'd-M-y h.i.s A' . ' +00:00' before r51500
44 TS_POSTGRES => 'Y-m-d H:i:s',
45 TS_DB2 => 'Y-m-d H:i:s',
46 );
47
48 /**
49 * Different units for human readable timestamps.
50 * @see MWTimestamp::getHumanTimestamp
51 */
52 private static $units = array(
53 "milliseconds" => 1,
54 "seconds" => 1000, // 1000 milliseconds per second
55 "minutes" => 60, // 60 seconds per minute
56 "hours" => 60, // 60 minutes per hour
57 "days" => 24 // 24 hours per day
58 );
59
60 /**
61 * The actual timestamp being wrapped. Either a DateTime
62 * object or a string with a Unix timestamp depending on
63 * PHP.
64 * @var string|DateTime
65 */
66 private $timestamp;
67
68 /**
69 * Make a new timestamp and set it to the specified time,
70 * or the current time if unspecified.
71 *
72 * @since 1.20
73 *
74 * @param $timestamp bool|string Timestamp to set, or false for current time
75 */
76 public function __construct( $timestamp = false ) {
77 $this->setTimestamp( $timestamp );
78 }
79
80 /**
81 * Set the timestamp to the specified time, or the current time if unspecified.
82 *
83 * Parse the given timestamp into either a DateTime object or a Unix timestamp,
84 * and then store it.
85 *
86 * @since 1.20
87 *
88 * @param $ts string|bool Timestamp to store, or false for now
89 * @throws TimestampException
90 */
91 public function setTimestamp( $ts = false ) {
92 $da = array();
93 $strtime = '';
94
95 if ( !$ts || $ts === "\0\0\0\0\0\0\0\0\0\0\0\0\0\0" ) { // We want to catch 0, '', null... but not date strings starting with a letter.
96 $uts = time();
97 $strtime = "@$uts";
98 } elseif ( preg_match( '/^(\d{4})\-(\d\d)\-(\d\d) (\d\d):(\d\d):(\d\d)$/D', $ts, $da ) ) {
99 # TS_DB
100 } elseif ( preg_match( '/^(\d{4}):(\d\d):(\d\d) (\d\d):(\d\d):(\d\d)$/D', $ts, $da ) ) {
101 # TS_EXIF
102 } elseif ( preg_match( '/^(\d{4})(\d\d)(\d\d)(\d\d)(\d\d)(\d\d)$/D', $ts, $da ) ) {
103 # TS_MW
104 } elseif ( preg_match( '/^-?\d{1,13}$/D', $ts ) ) {
105 # TS_UNIX
106 $strtime = "@$ts"; // http://php.net/manual/en/datetime.formats.compound.php
107 } elseif ( preg_match( '/^\d{2}-\d{2}-\d{4} \d{2}:\d{2}:\d{2}.\d{6}$/', $ts ) ) {
108 # TS_ORACLE // session altered to DD-MM-YYYY HH24:MI:SS.FF6
109 $strtime = preg_replace( '/(\d\d)\.(\d\d)\.(\d\d)(\.(\d+))?/', "$1:$2:$3",
110 str_replace( '+00:00', 'UTC', $ts ) );
111 } elseif ( preg_match( '/^(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2})(?:\.*\d*)?Z$/', $ts, $da ) ) {
112 # TS_ISO_8601
113 } elseif ( preg_match( '/^(\d{4})(\d{2})(\d{2})T(\d{2})(\d{2})(\d{2})(?:\.*\d*)?Z$/', $ts, $da ) ) {
114 #TS_ISO_8601_BASIC
115 } elseif ( preg_match( '/^(\d{4})\-(\d\d)\-(\d\d) (\d\d):(\d\d):(\d\d)\.*\d*[\+\- ](\d\d)$/', $ts, $da ) ) {
116 # TS_POSTGRES
117 } elseif ( preg_match( '/^(\d{4})\-(\d\d)\-(\d\d) (\d\d):(\d\d):(\d\d)\.*\d* GMT$/', $ts, $da ) ) {
118 # TS_POSTGRES
119 } elseif (preg_match( '/^(\d{4})\-(\d\d)\-(\d\d) (\d\d):(\d\d):(\d\d)\.\d\d\d$/', $ts, $da ) ) {
120 # TS_DB2
121 } elseif ( preg_match( '/^[ \t\r\n]*([A-Z][a-z]{2},[ \t\r\n]*)?' . # Day of week
122 '\d\d?[ \t\r\n]*[A-Z][a-z]{2}[ \t\r\n]*\d{2}(?:\d{2})?' . # dd Mon yyyy
123 '[ \t\r\n]*\d\d[ \t\r\n]*:[ \t\r\n]*\d\d[ \t\r\n]*:[ \t\r\n]*\d\d/S', $ts ) ) { # hh:mm:ss
124 # TS_RFC2822, accepting a trailing comment. See http://www.squid-cache.org/mail-archive/squid-users/200307/0122.html / r77171
125 # The regex is a superset of rfc2822 for readability
126 $strtime = strtok( $ts, ';' );
127 } elseif ( preg_match( '/^[A-Z][a-z]{5,8}, \d\d-[A-Z][a-z]{2}-\d{2} \d\d:\d\d:\d\d/', $ts ) ) {
128 # TS_RFC850
129 $strtime = $ts;
130 } elseif ( preg_match( '/^[A-Z][a-z]{2} [A-Z][a-z]{2} +\d{1,2} \d\d:\d\d:\d\d \d{4}/', $ts ) ) {
131 # asctime
132 $strtime = $ts;
133 } else {
134 throw new TimestampException( __METHOD__ . " : Invalid timestamp - $ts" );
135 }
136
137 if( !$strtime ) {
138 $da = array_map( 'intval', $da );
139 $da[0] = "%04d-%02d-%02dT%02d:%02d:%02d.00+00:00";
140 $strtime = call_user_func_array( "sprintf", $da );
141 }
142
143 try {
144 $final = new DateTime( $strtime, new DateTimeZone( 'GMT' ) );
145 } catch(Exception $e) {
146 throw new TimestampException( __METHOD__ . ' Invalid timestamp format.' );
147 }
148
149 if( $final === false ) {
150 throw new TimestampException( __METHOD__ . ' Invalid timestamp format.' );
151 }
152 $this->timestamp = $final;
153 }
154
155 /**
156 * Get the timestamp represented by this object in a certain form.
157 *
158 * Convert the internal timestamp to the specified format and then
159 * return it.
160 *
161 * @since 1.20
162 *
163 * @param $style int Constant Output format for timestamp
164 * @throws TimestampException
165 * @return string The formatted timestamp
166 */
167 public function getTimestamp( $style = TS_UNIX ) {
168 if( !isset( self::$formats[$style] ) ) {
169 throw new TimestampException( __METHOD__ . ' : Illegal timestamp output type.' );
170 }
171
172 if( is_object( $this->timestamp ) ) {
173 // DateTime object was used, call DateTime::format.
174 $output = $this->timestamp->format( self::$formats[$style] );
175 } elseif( TS_UNIX == $style ) {
176 // Unix timestamp was used and is wanted, just return it.
177 $output = $this->timestamp;
178 } else {
179 // Unix timestamp was used, use gmdate().
180 $output = gmdate( self::$formats[$style], $this->timestamp );
181 }
182
183 if ( ( $style == TS_RFC2822 ) || ( $style == TS_POSTGRES ) ) {
184 $output .= ' GMT';
185 }
186
187 return $output;
188 }
189
190 /**
191 * Get the timestamp in a human-friendly relative format, e.g., "3 days ago".
192 *
193 * Determine the difference between the timestamp and the current time, and
194 * generate a readable timestamp by returning "<N> <units> ago", where the
195 * largest possible unit is used.
196 *
197 * @since 1.20
198 *
199 * @return Message Formatted timestamp
200 */
201 public function getHumanTimestamp() {
202 $then = $this->getTimestamp( TS_UNIX );
203 $now = time();
204 $timeago = ($now - $then) * 1000;
205 $message = false;
206
207 foreach( self::$units as $unit => $factor ) {
208 $next = $timeago / $factor;
209 if( $next < 1 ) {
210 break;
211 } else {
212 $timeago = $next;
213 $message = array( $unit, floor( $timeago ) );
214 }
215 }
216
217 if( $message ) {
218 $initial = call_user_func_array( 'wfMessage', $message );
219 return wfMessage( 'ago', $initial->parse() );
220 } else {
221 return wfMessage( 'just-now' );
222 }
223 }
224
225 /**
226 * @since 1.20
227 *
228 * @return string
229 */
230 public function __toString() {
231 return $this->getTimestamp();
232 }
233 }
234
235 /**
236 * @since 1.20
237 */
238 class TimestampException extends MWException {}