2016-03-04 19:23:02 +00:00
|
|
|
<?php
|
|
|
|
|
2022-11-13 06:43:40 +00:00
|
|
|
namespace MediaWiki\Extension\Notifications;
|
|
|
|
|
2016-03-04 19:23:02 +00:00
|
|
|
class Bundler {
|
|
|
|
|
|
|
|
private function sort( &$array ) {
|
2021-06-29 15:29:23 +00:00
|
|
|
usort( $array, static function ( Bundleable $a, Bundleable $b ) {
|
2016-03-04 19:23:02 +00:00
|
|
|
return strcmp( $b->getSortingKey(), $a->getSortingKey() );
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Bundle bundleable elements that can be bundled by their bundling keys
|
|
|
|
*
|
|
|
|
* @param Bundleable[] $bundleables
|
|
|
|
* @return Bundleable[] Grouped notifications sorted by timestamp DESC
|
|
|
|
*/
|
2019-10-23 10:44:35 +00:00
|
|
|
public function bundle( array $bundleables ) {
|
2016-12-05 18:51:07 +00:00
|
|
|
$groups = [];
|
|
|
|
$bundled = [];
|
2016-03-04 19:23:02 +00:00
|
|
|
|
|
|
|
/** @var Bundleable $element */
|
|
|
|
foreach ( $bundleables as $element ) {
|
|
|
|
if ( $element->canBeBundled() && $element->getBundlingKey() ) {
|
|
|
|
$groups[ $element->getBundlingKey() ][] = $element;
|
|
|
|
} else {
|
|
|
|
$bundled[] = $element;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ( $groups as $bundlingKey => $group ) {
|
|
|
|
$this->sort( $group );
|
|
|
|
/** @var Bundleable $base */
|
|
|
|
$base = array_shift( $group );
|
|
|
|
$base->setBundledElements( $group );
|
|
|
|
$bundled[] = $base;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->sort( $bundled );
|
|
|
|
return $bundled;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|