Replacing strictEqual-assertion with a more useful QUnit.push that includes the expec...
[lhc/web/wiklou.git] / includes / PatrolLog.php
1 <?php
2
3 /**
4 * Class containing static functions for working with
5 * logs of patrol events
6 *
7 * @author Rob Church <robchur@gmail.com>
8 */
9 class PatrolLog {
10
11 /**
12 * Record a log event for a change being patrolled
13 *
14 * @param $rc Mixed: change identifier or RecentChange object
15 * @param $auto Boolean: was this patrol event automatic?
16 */
17 public static function record( $rc, $auto = false ) {
18 if( !( $rc instanceof RecentChange ) ) {
19 $rc = RecentChange::newFromId( $rc );
20 if( !is_object( $rc ) )
21 return false;
22 }
23 $title = Title::makeTitleSafe( $rc->getAttribute( 'rc_namespace' ), $rc->getAttribute( 'rc_title' ) );
24 if( is_object( $title ) ) {
25 $params = self::buildParams( $rc, $auto );
26 $log = new LogPage( 'patrol', false, $auto ? "skipUDP" : "UDP" ); # False suppresses RC entries
27 $log->addEntry( 'patrol', $title, '', $params );
28 return true;
29 }
30 return false;
31 }
32
33 /**
34 * Generate the log action text corresponding to a patrol log item
35 *
36 * @param $title Title of the page that was patrolled
37 * @param $params Array: log parameters (from logging.log_params)
38 * @param $skin Skin to use for building links, etc.
39 * @return String
40 */
41 public static function makeActionText( $title, $params, $skin ) {
42 global $wgLang;
43
44 list( $cur, /* $prev */, $auto ) = $params;
45 if( is_object( $skin ) ) {
46 # Standard link to the page in question
47 $link = $skin->link( $title );
48 if( $title->exists() ) {
49 # Generate a diff link
50 $query = array(
51 'oldid' => $cur,
52 'diff' => 'prev'
53 );
54
55 $diff = $skin->link(
56 $title,
57 htmlspecialchars( wfMsg( 'patrol-log-diff', $wgLang->formatNum( $cur, true ) ) ),
58 array(),
59 $query,
60 array( 'known', 'noclasses' )
61 );
62 } else {
63 # Don't bother with a diff link, it's useless
64 $diff = htmlspecialchars( wfMsg( 'patrol-log-diff', $cur ) );
65 }
66 # Indicate whether or not the patrolling was automatic
67 $auto = $auto ? wfMsgHtml( 'patrol-log-auto' ) : '';
68 # Put it all together
69 return wfMsgHtml( 'patrol-log-line', $diff, $link, $auto );
70 } else {
71 $text = $title->getPrefixedText();
72 return wfMsgForContent( 'patrol-log-line', wfMsgHtml('patrol-log-diff',$cur), "[[$text]]", '' );
73 }
74 }
75
76 /**
77 * Prepare log parameters for a patrolled change
78 *
79 * @param $change RecentChange to represent
80 * @param $auto Boolean: whether the patrol event was automatic
81 * @return Array
82 */
83 private static function buildParams( $change, $auto ) {
84 return array(
85 $change->getAttribute( 'rc_this_oldid' ),
86 $change->getAttribute( 'rc_last_oldid' ),
87 (int)$auto
88 );
89 }
90 }