mirror of
https://github.com/Neetpone/ponepaste.git
synced 2025-03-12 14:40:09 +01:00
98 lines
3 KiB
PHP
98 lines
3 KiB
PHP
<?php
|
|
/** @noinspection PhpDefineCanBeReplacedWithConstInspection */
|
|
define('IN_PONEPASTE', 1);
|
|
require_once(__DIR__ . '/../includes/common.php');
|
|
|
|
use Illuminate\Support\Facades\DB;
|
|
use PonePaste\Models\User;
|
|
use PonePaste\Models\Paste;
|
|
|
|
if (empty($_GET['user'])) {
|
|
// No username provided
|
|
flashError('User not found.');
|
|
goto Render;
|
|
}
|
|
|
|
$profile_username = trim($_GET['user']);
|
|
|
|
$profile_info = User::with('favourites')
|
|
->where('username', $profile_username)
|
|
->select('id', 'created_at', 'badge')
|
|
->first();
|
|
|
|
if (!$profile_info) {
|
|
// Invalid username
|
|
flashError('User not found.');
|
|
goto Render;
|
|
}
|
|
|
|
$can_administrate = can('administrate', $profile_info);
|
|
|
|
if ($can_administrate) {
|
|
if (isset($_POST['reset_password'])) {
|
|
if (!verifyCsrfToken()) {
|
|
flashError('Invalid CSRF token (do you have cookies enabled?)');
|
|
} else {
|
|
$new_password = pp_random_password();
|
|
$profile_info->password = pp_password_hash($new_password);
|
|
$profile_info->save();
|
|
|
|
flashSuccess('Password reset to ' . $new_password);
|
|
}
|
|
}
|
|
}
|
|
|
|
$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 ((int) $profile_info['badge']) {
|
|
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" />',
|
|
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->created_at;
|
|
|
|
$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();
|
|
|
|
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';
|
|
}
|
|
|
|
require_once(__DIR__ . '/../theme/' . $default_theme . '/common.php');
|