mirror of https://github.com/pikami/palm-paste.git
52 lines
2.1 KiB
PHP
52 lines
2.1 KiB
PHP
<div class="container">
|
|
<div class="panel panel-default">
|
|
<div class="panel-body">
|
|
<?php
|
|
include_once "config/config.php";
|
|
include_once "includes/user.php";
|
|
$conn = GetConnectionToDB();
|
|
|
|
$ownerID = GetUserIDByName($_GET["user"]);
|
|
if($ownerID!=-1){
|
|
//== Print user info ==//
|
|
$owner = GetUserByID($ownerID);
|
|
printf('<h2>'.$owner["user"].'\'s profile</h2>');
|
|
//== Print pastes ==//
|
|
$query = "SELECT * FROM pastes WHERE owner=:own AND exposure=0";
|
|
if(GetUsersIDBySession($_COOKIE["pp_sid"],$_COOKIE["pp_skey"]) == $ownerID)$query = "SELECT * FROM pastes WHERE owner=:own";
|
|
$stmt = $conn->prepare($query);
|
|
$stmt->bindParam(':own', $ownerID);
|
|
$stmt->execute();
|
|
|
|
if($stmt->rowCount()>0){
|
|
echo "<table id=\"tablepastes\" class=\"table table-striped\" style=\"width:100%\">";
|
|
printf('<thead><th data-dynatable-column="name" style="text-align: left;">Title</th>
|
|
<th style="text-align: left;">Added</th>
|
|
<th style="text-align: left;">Expires</th>
|
|
<th style="text-align: left;">ID</th></thead>');
|
|
printf('<tbody>');
|
|
while($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
|
|
$title = $row['title'];
|
|
printf('<tr><td style="text-align: left;">'.htmlspecialchars($row["title"], ENT_QUOTES, 'UTF-8').'</td>');
|
|
printf('<td style="text-align: left;">'.date('Y-m-d',$row["created"]).'</td>');
|
|
if($row["expire"]==0) printf('<td style="text-align: left;">Never</td>');
|
|
else{
|
|
$expire = ($row["expire"]-time())/3600;
|
|
if($expire>24){
|
|
printf('<td style="text-align: left;">'.round($expire/24).' days from now</td>');
|
|
} else if($expire>=1)
|
|
printf('<td style="text-align: left;">'.round($expire).' hours from now</td>');
|
|
else printf('<td style="text-align: left;">'.round($expire*60).' minutes from now</td>');
|
|
}
|
|
printf('<td style="text-align: right;"><a href="../'.htmlspecialchars($row["uid"], ENT_QUOTES, 'UTF-8').'">'.htmlspecialchars($row["uid"], ENT_QUOTES, 'UTF-8').'</a></td></tr>');
|
|
}
|
|
printf('</tbody></talbe>');
|
|
} else {
|
|
printf('<h2>This user has no public pastes!</h2>');
|
|
}
|
|
} else printf('<h2>User does not exist!</h2>');
|
|
$conn = null;
|
|
?>
|
|
</div>
|
|
</div>
|
|
</div>
|