ponepaste/public/user.php

98 lines
3.1 KiB
PHP
Raw Permalink Normal View History

2021-07-10 19:18:17 +01:00
<?php
2022-07-30 17:55:17 -04:00
/** @noinspection PhpDefineCanBeReplacedWithConstInspection */
define('IN_PONEPASTE', 1);
require_once(__DIR__ . '/../includes/common.php');
2021-07-10 19:18:17 +01:00
2022-03-14 15:59:14 -04:00
use Illuminate\Support\Facades\DB;
2021-08-29 01:26:29 -04:00
use PonePaste\Models\User;
use PonePaste\Models\Paste;
2021-08-29 01:26:29 -04:00
2021-07-15 18:06:24 -04:00
if (empty($_GET['user'])) {
// No username provided
flashError('User not found.');
goto Render;
2021-07-15 18:06:24 -04:00
}
$profile_username = trim($_GET['user']);
2022-03-12 13:56:32 -05:00
$profile_info = User::with('favourites')
->where('username', $profile_username)
2023-06-01 15:54:48 -04:00
->select('id', 'created_at', 'badge', 'role')
2022-03-12 13:56:32 -05:00
->first();
2021-07-15 18:06:24 -04:00
if (!$profile_info) {
// Invalid username
flashError('User not found.');
goto Render;
2021-07-10 19:18:17 +01:00
}
2023-05-15 12:44:04 -04:00
$can_administrate = can('administrate', $profile_info);
2021-08-26 05:35:21 -04:00
$p_title = $profile_username . "'s Public Pastes";
2021-07-10 19:18:17 +01:00
// There has to be a way to do the sum in SQL rather than PHP, but I can't figure out how to do it in Eloquent.
2022-03-14 15:59:14 -04:00
$total_pfav = array_sum(
array_column(
Paste::select('id')
->where('user_id', $profile_info->id)
->withCount('favouriters')
->get()->toArray(),
'favouriters_count'
)
);
$total_yfav = $profile_info->favourites->count();
2021-07-10 19:18:17 +01:00
2021-07-11 12:44:31 -04:00
// Badges
$profile_badge = match ((int) $profile_info['badge']) {
2021-08-26 05:58:37 -04:00
1 => '<img src="/img/badges/donate.png" title="[Donated] Donated to Ponepaste" style="margin:5px" alt="Donated to PonePaste" />',
2 => '<img src="/img/badges/spoon.png" title="[TheWoodenSpoon] You had one job" style="margin:5px" alt="You had one job" />',
3 => '<img src="/img/badges/abadge.png" title="[>AFuckingBadge] Won a PasteJam Competition" style="margin:5px" alt="Won a PasteJam competition" />',
2024-07-07 17:28:31 -04:00
4 => '<img src="/img/badges/abadge2023.png" title="[>AFuckingBadge] Winner of /PJ2023/" style="margin:5px">',
5 => '<span class="badge--padded badge--bgcolor-dark"><img src="/img/badges/hackerhorse.svg" title="[HackerHorse] Made a CTF write-up for a /mlp/ CTF and posted it on the site." /></span>',
default => ''
2021-07-11 12:44:31 -04:00
};
2021-07-10 19:18:17 +01:00
2024-07-07 17:28:31 -04:00
$profile_total_pastes = $profile_info->pastes->count();
$profile_total_public = $profile_info->pastes->where('visible', 0)->count();
$profile_total_unlisted = $profile_info->pastes->where('visible', 1)->count();
$profile_total_private = $profile_info->pastes->where('visible', 2)->count();
2021-07-10 19:18:17 +01:00
2021-07-11 12:44:31 -04:00
$profile_total_paste_views = Paste::select('views')
->where('user_id', $profile_info->id)
->sum('views');
2021-07-11 12:44:31 -04:00
$profile_join_date = $profile_info->created_at->format('Y-m-d');
2021-07-11 12:44:31 -04:00
$profile_favs = $profile_info->favourites;
$is_current_user = ($current_user !== null) && ($profile_info->id == $current_user->id);
2021-07-11 12:44:31 -04:00
// Pastes filtering
$filter_value = '';
list($per_page, $current_page) = pp_setup_pagination();
$total_results = $profile_info->pastes->count();
$profile_pastes = $profile_info->pastes()
->limit($per_page)
->offset($per_page * $current_page)
->get();
2022-03-12 13:56:32 -05:00
updatePageViews();
2021-07-10 19:18:17 +01:00
2022-03-14 15:43:01 -04:00
$csrf_token = setupCsrfToken();
Render:
if (isset($profile_info)) {
$page_title = 'Profile of ' . $profile_username;
$page_template = 'user_profile';
$script_bundles[] = 'user_profile';
} else {
$page_title = 'User not found';
$page_template = 'errors';
}
2022-07-30 17:55:17 -04:00
require_once(__DIR__ . '/../theme/' . $default_theme . '/common.php');