3 use MediaWiki\MediaWikiServices
;
6 * Helper for generating test recent changes entries.
8 * @author Katie Filbert < aude.wiki@gmail.com >
10 class TestRecentChangesHelper
{
12 public function makeEditRecentChange( User
$user, $titleText, $curid, $thisid, $lastid,
13 $timestamp, $counter, $watchingUsers
15 $attribs = array_merge(
16 $this->getDefaultAttributes( $titleText, $timestamp ),
18 'rc_user' => $user->getId(),
19 'rc_user_text' => $user->getName(),
20 'rc_this_oldid' => $thisid,
21 'rc_last_oldid' => $lastid,
26 return $this->makeRecentChange( $attribs, $counter, $watchingUsers );
29 public function makeLogRecentChange(
30 $logType, $logAction, User
$user, $titleText, $timestamp, $counter, $watchingUsers
32 $attribs = array_merge(
33 $this->getDefaultAttributes( $titleText, $timestamp ),
36 'rc_user' => $user->getId(),
37 'rc_user_text' => $user->getName(),
44 'rc_log_type' => $logType,
45 'rc_log_action' => $logAction,
46 'rc_source' => 'mw.log'
50 return $this->makeRecentChange( $attribs, $counter, $watchingUsers );
53 public function makeDeletedEditRecentChange( User
$user, $titleText, $timestamp, $curid,
54 $thisid, $lastid, $counter, $watchingUsers
56 $attribs = array_merge(
57 $this->getDefaultAttributes( $titleText, $timestamp ),
59 'rc_user' => $user->getId(),
60 'rc_user_text' => $user->getName(),
62 'rc_cur_id' => $curid,
63 'rc_this_oldid' => $thisid,
64 'rc_last_oldid' => $lastid
68 return $this->makeRecentChange( $attribs, $counter, $watchingUsers );
71 public function makeNewBotEditRecentChange( User
$user, $titleText, $curid, $thisid, $lastid,
72 $timestamp, $counter, $watchingUsers
74 $attribs = array_merge(
75 $this->getDefaultAttributes( $titleText, $timestamp ),
77 'rc_user' => $user->getId(),
78 'rc_user_text' => $user->getName(),
79 'rc_this_oldid' => $thisid,
80 'rc_last_oldid' => $lastid,
81 'rc_cur_id' => $curid,
84 'rc_source' => 'mw.new'
88 return $this->makeRecentChange( $attribs, $counter, $watchingUsers );
91 private function makeRecentChange( $attribs, $counter, $watchingUsers ) {
92 $change = new RecentChange();
93 $change->setAttribs( $attribs );
94 $change->counter
= $counter;
95 $change->numberofWatchingusers
= $watchingUsers;
100 public function getCacheEntry( $recentChange ) {
101 $rcCacheFactory = new RCCacheEntryFactory(
102 new RequestContext(),
103 [ 'diff' => 'diff', 'cur' => 'cur', 'last' => 'last' ],
104 MediaWikiServices
::getInstance()->getLinkRenderer()
106 return $rcCacheFactory->newFromRecentChange( $recentChange, false );
109 public function makeCategorizationRecentChange(
110 User
$user, $titleText, $curid, $thisid, $lastid, $timestamp
112 $attribs = array_merge(
113 $this->getDefaultAttributes( $titleText, $timestamp ),
115 'rc_type' => RC_CATEGORIZE
,
116 'rc_user' => $user->getId(),
117 'rc_user_text' => $user->getName(),
118 'rc_this_oldid' => $thisid,
119 'rc_last_oldid' => $lastid,
120 'rc_cur_id' => $curid,
121 'rc_comment' => '[[:Testpage]] added to category',
127 return $this->makeRecentChange( $attribs, 0, 0 );
130 private function getDefaultAttributes( $titleText, $timestamp ) {
134 'rc_user_text' => '127.0.0.1',
135 'rc_ip' => '127.0.0.1',
136 'rc_title' => $titleText,
138 'rc_timestamp' => $timestamp,
148 'rc_log_type' => null,
149 'rc_log_action' => '',
151 'rc_source' => 'mw.edit'
155 public function getTestContext( User
$user ) {
156 $context = new RequestContext();
157 $context->setLanguage( 'en' );
159 $context->setUser( $user );
161 $title = Title
::newFromText( 'RecentChanges', NS_SPECIAL
);
162 $context->setTitle( $title );