xref: /webtrees/app/Module/LoggedInUsersModule.php (revision e7f56f2af615447ab1a7646851f88b465ace9e04)
18c2e8227SGreg Roach<?php
28c2e8227SGreg Roach/**
38c2e8227SGreg Roach * webtrees: online genealogy
41062a142SGreg Roach * Copyright (C) 2018 webtrees development team
58c2e8227SGreg Roach * This program is free software: you can redistribute it and/or modify
68c2e8227SGreg Roach * it under the terms of the GNU General Public License as published by
78c2e8227SGreg Roach * the Free Software Foundation, either version 3 of the License, or
88c2e8227SGreg Roach * (at your option) any later version.
98c2e8227SGreg Roach * This program is distributed in the hope that it will be useful,
108c2e8227SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
118c2e8227SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
128c2e8227SGreg Roach * GNU General Public License for more details.
138c2e8227SGreg Roach * You should have received a copy of the GNU General Public License
148c2e8227SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
158c2e8227SGreg Roach */
16*e7f56f2aSGreg Roachdeclare(strict_types=1);
17*e7f56f2aSGreg Roach
1876692c8bSGreg Roachnamespace Fisharebest\Webtrees\Module;
1976692c8bSGreg Roach
200e62c4b8SGreg Roachuse Fisharebest\Webtrees\Auth;
210e62c4b8SGreg Roachuse Fisharebest\Webtrees\I18N;
220e62c4b8SGreg Roachuse Fisharebest\Webtrees\Individual;
23e490cd80SGreg Roachuse Fisharebest\Webtrees\Tree;
240e62c4b8SGreg Roachuse Fisharebest\Webtrees\User;
25a45f9889SGreg Roachuse Symfony\Component\HttpFoundation\Request;
268c2e8227SGreg Roach
278c2e8227SGreg Roach/**
288c2e8227SGreg Roach * Class LoggedInUsersModule
298c2e8227SGreg Roach */
30c1010edaSGreg Roachclass LoggedInUsersModule extends AbstractModule implements ModuleBlockInterface
31c1010edaSGreg Roach{
328c2e8227SGreg Roach    /** {@inheritdoc} */
338f53f488SRico Sonntag    public function getTitle(): string
34c1010edaSGreg Roach    {
35bbb76c12SGreg Roach        /* I18N: Name of a module. (A list of users who are online now) */
36bbb76c12SGreg Roach        return I18N::translate('Who is online');
378c2e8227SGreg Roach    }
388c2e8227SGreg Roach
398c2e8227SGreg Roach    /** {@inheritdoc} */
408f53f488SRico Sonntag    public function getDescription(): string
41c1010edaSGreg Roach    {
42bbb76c12SGreg Roach        /* I18N: Description of the “Who is online” module */
43bbb76c12SGreg Roach        return I18N::translate('A list of users and visitors who are currently online.');
448c2e8227SGreg Roach    }
458c2e8227SGreg Roach
4676692c8bSGreg Roach    /**
4776692c8bSGreg Roach     * Generate the HTML content of this block.
4876692c8bSGreg Roach     *
49e490cd80SGreg Roach     * @param Tree     $tree
5076692c8bSGreg Roach     * @param int      $block_id
5176692c8bSGreg Roach     * @param bool     $template
52727f238cSGreg Roach     * @param string[] $cfg
5376692c8bSGreg Roach     *
5476692c8bSGreg Roach     * @return string
5576692c8bSGreg Roach     */
56c1010edaSGreg Roach    public function getBlock(Tree $tree, int $block_id, bool $template = true, array $cfg = []): string
57c1010edaSGreg Roach    {
588c2e8227SGreg Roach        $anonymous = 0;
5913abd6f3SGreg Roach        $logged_in = [];
608c2e8227SGreg Roach        $content   = '';
618c2e8227SGreg Roach        foreach (User::allLoggedIn() as $user) {
628c2e8227SGreg Roach            if (Auth::isAdmin() || $user->getPreference('visibleonline')) {
638c2e8227SGreg Roach                $logged_in[] = $user;
648c2e8227SGreg Roach            } else {
658c2e8227SGreg Roach                $anonymous++;
668c2e8227SGreg Roach            }
678c2e8227SGreg Roach        }
688c2e8227SGreg Roach        $count_logged_in = count($logged_in);
698c2e8227SGreg Roach        $content .= '<div class="logged_in_count">';
708c2e8227SGreg Roach        if ($anonymous) {
71cdc90107SGreg Roach            $content .= I18N::plural('%s anonymous signed-in user', '%s anonymous signed-in users', $anonymous, I18N::number($anonymous));
728c2e8227SGreg Roach            if ($count_logged_in) {
738c2e8227SGreg Roach                $content .= '&nbsp;|&nbsp;';
748c2e8227SGreg Roach            }
758c2e8227SGreg Roach        }
768c2e8227SGreg Roach        if ($count_logged_in) {
77cdc90107SGreg Roach            $content .= I18N::plural('%s signed-in user', '%s signed-in users', $count_logged_in, I18N::number($count_logged_in));
788c2e8227SGreg Roach        }
798c2e8227SGreg Roach        $content .= '</div>';
808c2e8227SGreg Roach        $content .= '<div class="logged_in_list">';
818c2e8227SGreg Roach        if (Auth::check()) {
828c2e8227SGreg Roach            foreach ($logged_in as $user) {
83e490cd80SGreg Roach                $individual = Individual::getInstance($tree->getUserPreference($user, 'gedcomid'), $tree);
84e3fb86dfSGreg Roach
858c2e8227SGreg Roach                $content .= '<div class="logged_in_name">';
86e3fb86dfSGreg Roach                if ($individual) {
87f1aa52cbSGreg Roach                    $content .= '<a href="' . e($individual->url()) . '">' . e($user->getRealName()) . '</a>';
88e3fb86dfSGreg Roach                } else {
89f1aa52cbSGreg Roach                    $content .= e($user->getRealName());
90e3fb86dfSGreg Roach                }
91d53324c9SGreg Roach                $content .= ' - ' . e($user->getUserName());
92b7f52fc1SRico Sonntag                if (Auth::id() !== $user->getUserId() && $user->getPreference('contactmethod') !== 'none') {
93210dfef2SGreg Roach                    $content .= '<a href="' . e(route('message', ['to'  => $user->getUserName(), 'ged' => $tree->getName()])) . '" class="btn btn-link" title="' . I18N::translate('Send a message') . '">' . view('icons/email') . '</a>';
948c2e8227SGreg Roach                }
958c2e8227SGreg Roach                $content .= '</div>';
968c2e8227SGreg Roach            }
978c2e8227SGreg Roach        }
988c2e8227SGreg Roach        $content .= '</div>';
998c2e8227SGreg Roach
1008c2e8227SGreg Roach        if ($anonymous === 0 && $count_logged_in === 0) {
1018c2e8227SGreg Roach            return '';
1028c2e8227SGreg Roach        }
1038c2e8227SGreg Roach
1048c2e8227SGreg Roach        if ($template) {
105147e99aaSGreg Roach            return view('modules/block-template', [
1069c6524dcSGreg Roach                'block'      => str_replace('_', '-', $this->getName()),
1079c6524dcSGreg Roach                'id'         => $block_id,
1089c6524dcSGreg Roach                'config_url' => '',
1099c6524dcSGreg Roach                'title'      => $this->getTitle(),
1109c6524dcSGreg Roach                'content'    => $content,
1119c6524dcSGreg Roach            ]);
1128c2e8227SGreg Roach        }
113b2ce94c6SRico Sonntag
114b2ce94c6SRico Sonntag        return $content;
1158c2e8227SGreg Roach    }
1168c2e8227SGreg Roach
1178c2e8227SGreg Roach    /** {@inheritdoc} */
118c1010edaSGreg Roach    public function loadAjax(): bool
119c1010edaSGreg Roach    {
1208c2e8227SGreg Roach        return false;
1218c2e8227SGreg Roach    }
1228c2e8227SGreg Roach
1238c2e8227SGreg Roach    /** {@inheritdoc} */
124c1010edaSGreg Roach    public function isUserBlock(): bool
125c1010edaSGreg Roach    {
1268c2e8227SGreg Roach        return true;
1278c2e8227SGreg Roach    }
1288c2e8227SGreg Roach
1298c2e8227SGreg Roach    /** {@inheritdoc} */
130c1010edaSGreg Roach    public function isGedcomBlock(): bool
131c1010edaSGreg Roach    {
1328c2e8227SGreg Roach        return true;
1338c2e8227SGreg Roach    }
1348c2e8227SGreg Roach
13576692c8bSGreg Roach    /**
136a45f9889SGreg Roach     * Update the configuration for a block.
137a45f9889SGreg Roach     *
138a45f9889SGreg Roach     * @param Request $request
139a45f9889SGreg Roach     * @param int     $block_id
140a45f9889SGreg Roach     *
141a45f9889SGreg Roach     * @return void
142a45f9889SGreg Roach     */
143a45f9889SGreg Roach    public function saveBlockConfiguration(Request $request, int $block_id)
144a45f9889SGreg Roach    {
145a45f9889SGreg Roach    }
146a45f9889SGreg Roach
147a45f9889SGreg Roach    /**
14876692c8bSGreg Roach     * An HTML form to edit block settings
14976692c8bSGreg Roach     *
150e490cd80SGreg Roach     * @param Tree $tree
15176692c8bSGreg Roach     * @param int  $block_id
152a9430be8SGreg Roach     *
153a9430be8SGreg Roach     * @return void
15476692c8bSGreg Roach     */
155a45f9889SGreg Roach    public function editBlockConfiguration(Tree $tree, int $block_id)
156c1010edaSGreg Roach    {
1578c2e8227SGreg Roach    }
1588c2e8227SGreg Roach}
159