2021-02-18 22:29:55 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// {{{ License
|
|
|
|
// This file is part of GNU social - https://www.gnu.org/software/social
|
|
|
|
//
|
|
|
|
// GNU social is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// GNU social is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with GNU social. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
// }}}
|
|
|
|
|
|
|
|
namespace Plugin\TreeNotes;
|
|
|
|
|
2021-04-19 19:51:05 +01:00
|
|
|
use App\Core\Modules\Plugin;
|
2021-02-18 22:29:55 +00:00
|
|
|
use App\Entity\Note;
|
|
|
|
|
2021-04-19 19:51:05 +01:00
|
|
|
class TreeNotes extends Plugin
|
2021-02-18 22:29:55 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Format the given $notes_in_trees_out in a list of reply trees
|
|
|
|
*/
|
2021-08-07 22:52:00 +01:00
|
|
|
public function onFormatNoteList(array $notes_in, ?array &$notes_out)
|
2021-02-18 22:29:55 +00:00
|
|
|
{
|
2021-08-07 22:52:00 +01:00
|
|
|
$roots = array_filter($notes_in, function (Note $note) { return $note->getReplyTo() == null; });
|
|
|
|
$notes_out = $this->build_tree($roots, $notes_in);
|
2021-02-18 22:29:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private function build_tree(array $parents, array $notes)
|
|
|
|
{
|
|
|
|
$subtree = [];
|
|
|
|
foreach ($parents as $p) {
|
|
|
|
$subtree[] = $this->build_subtree($p, $notes);
|
|
|
|
}
|
|
|
|
return $subtree;
|
|
|
|
}
|
|
|
|
|
|
|
|
private function build_subtree(Note $parent, array $notes)
|
|
|
|
{
|
2021-08-07 22:52:00 +01:00
|
|
|
$children = array_filter($notes, function (Note $n) use ($parent) { return $parent->getId() == $n->getReplyTo(); });
|
2021-02-18 22:29:55 +00:00
|
|
|
return ['note' => $parent, 'replies' => $this->build_tree($children, $notes)];
|
|
|
|
}
|
|
|
|
}
|