xref: /webtrees/app/Module/LoggedInUsersModule.php (revision 210dfef2b733195f1b6bdc67fcfa8fed99e6bac4)
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 */
1676692c8bSGreg Roachnamespace Fisharebest\Webtrees\Module;
1776692c8bSGreg Roach
180e62c4b8SGreg Roachuse Fisharebest\Webtrees\Auth;
1915d603e7SGreg Roachuse Fisharebest\Webtrees\FontAwesome;
200e62c4b8SGreg Roachuse Fisharebest\Webtrees\I18N;
210e62c4b8SGreg Roachuse Fisharebest\Webtrees\Individual;
22e490cd80SGreg Roachuse Fisharebest\Webtrees\Tree;
230e62c4b8SGreg Roachuse Fisharebest\Webtrees\User;
248c2e8227SGreg Roach
258c2e8227SGreg Roach/**
268c2e8227SGreg Roach * Class LoggedInUsersModule
278c2e8227SGreg Roach */
28c1010edaSGreg Roachclass LoggedInUsersModule extends AbstractModule implements ModuleBlockInterface
29c1010edaSGreg Roach{
308c2e8227SGreg Roach    /** {@inheritdoc} */
31c1010edaSGreg Roach    public function getTitle()
32c1010edaSGreg Roach    {
33c1010edaSGreg Roach        return /* I18N: Name of a module. (A list of users who are online now) */
34c1010edaSGreg Roach            I18N::translate('Who is online');
358c2e8227SGreg Roach    }
368c2e8227SGreg Roach
378c2e8227SGreg Roach    /** {@inheritdoc} */
38c1010edaSGreg Roach    public function getDescription()
39c1010edaSGreg Roach    {
40c1010edaSGreg Roach        return /* I18N: Description of the “Who is online” module */
41c1010edaSGreg Roach            I18N::translate('A list of users and visitors who are currently online.');
428c2e8227SGreg Roach    }
438c2e8227SGreg Roach
4476692c8bSGreg Roach    /**
4576692c8bSGreg Roach     * Generate the HTML content of this block.
4676692c8bSGreg Roach     *
47e490cd80SGreg Roach     * @param Tree     $tree
4876692c8bSGreg Roach     * @param int      $block_id
4976692c8bSGreg Roach     * @param bool     $template
50727f238cSGreg Roach     * @param string[] $cfg
5176692c8bSGreg Roach     *
5276692c8bSGreg Roach     * @return string
5376692c8bSGreg Roach     */
54c1010edaSGreg Roach    public function getBlock(Tree $tree, int $block_id, bool $template = true, array $cfg = []): string
55c1010edaSGreg Roach    {
568c2e8227SGreg Roach        $anonymous = 0;
5713abd6f3SGreg Roach        $logged_in = [];
588c2e8227SGreg Roach        $content   = '';
598c2e8227SGreg Roach        foreach (User::allLoggedIn() as $user) {
608c2e8227SGreg Roach            if (Auth::isAdmin() || $user->getPreference('visibleonline')) {
618c2e8227SGreg Roach                $logged_in[] = $user;
628c2e8227SGreg Roach            } else {
638c2e8227SGreg Roach                $anonymous++;
648c2e8227SGreg Roach            }
658c2e8227SGreg Roach        }
668c2e8227SGreg Roach        $count_logged_in = count($logged_in);
678c2e8227SGreg Roach        $content         .= '<div class="logged_in_count">';
688c2e8227SGreg Roach        if ($anonymous) {
69cdc90107SGreg Roach            $content .= I18N::plural('%s anonymous signed-in user', '%s anonymous signed-in users', $anonymous, I18N::number($anonymous));
708c2e8227SGreg Roach            if ($count_logged_in) {
718c2e8227SGreg Roach                $content .= '&nbsp;|&nbsp;';
728c2e8227SGreg Roach            }
738c2e8227SGreg Roach        }
748c2e8227SGreg Roach        if ($count_logged_in) {
75cdc90107SGreg Roach            $content .= I18N::plural('%s signed-in user', '%s signed-in users', $count_logged_in, I18N::number($count_logged_in));
768c2e8227SGreg Roach        }
778c2e8227SGreg Roach        $content .= '</div>';
788c2e8227SGreg Roach        $content .= '<div class="logged_in_list">';
798c2e8227SGreg Roach        if (Auth::check()) {
808c2e8227SGreg Roach            foreach ($logged_in as $user) {
81e490cd80SGreg Roach                $individual = Individual::getInstance($tree->getUserPreference($user, 'gedcomid'), $tree);
82e3fb86dfSGreg Roach
838c2e8227SGreg Roach                $content .= '<div class="logged_in_name">';
84e3fb86dfSGreg Roach                if ($individual) {
85f1aa52cbSGreg Roach                    $content .= '<a href="' . e($individual->url()) . '">' . e($user->getRealName()) . '</a>';
86e3fb86dfSGreg Roach                } else {
87f1aa52cbSGreg Roach                    $content .= e($user->getRealName());
88e3fb86dfSGreg Roach                }
89d53324c9SGreg Roach                $content .= ' - ' . e($user->getUserName());
90*210dfef2SGreg Roach                if (true || Auth::id() !== $user->getUserId() && $user->getPreference('contactmethod') !== 'none') {
91*210dfef2SGreg 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>';
928c2e8227SGreg Roach                }
938c2e8227SGreg Roach                $content .= '</div>';
948c2e8227SGreg Roach            }
958c2e8227SGreg Roach        }
968c2e8227SGreg Roach        $content .= '</div>';
978c2e8227SGreg Roach
988c2e8227SGreg Roach        if ($anonymous === 0 && $count_logged_in === 0) {
998c2e8227SGreg Roach            return '';
1008c2e8227SGreg Roach        }
1018c2e8227SGreg Roach
1028c2e8227SGreg Roach        if ($template) {
103147e99aaSGreg Roach            return view('modules/block-template', [
1049c6524dcSGreg Roach                'block'      => str_replace('_', '-', $this->getName()),
1059c6524dcSGreg Roach                'id'         => $block_id,
1069c6524dcSGreg Roach                'config_url' => '',
1079c6524dcSGreg Roach                'title'      => $this->getTitle(),
1089c6524dcSGreg Roach                'content'    => $content,
1099c6524dcSGreg Roach            ]);
1108c2e8227SGreg Roach        } else {
1118c2e8227SGreg Roach            return $content;
1128c2e8227SGreg Roach        }
1138c2e8227SGreg Roach    }
1148c2e8227SGreg Roach
1158c2e8227SGreg Roach    /** {@inheritdoc} */
116c1010edaSGreg Roach    public function loadAjax(): bool
117c1010edaSGreg Roach    {
1188c2e8227SGreg Roach        return false;
1198c2e8227SGreg Roach    }
1208c2e8227SGreg Roach
1218c2e8227SGreg Roach    /** {@inheritdoc} */
122c1010edaSGreg Roach    public function isUserBlock(): bool
123c1010edaSGreg Roach    {
1248c2e8227SGreg Roach        return true;
1258c2e8227SGreg Roach    }
1268c2e8227SGreg Roach
1278c2e8227SGreg Roach    /** {@inheritdoc} */
128c1010edaSGreg Roach    public function isGedcomBlock(): bool
129c1010edaSGreg Roach    {
1308c2e8227SGreg Roach        return true;
1318c2e8227SGreg Roach    }
1328c2e8227SGreg Roach
13376692c8bSGreg Roach    /**
13476692c8bSGreg Roach     * An HTML form to edit block settings
13576692c8bSGreg Roach     *
136e490cd80SGreg Roach     * @param Tree $tree
13776692c8bSGreg Roach     * @param int  $block_id
138a9430be8SGreg Roach     *
139a9430be8SGreg Roach     * @return void
14076692c8bSGreg Roach     */
141c1010edaSGreg Roach    public function configureBlock(Tree $tree, int $block_id)
142c1010edaSGreg Roach    {
1438c2e8227SGreg Roach    }
1448c2e8227SGreg Roach}
145