ponepaste/theme/bulma/user_profile.php

257 lines
13 KiB
PHP
Raw Normal View History

2021-10-15 20:38:36 -04:00
<?php
2022-03-14 15:43:01 -04:00
use PonePaste\Models\Paste;
2021-10-15 20:38:36 -04:00
$public_paste_badges = [
50 => '[ProbablyAutistic] Have more than fifty pastes',
25 => '[Writefag] Have twenty-five or more pastes',
5 => '[NewWritefag] Have five or more pastes',
0 => '[NewFriend] Have less than five pastes',
2021-10-15 20:38:36 -04:00
];
$unlisted_paste_badges = [
10 => '',
5 => ''
];
$paste_view_badges = [
50000 => '[HorseAyylmao] Have more than 50,000 total views',
10000 => '[HorseIlluminati] Have more than 10,000 total views',
2021-10-15 20:38:36 -04:00
5000 => '[HorseMaster] Have more than 5000 total views',
3000 => '[HorseIdol] Have more than 3000 total views',
2021-10-15 20:38:36 -04:00
2000 => '[HorseFamous] Have more than 2000 total views',
1000 => '[HorseWriter] Have more than 1000 total views'
];
function outputBadges(array $badgeCandidates, int $actualValue, string $imagePrefix) : void {
2021-10-15 20:38:36 -04:00
foreach ($badgeCandidates as $threshold => $badgeTitle) {
if ($actualValue >= $threshold) {
echo "<img src=\"/img/badges/{$imagePrefix}_{$threshold}.png\" title='$badgeTitle' alt='$badgeTitle' style='margin: 5px;' />";
2021-10-15 20:38:36 -04:00
break;
}
}
}
?>
2021-07-10 19:18:17 +01:00
<main class="bd-main">
<div class="bd-side-background"></div>
<div class="bd-main-container container">
<div class="bd-duo">
<div class="bd-lead">
2023-05-15 12:44:04 -04:00
<div class="flex flex--space-between">
<div>
<h1 class="title is-5"><?= pp_html_escape($profile_username) ?>'s Pastes</h1>
<h1 class="subtitle is-6">Joined: <?= $profile_join_date ?></h1>
</div>
<?php if ($can_administrate): ?>
<div>
<p>Admin Actions:</p>
<form method="post">
<input type="hidden" name="csrf_token" value="<?= $csrf_token ?>">
<button class="button is-small is-success" type="submit" name="reset_password">Reset Password</button>
</form>
</div>
<?php endif; ?>
</div>
<!-- Badges system -->
2021-07-10 19:18:17 +01:00
<div class="box">
<h2 class="title is-5">Badges</h2>
<?php
if (!empty($profile_join_date)) {
if (strtotime($profile_join_date) <= 1604188800) {
echo '<img src="/img/badges/adopter.png" title="[EarlyAdopter] Joined during the first wave " style="margin:5px">';
} elseif (strtotime($profile_join_date) <= 1608422400) {
echo '<img src="/img/badges/pioneer.png" title="[EarlyPioneer] Joined during the second wave " style="margin:5px">';
} elseif (strtotime($profile_join_date) <= 1609459200) {
echo '<img src="/img/badges/strag.png" title="[EarlyStraggler] Joined after the second wave " style="margin:5px">';
}
}
if (!str_contains($profile_badge, '0')) {
echo $profile_badge;
}
2021-10-15 20:38:36 -04:00
outputBadges($public_paste_badges, $profile_total_public, 'total_pastes');
outputBadges($paste_view_badges, $profile_total_paste_views, 'total_views');
if (($profile_total_unlisted >= 5) && ($profile_total_unlisted <= 9)) {
echo '<img src="/img/badges/pastehidden.png" title="[ShadowWriter] Have more than five unlisted pastes" style="margin:5px">';
} elseif ($profile_total_unlisted >= 10) {
echo '<img src="/img/badges/pastehidden.png" title="[Ghostwriter] Have more than ten unlisted pastes" style="margin:5px">';
}
2021-07-10 19:18:17 +01:00
?>
</div>
<?php outputFlashes($flashes) ?>
2021-07-10 19:18:17 +01:00
<?php if ($is_current_user): ?>
2021-08-26 05:35:21 -04:00
Some of your statistics:
<br />
Total pastes: <?= $profile_total_pastes ?> &mdash;
Total public pastes: <?= $profile_total_public ?> &mdash;
Total unlisted pastes: <?= $profile_total_unlisted ?> &mdash;
Total private pastes: <?= $profile_total_private ?> &mdash;
Total views of all your pastes: <?= $profile_total_paste_views ?>
<br />
Total favourites of all your pastes: <?= $total_pfav ?> &mdash;
Total favorites you have given: <?= $total_yfav ?>
<br />
<br />
<div class="tabs">
<ul class="tabs-menu">
<li class="is-active" data-target="first-tab"><a>My Pastes</a></li>
<li data-target="second-tab"><a>Favorites</a></li>
</ul>
</div>
<?php endif;?>
2021-07-10 19:18:17 +01:00
<div class="tab-content" id="first-tab">
<table id="archive" class="table is-fullwidth is-hoverable">
<thead>
2021-07-10 19:18:17 +01:00
<tr>
2022-03-12 13:56:32 -05:00
<th class="td-right">Title</th>
<th class="td-center">Paste Time</th>
<?php if ($is_current_user) {
2022-03-12 13:56:32 -05:00
echo "<th class='td-center'>Visibility</th>";
2021-07-10 19:18:17 +01:00
} ?>
2022-03-12 13:56:32 -05:00
<th class="td-center">Views</th>
<th class="td-center">Tags</th>
<?php if ($is_current_user) {
2022-03-12 13:56:32 -05:00
echo "<th class='td-center'>Delete</th>";
2021-07-10 19:18:17 +01:00
} ?>
</tr>
</thead>
<tbody>
<?php foreach ($profile_pastes as $paste): ?>
<?php
$escaped_title = pp_html_escape(truncate($paste->title, 20, 50));
$p_date = new DateTime($paste->created_at);
$p_visible = match (intval($paste->visible)) {
0 => 'Public',
1 => 'Unlisted',
2 => 'Private'
};
2022-03-12 13:56:32 -05:00
$pasteJson = array_merge(
$paste->only('id', 'title', 'tags', 'views', 'created_at', 'user_id'),
2022-03-12 13:56:32 -05:00
['visibility' => $p_visible]
);
?>
2022-03-14 15:43:01 -04:00
<?php if ($is_current_user || $paste->visible == Paste::VISIBILITY_PUBLIC): ?>
2022-03-12 13:56:32 -05:00
<tr data-paste-info="<?= pp_html_escape(json_encode($pasteJson)); ?>">
<td><a href="<?= urlForPaste($paste) ?>" title="<?= $escaped_title ?>"><?= $escaped_title ?></a></td>
2022-03-26 23:48:19 -04:00
<td data-sort="<?= $p_date->format('U') ?>" class="td-center">
<?= $p_date->format('d F Y') ?>
</td>
<td class="td-center"><?= $p_visible; ?></td>
<td class="td-center"><?= $paste->views ?></td>
<td class="td-left"><?= tagsToHtmlUser($paste->tags, $profile_username); ?></td>
<?php if (can('delete', $paste)): ?>
2022-03-14 15:43:01 -04:00
<td class="td-center">
<form action="<?= urlForPaste($paste) ?>" method="POST">
<input type="hidden" name="delete" value="delete" />
<input type="hidden" name="csrf_token" value="<?= $csrf_token ?>" />
<input type="submit" value="Delete" />
</form>
</td>
<?php endif; ?>
</tr>
<?php endif; ?>
<?php endforeach; ?>
</tbody>
2021-08-26 05:58:37 -04:00
<tfoot>
<tr>
2022-04-23 18:27:04 -04:00
<th class="td-right">Title</th>
2022-03-12 13:56:32 -05:00
<th class="td-center">Paste Time</th>
2021-08-26 05:58:37 -04:00
<?php if ($is_current_user) {
2022-04-23 18:27:04 -04:00
echo "<th class='td-center'>Visibility</th>";
2021-08-26 05:58:37 -04:00
} ?>
2022-03-12 13:56:32 -05:00
<th class="td-center">Views</th>
<th class="td-center">Tags</th>
2021-08-26 05:58:37 -04:00
<?php if ($is_current_user) {
2022-04-23 18:27:04 -04:00
echo "<th class='td-center'>Delete</th>";
2021-08-26 05:58:37 -04:00
} ?>
</tr>
</tfoot>
</table>
2022-03-12 13:56:32 -05:00
<div class="paginator"></div>
2021-07-10 19:18:17 +01:00
</div>
<?php if ($is_current_user) { ?>
2021-07-10 19:18:17 +01:00
<div class="tab-content" id="second-tab">
<table id="favs" class="table is-fullwidth is-hoverable">
<thead>
2021-07-10 19:18:17 +01:00
<tr>
2022-03-12 13:56:32 -05:00
<th class="td-right">Title</th>
<th class="td-center">Date Favourited</th>
<th class="td-center">Status</th>
<th class="td-center">Tags</th>
2021-07-10 19:18:17 +01:00
</tr>
</thead>
<tbody>
<?php foreach ($profile_favs as $paste): ?>
<?php
$escaped_title = pp_html_escape(truncate($paste->title, 20, 50));
$f_date = new DateTime($paste->pivot->created_at);
$update_date = $paste->updated_at !== null ? new DateTime($paste->updated_at) : $f_date;
2021-11-01 16:56:17 -04:00
$delta = $update_date->diff(new DateTime(), true);
2022-03-12 13:56:32 -05:00
$pasteJson = array_merge(
$paste->only('id', 'title', 'tags', 'views', 'created_at'),
['recently_updated' => ($delta->days <= 2), 'favourited_at' => $f_date->format('d F Y')]
);
?>
<?php if ($is_current_user || $row['visible'] == Paste::VISIBILITY_PUBLIC): ?>
2022-03-12 13:56:32 -05:00
<tr data-paste-info="<?= pp_html_escape(json_encode($pasteJson)); ?>">
<td><a href="<?= urlForPaste($paste) ?>" title="<?= $escaped_title ?>"><?= $escaped_title ?></a></td>
2022-03-12 13:56:32 -05:00
<td data-sort="<?= $p_date->format('U') ?>" class="td-center"><?= $f_date->format('d F Y') ?></td>
2021-11-01 16:56:17 -04:00
<td class="td-center">
<?php if ($delta->days <= 2): ?>
<i class='far fa-check-square fa-lg' aria-hidden='true'></i>
<?php else: ?>
<i class='far fa-minus-square fa-lg' aria-hidden='true'></i>
<?php endif; ?>
</td>
<td class="td-left"><?= tagsToHtmlUser($paste->tags, $profile_username); ?></td>
</tr>
<?php endif; ?>
<?php endforeach; ?>
</tbody>
<tfoot>
<tr>
2022-04-23 18:27:04 -04:00
<th class="td-right">Title</th>
<th class="td-center">Date Favourited</th>
<th class="td-center">Status</th>
<th class="td-center">Tags</th>
</tr>
</tfoot>
2021-11-01 16:56:17 -04:00
<?php } ?>
</table>
2022-03-12 13:56:32 -05:00
<div class="paginator"></div>
2021-07-10 19:18:17 +01:00
</div>
</div>
</div>
</div>
</main>
<script>
const tabSystem = {
init() {
document.querySelectorAll('.tabs-menu').forEach(tabMenu => {
Array.from(tabMenu.children).forEach((child, ind) => {
child.addEventListener('click', () => {
tabSystem.toggle(child.dataset.target);
});
if (child.className.includes('is-active')) {
tabSystem.toggle(child.dataset.target);
}
2021-07-10 19:18:17 +01:00
});
});
},
toggle(targetId) {
document.querySelectorAll('.tab-content').forEach(contentElement => {
contentElement.style.display = contentElement.id === targetId ? 'block' : 'none';
document.querySelector(`[data-target="${contentElement.id}"]`).classList[contentElement.id === targetId ? 'add' : 'remove']('is-active');
})
},
};
// use it
tabSystem.init()
2021-07-10 19:18:17 +01:00
</script>