where('username', $profile_username)
->select('id', 'date', 'badge')
->first();
if (!$profile_info) {
// Invalid username
header("Location: ../error.php");
die();
}
$p_title = $profile_username . "'s Public Pastes";
// There has to be a way to do the sum in SQL rather than PHP, but I can't figure out ho to do it in Eloquent.
$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();
// Badges
$profile_badge = match ($profile_info['badge']) {
1 => '
',
2 => '
',
3 => '
',
default => '',
};
$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();
$profile_total_paste_views = Paste::select('views')->where('user_id', $profile_info->id)->sum('views');
$profile_join_date = $profile_info['date'];
$profile_pastes = $profile_info->pastes;
$profile_favs = $profile_info->favourites;
$is_current_user = ($current_user !== null) && ($profile_info->id == $current_user->id);
updatePageViews();
$csrf_token = setupCsrfToken();
$page_template = 'user_profile';
array_push($script_bundles, 'user_profile');
require_once('theme/' . $default_theme . '/common.php');