MediaWiki  1.27.1
TestRecentChangesHelper.php
Go to the documentation of this file.
1 <?php
2 
9 
10  public function makeEditRecentChange( User $user, $titleText, $curid, $thisid, $lastid,
11  $timestamp, $counter, $watchingUsers
12  ) {
13 
14  $attribs = array_merge(
15  $this->getDefaultAttributes( $titleText, $timestamp ),
16  [
17  'rc_user' => $user->getId(),
18  'rc_user_text' => $user->getName(),
19  'rc_this_oldid' => $thisid,
20  'rc_last_oldid' => $lastid,
21  'rc_cur_id' => $curid
22  ]
23  );
24 
25  return $this->makeRecentChange( $attribs, $counter, $watchingUsers );
26  }
27 
28  public function makeLogRecentChange(
29  $logType, $logAction, User $user, $titleText, $timestamp, $counter, $watchingUsers
30  ) {
31  $attribs = array_merge(
32  $this->getDefaultAttributes( $titleText, $timestamp ),
33  [
34  'rc_cur_id' => 0,
35  'rc_user' => $user->getId(),
36  'rc_user_text' => $user->getName(),
37  'rc_this_oldid' => 0,
38  'rc_last_oldid' => 0,
39  'rc_old_len' => null,
40  'rc_new_len' => null,
41  'rc_type' => 3,
42  'rc_logid' => 25,
43  'rc_log_type' => $logType,
44  'rc_log_action' => $logAction,
45  'rc_source' => 'mw.log'
46  ]
47  );
48 
49  return $this->makeRecentChange( $attribs, $counter, $watchingUsers );
50  }
51 
52  public function makeDeletedEditRecentChange( User $user, $titleText, $timestamp, $curid,
53  $thisid, $lastid, $counter, $watchingUsers
54  ) {
55  $attribs = array_merge(
56  $this->getDefaultAttributes( $titleText, $timestamp ),
57  [
58  'rc_user' => $user->getId(),
59  'rc_user_text' => $user->getName(),
60  'rc_deleted' => 5,
61  'rc_cur_id' => $curid,
62  'rc_this_oldid' => $thisid,
63  'rc_last_oldid' => $lastid
64  ]
65  );
66 
67  return $this->makeRecentChange( $attribs, $counter, $watchingUsers );
68  }
69 
70  public function makeNewBotEditRecentChange( User $user, $titleText, $curid, $thisid, $lastid,
71  $timestamp, $counter, $watchingUsers
72  ) {
73 
74  $attribs = array_merge(
75  $this->getDefaultAttributes( $titleText, $timestamp ),
76  [
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,
82  'rc_type' => 1,
83  'rc_bot' => 1,
84  'rc_source' => 'mw.new'
85  ]
86  );
87 
88  return $this->makeRecentChange( $attribs, $counter, $watchingUsers );
89  }
90 
91  private function makeRecentChange( $attribs, $counter, $watchingUsers ) {
92  $change = new RecentChange();
93  $change->setAttribs( $attribs );
94  $change->counter = $counter;
95  $change->numberofWatchingusers = $watchingUsers;
96 
97  return $change;
98  }
99 
100  public function getCacheEntry( $recentChange ) {
101  $rcCacheFactory = new RCCacheEntryFactory(
102  new RequestContext(),
103  [ 'diff' => 'diff', 'cur' => 'cur', 'last' => 'last' ]
104  );
105  return $rcCacheFactory->newFromRecentChange( $recentChange, false );
106  }
107 
109  User $user, $titleText, $curid, $thisid, $lastid, $timestamp
110  ) {
111 
112  $attribs = array_merge(
113  $this->getDefaultAttributes( $titleText, $timestamp ),
114  [
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',
122  'rc_old_len' => 0,
123  'rc_new_len' => 0,
124  ]
125  );
126 
127  return $this->makeRecentChange( $attribs, 0, 0 );
128  }
129 
130  private function getDefaultAttributes( $titleText, $timestamp ) {
131  return [
132  'rc_id' => 545,
133  'rc_user' => 0,
134  'rc_user_text' => '127.0.0.1',
135  'rc_ip' => '127.0.0.1',
136  'rc_title' => $titleText,
137  'rc_namespace' => 0,
138  'rc_timestamp' => $timestamp,
139  'rc_old_len' => 212,
140  'rc_new_len' => 188,
141  'rc_comment' => '',
142  'rc_minor' => 0,
143  'rc_bot' => 0,
144  'rc_type' => 0,
145  'rc_patrolled' => 1,
146  'rc_deleted' => 0,
147  'rc_logid' => 0,
148  'rc_log_type' => null,
149  'rc_log_action' => '',
150  'rc_params' => '',
151  'rc_source' => 'mw.edit'
152  ];
153  }
154 
155  public function getTestContext( User $user ) {
156  $context = new RequestContext();
157  $context->setLanguage( 'en' );
158 
159  $context->setUser( $user );
160 
161  $title = Title::newFromText( 'RecentChanges', NS_SPECIAL );
162  $context->setTitle( $title );
163 
164  return $context;
165  }
166 }
const RC_CATEGORIZE
Definition: Defines.php:173
Utility class for creating new RC entries.
getDefaultAttributes($titleText, $timestamp)
Group all the pieces relevant to the context of a request into one instance.
$context
Definition: load.php:44
Helper for generating test recent changes entries.
const NS_SPECIAL
Definition: Defines.php:58
static newFromText($text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Definition: Title.php:277
makeRecentChange($attribs, $counter, $watchingUsers)
getName()
Get the user name, or the IP of an anonymous user.
Definition: User.php:2088
makeDeletedEditRecentChange(User $user, $titleText, $timestamp, $curid, $thisid, $lastid, $counter, $watchingUsers)
makeCategorizationRecentChange(User $user, $titleText, $curid, $thisid, $lastid, $timestamp)
if($limit) $timestamp
makeLogRecentChange($logType, $logAction, User $user, $titleText, $timestamp, $counter, $watchingUsers)
makeEditRecentChange(User $user, $titleText, $curid, $thisid, $lastid, $timestamp, $counter, $watchingUsers)
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:912
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
Definition: hooks.txt:242
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
makeNewBotEditRecentChange(User $user, $titleText, $curid, $thisid, $lastid, $timestamp, $counter, $watchingUsers)
getId()
Get the user's ID.
Definition: User.php:2063
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses after processing & $attribs
Definition: hooks.txt:1798