18add1155SRico Sonntag<?php 23976b470SGreg Roach 38add1155SRico Sonntag/** 48add1155SRico Sonntag * webtrees: online genealogy 51fe542e9SGreg Roach * Copyright (C) 2021 webtrees development team 68add1155SRico Sonntag * This program is free software: you can redistribute it and/or modify 78add1155SRico Sonntag * it under the terms of the GNU General Public License as published by 88add1155SRico Sonntag * the Free Software Foundation, either version 3 of the License, or 98add1155SRico Sonntag * (at your option) any later version. 108add1155SRico Sonntag * This program is distributed in the hope that it will be useful, 118add1155SRico Sonntag * but WITHOUT ANY WARRANTY; without even the implied warranty of 128add1155SRico Sonntag * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 138add1155SRico Sonntag * GNU General Public License for more details. 148add1155SRico Sonntag * You should have received a copy of the GNU General Public License 1589f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>. 168add1155SRico Sonntag */ 17fcfa147eSGreg Roach 188add1155SRico Sonntagdeclare(strict_types=1); 198add1155SRico Sonntag 208add1155SRico Sonntagnamespace Fisharebest\Webtrees\Statistics\Repository; 218add1155SRico Sonntag 228add1155SRico Sonntaguse Fisharebest\Webtrees\Auth; 234459dc9aSGreg Roachuse Fisharebest\Webtrees\Carbon; 24e364afe4SGreg Roachuse Fisharebest\Webtrees\Contracts\UserInterface; 258add1155SRico Sonntaguse Fisharebest\Webtrees\I18N; 26e5a6b4d4SGreg Roachuse Fisharebest\Webtrees\Services\UserService; 278add1155SRico Sonntaguse Fisharebest\Webtrees\Statistics\Repository\Interfaces\LatestUserRepositoryInterface; 288add1155SRico Sonntaguse Illuminate\Database\Capsule\Manager as DB; 298add1155SRico Sonntaguse Illuminate\Database\Query\Builder; 308add1155SRico Sonntaguse Illuminate\Database\Query\JoinClause; 318add1155SRico Sonntag 32*4c78e066SGreg Roachuse function date; 33*4c78e066SGreg Roachuse function e; 34*4c78e066SGreg Roachuse function str_replace; 35*4c78e066SGreg Roach 368add1155SRico Sonntag/** 378add1155SRico Sonntag * A repository providing methods for latest user related statistics. 388add1155SRico Sonntag */ 398add1155SRico Sonntagclass LatestUserRepository implements LatestUserRepositoryInterface 408add1155SRico Sonntag{ 41*4c78e066SGreg Roach private UserService $user_service; 42e5a6b4d4SGreg Roach 43e5a6b4d4SGreg Roach /** 44e5a6b4d4SGreg Roach * LatestUserRepository constructor. 458add1155SRico Sonntag * 46e5a6b4d4SGreg Roach * @param UserService $user_service 47e5a6b4d4SGreg Roach */ 48e2cbf57aSGreg Roach public function __construct(UserService $user_service) 49e2cbf57aSGreg Roach { 50e5a6b4d4SGreg Roach $this->user_service = $user_service; 51e5a6b4d4SGreg Roach } 52e5a6b4d4SGreg Roach 53e5a6b4d4SGreg Roach /** 540dcd9387SGreg Roach * @return string 55e364afe4SGreg Roach */ 56e364afe4SGreg Roach public function latestUserId(): string 57e364afe4SGreg Roach { 58e364afe4SGreg Roach return (string) $this->latestUserQuery()->id(); 59e364afe4SGreg Roach } 60e364afe4SGreg Roach 61e364afe4SGreg Roach /** 62e5a6b4d4SGreg Roach * Find the newest user on the site. 638add1155SRico Sonntag * If no user has registered (i.e. all created by the admin), then 648add1155SRico Sonntag * return the current user. 658add1155SRico Sonntag * 66e364afe4SGreg Roach * @return UserInterface 678add1155SRico Sonntag */ 68e364afe4SGreg Roach private function latestUserQuery(): UserInterface 698add1155SRico Sonntag { 708add1155SRico Sonntag static $user; 718add1155SRico Sonntag 72e364afe4SGreg Roach if ($user instanceof UserInterface) { 738add1155SRico Sonntag return $user; 748add1155SRico Sonntag } 758add1155SRico Sonntag 768add1155SRico Sonntag $user_id = DB::table('user as u') 778add1155SRico Sonntag ->select(['u.user_id']) 780b5fd0a6SGreg Roach ->leftJoin('user_setting as us', static function (JoinClause $join): void { 790b5fd0a6SGreg Roach $join->on(static function (Builder $query): void { 808add1155SRico Sonntag $query->whereColumn('u.user_id', '=', 'us.user_id') 811fe542e9SGreg Roach ->where('us.setting_name', '=', UserInterface::PREF_TIMESTAMP_REGISTERED); 828add1155SRico Sonntag }); 838add1155SRico Sonntag }) 848add1155SRico Sonntag ->orderByDesc('us.setting_value') 858add1155SRico Sonntag ->value('user_id'); 868add1155SRico Sonntag 8724f2a3afSGreg Roach if ($user_id !== null) { 8824f2a3afSGreg Roach $user_id = (int) $user_id; 8924f2a3afSGreg Roach } 9024f2a3afSGreg Roach 91e5a6b4d4SGreg Roach $user = $this->user_service->find($user_id) ?? Auth::user(); 928add1155SRico Sonntag 938add1155SRico Sonntag return $user; 948add1155SRico Sonntag } 958add1155SRico Sonntag 968add1155SRico Sonntag /** 970dcd9387SGreg Roach * @return string 988add1155SRico Sonntag */ 998add1155SRico Sonntag public function latestUserName(): string 1008add1155SRico Sonntag { 101e5a6b4d4SGreg Roach return e($this->latestUserQuery()->userName()); 1028add1155SRico Sonntag } 1038add1155SRico Sonntag 1048add1155SRico Sonntag /** 1050dcd9387SGreg Roach * @return string 1068add1155SRico Sonntag */ 1078add1155SRico Sonntag public function latestUserFullName(): string 1088add1155SRico Sonntag { 109e5a6b4d4SGreg Roach return e($this->latestUserQuery()->realName()); 1108add1155SRico Sonntag } 1118add1155SRico Sonntag 1128add1155SRico Sonntag /** 1130dcd9387SGreg Roach * @param string|null $format 1140dcd9387SGreg Roach * 1150dcd9387SGreg Roach * @return string 1168add1155SRico Sonntag */ 1178add1155SRico Sonntag public function latestUserRegDate(string $format = null): string 1188add1155SRico Sonntag { 1198add1155SRico Sonntag $format = $format ?? I18N::dateFormat(); 1208add1155SRico Sonntag $user = $this->latestUserQuery(); 1211fe542e9SGreg Roach $timestamp = (int) $user->getPreference(UserInterface::PREF_TIMESTAMP_REGISTERED); 1228add1155SRico Sonntag 1234459dc9aSGreg Roach return Carbon::createFromTimestamp($timestamp)->format(strtr($format, ['%' => ''])); 1248add1155SRico Sonntag } 1258add1155SRico Sonntag 1268add1155SRico Sonntag /** 1270dcd9387SGreg Roach * @param string|null $format 1280dcd9387SGreg Roach * 1290dcd9387SGreg Roach * @return string 1308add1155SRico Sonntag */ 1318add1155SRico Sonntag public function latestUserRegTime(string $format = null): string 1328add1155SRico Sonntag { 1338add1155SRico Sonntag $format = $format ?? str_replace('%', '', I18N::timeFormat()); 1348add1155SRico Sonntag $user = $this->latestUserQuery(); 1358add1155SRico Sonntag 1361fe542e9SGreg Roach return date($format, (int) $user->getPreference(UserInterface::PREF_TIMESTAMP_REGISTERED)); 1378add1155SRico Sonntag } 1388add1155SRico Sonntag 1398add1155SRico Sonntag /** 1400dcd9387SGreg Roach * @param string|null $yes 1410dcd9387SGreg Roach * @param string|null $no 1420dcd9387SGreg Roach * 1430dcd9387SGreg Roach * @return string 1448add1155SRico Sonntag */ 1458add1155SRico Sonntag public function latestUserLoggedin(string $yes = null, string $no = null): string 1468add1155SRico Sonntag { 1478add1155SRico Sonntag $yes = $yes ?? I18N::translate('yes'); 1488add1155SRico Sonntag $no = $no ?? I18N::translate('no'); 1498add1155SRico Sonntag $user = $this->latestUserQuery(); 1508add1155SRico Sonntag 1518add1155SRico Sonntag $is_logged_in = DB::table('session') 1528add1155SRico Sonntag ->selectRaw('1') 1538add1155SRico Sonntag ->where('user_id', '=', $user->id()) 1548add1155SRico Sonntag ->first(); 1558add1155SRico Sonntag 1568add1155SRico Sonntag return $is_logged_in ? $yes : $no; 1578add1155SRico Sonntag } 1588add1155SRico Sonntag} 159