librecat/user.php

80 lines
2.4 KiB
PHP
Raw Normal View History

2020-05-17 00:02:20 +00:00
<?php
2020-05-21 15:57:59 +00:00
session_start();
2020-05-17 20:06:22 +00:00
$db = new SQLite3('ask.db');
2020-05-17 00:02:20 +00:00
2020-05-21 15:57:59 +00:00
$p_user = $db->query("SELECT * FROM users WHERE username = '" . $_GET["q"] . "';")->fetchArray(SQLITE3_ASSOC);
if(!$p_user || !$p_user["id"]){
2020-05-21 08:07:28 +00:00
include("404.php");
die();
}
2020-05-17 00:02:20 +00:00
2020-05-21 15:57:59 +00:00
if(isset($_SESSION["uid"])){
if($_SESSION["uid"] == $p_user["id"]){
$is_current_user = true;
}
}
2020-05-20 16:08:25 +00:00
?>
<html>
<head>
2020-05-21 15:57:59 +00:00
<title><?= $p_user["username"] ?> | LibreCat</title>
2020-05-20 16:08:25 +00:00
</head>
2020-05-21 15:57:59 +00:00
<body>
<?php include("include/header.php"); ?>
<h2><?= $p_user["username"] ?></h2>
<p><?= $p_user["bio"] ?></p>
2020-05-21 17:19:38 +00:00
<?php
if($is_current_user){
if($fancy_urls)
2020-05-21 20:09:04 +00:00
echo("<a href='/config/profile'>config</a>");
2020-05-21 17:19:38 +00:00
else
2020-05-21 20:09:04 +00:00
echo("<a href='/config.php?q=profile'>config</a>");
2020-05-21 17:19:38 +00:00
}
?>
2020-05-20 16:08:25 +00:00
2020-05-21 18:06:16 +00:00
<form name="input" action="/action/publish-question.php" method="post">
2020-05-21 21:36:32 +00:00
<textarea placeholder="Ask me anything!" id="post-text" name="post-text"></textarea>
2020-05-20 16:08:25 +00:00
<br/>
2020-05-21 18:06:16 +00:00
<input type="hidden" name="uid" value="<?= $p_user["id"] ?>"/>
2020-05-21 21:36:32 +00:00
<p><input type="checkbox" <?php if(!isset($_SESSION["uid"])) echo("checked disabled"); ?> name="anon"/> Post anonymously</p>
<?php if(isset($errorMsg)) echo "<p>$errorMsg</p>\n"; ?>
2020-05-20 16:08:25 +00:00
<input type="submit" name="post-submit"/>
</form>
<?php
2020-05-21 09:04:09 +00:00
$u_prep = $db->prepare("SELECT * FROM users WHERE id = :id");
2020-05-21 15:57:59 +00:00
$qs = $db->query("SELECT * FROM questions WHERE user = '" . $p_user["id"] . "' LIMIT 0, 10;");
$time = new DateTime("@0");
2020-05-20 16:08:25 +00:00
while($current = $qs->fetchArray(SQLITE3_ASSOC)){
// Execute prepared statement
2020-05-21 09:04:09 +00:00
$u_prep->bindValue(":id", $current["by"], SQLITE3_INTEGER);
$q_user = $u_prep->execute()->fetchArray(SQLITE3_ASSOC);
2020-05-21 22:32:30 +00:00
if($q_user["id"] == 0) echo("<h3>" . $q_user["name"] ."</h3>");
else if($fancy_urls) echo("<a href='/user/" . $q_user["name"] . "'><h3>" . $q_user["name"] ."</h3></a>\n");
else echo("<a href='/user.php?q=" . $q_user["name"] . "'><h3>" . $q_user["name"] ."</h3></a>\n");
2020-05-21 20:09:04 +00:00
echo("\t<p>". $current["question"] ."<p>\n");
if($is_current_user){
2020-05-22 00:20:59 +00:00
echo("\t<a href='/action/reply.php?q=".$current["id"]."'>reply</a> ");
2020-05-21 20:09:04 +00:00
echo("\t<a href='/action/delete-question.php?q=".$current["id"]."'>delete</a> ");
echo("fav ignore ");
}
// Time
2020-05-22 00:20:59 +00:00
$time->settimestamp($current["q_date"]);
echo($time->format("y-m-d h:i:s"));
if($current["answer"]){
echo("<p>" . $current["answer"] . "</p>");
$time->settimestamp($current["a_date"]);
echo($time->format("y-m-d h:i:s"));
}
2020-05-21 20:09:04 +00:00
echo("\n\n");
2020-05-20 16:08:25 +00:00
}
?>
</body>
</html>