Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F1427709
PushNotifier.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
PushNotifier.php
View Options
<?php
namespace
MediaWiki\Extension\Notifications\Push
;
use
MediaWiki\Extension\Notifications\Model\Event
;
use
MediaWiki\Extension\Notifications\Services
;
use
MediaWiki\MediaWikiServices
;
use
MediaWiki\User\UserIdentity
;
class
PushNotifier
{
/**
* Submits a notification derived from an Echo event to each push notifications service
* subscription found for a user, via a configured service handler implementation
* @param UserIdentity $user
* @param Event $event
*/
public
static
function
notifyWithPush
(
UserIdentity
$user
,
Event
$event
):
void
{
$attributeManager
=
Services
::
getInstance
()->
getAttributeManager
();
$userEnabledEvents
=
$attributeManager
->
getUserEnabledEvents
(
$user
,
'push'
);
if
(
in_array
(
$event
->
getType
(),
$userEnabledEvents
)
)
{
MediaWikiServices
::
getInstance
()->
getJobQueueGroup
()->
push
(
self
::
createJob
(
$user
,
$event
)
);
}
}
/**
* @param UserIdentity $user
* @param Event|null $event
* @return NotificationRequestJob
*/
private
static
function
createJob
(
UserIdentity
$user
,
?
Event
$event
=
null
):
NotificationRequestJob
{
$centralId
=
Utils
::
getPushUserId
(
$user
);
$params
=
[
'centralId'
=>
$centralId
];
// below params are only needed for debug logging (T255068)
if
(
$event
!==
null
)
{
$params
[
'eventId'
]
=
$event
->
getId
();
$params
[
'eventType'
]
=
$event
->
getType
();
if
(
$event
->
getAgent
()
!==
null
)
{
$params
[
'agent'
]
=
$event
->
getAgent
()->
getId
();
}
}
return
new
NotificationRequestJob
(
'EchoPushNotificationRequest'
,
$params
);
}
}
class_alias
(
PushNotifier
::
class
,
'EchoPush
\\
PushNotifier'
);
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, May 16, 14:58 (19 h, 17 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
e4/48/cfe2d2b71950aa7969f2f231f3d0
Default Alt Text
PushNotifier.php (1 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment