96 $editor = $mwServices->getUserFactory()
99 $title = Title::castFromPageReference( $recentChange->
getPage() );
100 if ( $title ===
null || $title->getNamespace() < 0 ) {
104 $timestamp = $recentChange->mAttribs[
'rc_timestamp'];
105 $summary = $recentChange->mAttribs[
'rc_comment'];
106 $minorEdit = $recentChange->mAttribs[
'rc_minor'];
107 $oldid = $recentChange->mAttribs[
'rc_last_oldid'];
108 $pageStatus = $recentChange->mExtra[
'pageStatus'] ??
'changed';
110 $config = $mwServices->getMainConfig();
114 if ( $config->get( MainConfigNames::EnotifWatchlist ) || $config->get( MainConfigNames::ShowUpdatedMarker ) ) {
115 $watchers = $mwServices->getWatchedItemStore()->updateNotificationTimestamp(
123 if ( $editor->isBot() ) {
127 $sendNotification =
true;
132 if ( $watchers === [] &&
133 !count( $config->get( MainConfigNames::UsersNotifiedOnAllChanges ) )
135 $sendNotification =
false;
138 ( $config->get( MainConfigNames::EnotifMinorEdits ) &&
139 !$editor->isAllowed(
'nominornewtalk' ) )
141 if ( $config->get( MainConfigNames::EnotifUserTalk )
143 && $this->canSendUserTalkEmail( $editor, $title, $minorEdit )
145 $sendNotification =
true;
150 if ( $sendNotification ) {
154 'editor' => $editor->
getName(),
155 'editorID' => $editor->
getId(),
156 'timestamp' => $timestamp,
157 'summary' => $summary,
158 'minorEdit' => $minorEdit,
160 'watchers' => $watchers,
161 'pageStatus' => $pageStatus,
168 return $sendNotification;
196 $pageStatus =
'changed'
198 # we use $wgPasswordSender as sender's address
199 $mwServices = MediaWikiServices::getInstance();
200 $config = $mwServices->getMainConfig();
201 $notifService = $mwServices->getNotificationService();
202 $userFactory = $mwServices->getUserFactory();
204 # The following code is only run, if several conditions are met:
205 # 1. EmailNotification for pages (other than user_talk pages) must be enabled
206 # 2. minor edits (changes) are only regarded if the global flag indicates so
207 $this->pageStatus = $pageStatus;
209 $formattedPageStatus = [
'deleted',
'created',
'moved',
'restored',
'changed' ];
211 $hookRunner =
new HookRunner( $mwServices->getHookContainer() );
212 $hookRunner->onUpdateUserMailerFormattedPageStatus( $formattedPageStatus );
213 if ( !in_array( $this->pageStatus, $formattedPageStatus ) ) {
214 throw new UnexpectedValueException(
'Not a valid page status!' );
230 ( $config->get( MainConfigNames::EnotifMinorEdits ) &&
231 !$editor->
isAllowed(
'nominornewtalk' ) )
233 if ( $config->get( MainConfigNames::EnotifUserTalk )
235 && $this->canSendUserTalkEmail( $editor->
getUser(), $title, $minorEdit )
237 $targetUser = $userFactory->newFromName( $title->getText() );
240 $mwServices->getUserFactory()->newFromAuthority( $editor ),
247 RecentChangeNotification::TALK_NOTIFICATION
249 $notifService->notify( $talkNotification,
new RecipientSet( [ $targetUser ] ) );
250 $userTalkId = $targetUser->getId();
254 if ( $config->get( MainConfigNames::EnotifWatchlist ) ) {
255 $userOptionsLookup = $mwServices->getUserOptionsLookup();
258 $userArray = UserArray::newFromIDs( $watchers );
259 foreach ( $userArray as $watchingUser ) {
260 if ( $userOptionsLookup->
getOption( $watchingUser,
'enotifwatchlistpages' )
261 && ( !$minorEdit || $userOptionsLookup->
getOption( $watchingUser,
'enotifminoredits' ) )
262 && $watchingUser->isEmailConfirmed()
263 && $watchingUser->getId() != $userTalkId
264 && !in_array( $watchingUser->getName(),
265 $config->get( MainConfigNames::UsersNotifiedOnAllChanges ) )
268 && !( $config->get( MainConfigNames::BlockDisablesLogin ) &&
269 $watchingUser->getBlock() )
270 && $hookRunner->onSendWatchlistEmailNotification( $watchingUser, $title, $this )
272 $composer->compose( $watchingUser, RecentChangeMailComposer::WATCHLIST );
278 foreach ( $config->get( MainConfigNames::UsersNotifiedOnAllChanges ) as $name ) {
280 if ( $editor->
getUser()->getName() == $name ) {
284 $user = $userFactory->newFromName( $name );
285 if ( $user instanceof
User ) {
288 $notifService->notify(
290 $mwServices->getUserFactory()->newFromAuthority( $editor ),
297 RecentChangeNotification::ADMIN_NOTIFICATION
303 $composer->sendMails();