Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ef3699d5f5 | |||
| fedb6f59f5 | |||
| 5eca2f162b | |||
| d7d121b541 | |||
| 96f38ce72e | |||
| b81f0c9e5c | |||
| f8aed4283e |
Generated
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<project version="4">
|
<project version="4">
|
||||||
<component name="dataSourceStorageLocal" created-in="IU-261.25134.95">
|
<component name="dataSourceStorageLocal" created-in="IU-253.32098.101">
|
||||||
<data-source name="articles" uuid="315cb5c9-2b0f-435b-b602-59823b160908">
|
<data-source name="articles" uuid="315cb5c9-2b0f-435b-b602-59823b160908">
|
||||||
<database-info product="SQLite" version="3.51.1" jdbc-version="4.2" driver-name="SQLite JDBC" driver-version="3.51.1.0" dbms="SQLITE" exact-version="3.51.1" exact-driver-version="3.51">
|
<database-info product="SQLite" version="3.51.1" jdbc-version="4.2" driver-name="SQLite JDBC" driver-version="3.51.1.0" dbms="SQLITE" exact-version="3.51.1" exact-driver-version="3.51">
|
||||||
<identifier-quote-string>"</identifier-quote-string>
|
<identifier-quote-string>"</identifier-quote-string>
|
||||||
|
|||||||
+12
-14
@@ -18,8 +18,6 @@ $isEditMode = (isset($_GET["edit"]) && $_GET["edit"] === "1") || !empty($error);
|
|||||||
|
|
||||||
<form method="post" action="index.php?pfad=profile">
|
<form method="post" action="index.php?pfad=profile">
|
||||||
|
|
||||||
<?php csrf_field(); ?>
|
|
||||||
|
|
||||||
<label class="input-label">Vorname</label>
|
<label class="input-label">Vorname</label>
|
||||||
<input type="text"
|
<input type="text"
|
||||||
name="vorname"
|
name="vorname"
|
||||||
@@ -83,11 +81,12 @@ $isEditMode = (isset($_GET["edit"]) && $_GET["edit"] === "1") || !empty($error);
|
|||||||
|
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
<form action="php/controller/deleteAccount-controller.php" method="POST">
|
<form action="php/controller/deleteAccount-controller.php"
|
||||||
<?php csrf_field(); ?>
|
method="POST"
|
||||||
|
class="confirm-delete-account">
|
||||||
|
|
||||||
<button type="submit"
|
<button type="submit"
|
||||||
class="button"
|
class="button">
|
||||||
onclick="return confirm('Möchtest du deinen Account und alle deine Beiträge wirklich unwiderruflich löschen?');">
|
|
||||||
Account löschen
|
Account löschen
|
||||||
</button>
|
</button>
|
||||||
</form>
|
</form>
|
||||||
@@ -157,15 +156,16 @@ $isEditMode = (isset($_GET["edit"]) && $_GET["edit"] === "1") || !empty($error);
|
|||||||
Bearbeiten
|
Bearbeiten
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<form action="php/controller/deleteArticle-controller.php" method="POST">
|
<form action="php/controller/deleteArticle-controller.php"
|
||||||
<?php csrf_field(); ?>
|
method="POST"
|
||||||
|
class="confirm-delete-article">
|
||||||
|
|
||||||
<input type="hidden"
|
<input type="hidden"
|
||||||
name="id"
|
name="id"
|
||||||
value="<?php echo htmlspecialchars($userArticle->getID()); ?>">
|
value="<?php echo htmlspecialchars($userArticle->getID()); ?>">
|
||||||
|
|
||||||
<button type="submit"
|
<button type="submit"
|
||||||
class="button"
|
class="button">
|
||||||
onclick="return confirm('Möchtest du diesen Artikel wirklich löschen?');">
|
|
||||||
Löschen
|
Löschen
|
||||||
</button>
|
</button>
|
||||||
</form>
|
</form>
|
||||||
@@ -176,11 +176,9 @@ $isEditMode = (isset($_GET["edit"]) && $_GET["edit"] === "1") || !empty($error);
|
|||||||
|
|
||||||
<p>Du hast noch keine Beiträge erstellt.</p>
|
<p>Du hast noch keine Beiträge erstellt.</p>
|
||||||
|
|
||||||
<button type="button"
|
<a href="index.php?pfad=createArticle" class="button">
|
||||||
class="button"
|
|
||||||
onclick="window.location.href='index.php?pfad=createArticle';">
|
|
||||||
Beitrag erstellen!
|
Beitrag erstellen!
|
||||||
</button>
|
</a>
|
||||||
|
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -124,7 +124,9 @@ $categories = [
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<noscript>
|
<noscript>
|
||||||
<button type="submit" class="nav__search-button">Filter anwenden</button>
|
<button type="submit" class="nav__search-button">
|
||||||
|
Filter anwenden
|
||||||
|
</button>
|
||||||
</noscript>
|
</noscript>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
@@ -193,17 +195,34 @@ $categories = [
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<nav class="s-res-page-navigation" aria-label="Seitennavigation">
|
<nav class="s-res-page-navigation" aria-label="Seitennavigation">
|
||||||
<!-- No-JS-Fallback: -->
|
|
||||||
<noscript>
|
<noscript>
|
||||||
<?php echo renderNoJsPagination($currentPage, $totalPages, $query, $currentSort, $currentCategory, $limit); ?>
|
<?php echo renderNoJsPagination(
|
||||||
|
$currentPage,
|
||||||
|
$totalPages,
|
||||||
|
$query,
|
||||||
|
$currentSort,
|
||||||
|
$currentCategory,
|
||||||
|
$limit
|
||||||
|
); ?>
|
||||||
</noscript>
|
</noscript>
|
||||||
|
|
||||||
<!-- JS-Version: wird per search-results.js befüllt/eingeblendet: -->
|
|
||||||
<div id="js-page-navigation" style="display: none;">
|
<div id="js-page-navigation" style="display: none;">
|
||||||
<button type="button" class="s-res-page-btn" id="prev-page-btn">«</button>
|
<button type="button"
|
||||||
|
class="s-res-page-btn"
|
||||||
|
id="prev-page-btn">
|
||||||
|
«
|
||||||
|
</button>
|
||||||
|
|
||||||
<span id="dynamic-page-numbers"></span>
|
<span id="dynamic-page-numbers"></span>
|
||||||
<button type="button" class="s-res-page-btn" id="next-page-btn">»</button>
|
|
||||||
|
<button type="button"
|
||||||
|
class="s-res-page-btn"
|
||||||
|
id="next-page-btn">
|
||||||
|
»
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
+7
-24
@@ -56,14 +56,9 @@ if ($replyAuthor === null) {
|
|||||||
<span>❤️ <span class="like-count"><?php echo $articleObj->getLikeCount(); ?></span></span>
|
<span>❤️ <span class="like-count"><?php echo $articleObj->getLikeCount(); ?></span></span>
|
||||||
|
|
||||||
<?php if (isset($_SESSION["user_email"])): ?>
|
<?php if (isset($_SESSION["user_email"])): ?>
|
||||||
<form method="post"
|
<a href="php/controller/like-controller.php?id=<?php echo $articleObj->getId(); ?>" class="like-toggle-btn">
|
||||||
action="php/controller/like-controller.php?id=<?php echo $articleObj->getId(); ?>"
|
|
||||||
class="like-toggle-form">
|
|
||||||
<?php csrf_field(); ?>
|
|
||||||
<button type="submit" class="like-toggle-btn">
|
|
||||||
<?php echo $articleObj->hasLiked($_SESSION["user_email"]) ? '👎 Gefällt mir nicht mehr' : '👍 Gefällt mir'; ?>
|
<?php echo $articleObj->hasLiked($_SESSION["user_email"]) ? '👎 Gefällt mir nicht mehr' : '👍 Gefällt mir'; ?>
|
||||||
</button>
|
</a>
|
||||||
</form>
|
|
||||||
<?php else: ?>
|
<?php else: ?>
|
||||||
<span class="login-hint">(Anmelden zum Liken)</span>
|
<span class="login-hint">(Anmelden zum Liken)</span>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
@@ -207,8 +202,6 @@ if ($replyAuthor === null) {
|
|||||||
action="index.php?pfad=updateComment"
|
action="index.php?pfad=updateComment"
|
||||||
class="edit-comment-form">
|
class="edit-comment-form">
|
||||||
|
|
||||||
<?php csrf_field(); ?>
|
|
||||||
|
|
||||||
<input type="hidden"
|
<input type="hidden"
|
||||||
name="comment_id"
|
name="comment_id"
|
||||||
value="<?php echo htmlspecialchars(
|
value="<?php echo htmlspecialchars(
|
||||||
@@ -244,9 +237,7 @@ if ($replyAuthor === null) {
|
|||||||
|
|
||||||
<form method="post"
|
<form method="post"
|
||||||
action="index.php?pfad=deleteComment"
|
action="index.php?pfad=deleteComment"
|
||||||
class="delete-comment-form">
|
class="delete-comment-form confirm-delete-comment">
|
||||||
|
|
||||||
<?php csrf_field(); ?>
|
|
||||||
|
|
||||||
<input type="hidden"
|
<input type="hidden"
|
||||||
name="comment_id"
|
name="comment_id"
|
||||||
@@ -261,8 +252,7 @@ if ($replyAuthor === null) {
|
|||||||
); ?>">
|
); ?>">
|
||||||
|
|
||||||
<button type="submit"
|
<button type="submit"
|
||||||
class="delete-comment-button"
|
class="delete-comment-button">
|
||||||
onclick="return confirm('Möchtest du diesen Kommentar wirklich löschen?');">
|
|
||||||
Kommentar löschen
|
Kommentar löschen
|
||||||
</button>
|
</button>
|
||||||
</form>
|
</form>
|
||||||
@@ -343,8 +333,6 @@ if ($replyAuthor === null) {
|
|||||||
action="index.php?pfad=updateComment"
|
action="index.php?pfad=updateComment"
|
||||||
class="edit-comment-form">
|
class="edit-comment-form">
|
||||||
|
|
||||||
<?php csrf_field(); ?>
|
|
||||||
|
|
||||||
<input type="hidden"
|
<input type="hidden"
|
||||||
name="comment_id"
|
name="comment_id"
|
||||||
value="<?php echo htmlspecialchars(
|
value="<?php echo htmlspecialchars(
|
||||||
@@ -380,9 +368,7 @@ if ($replyAuthor === null) {
|
|||||||
|
|
||||||
<form method="post"
|
<form method="post"
|
||||||
action="index.php?pfad=deleteComment"
|
action="index.php?pfad=deleteComment"
|
||||||
class="delete-comment-form">
|
class="delete-comment-form confirm-delete-comment">
|
||||||
|
|
||||||
<?php csrf_field(); ?>
|
|
||||||
|
|
||||||
<input type="hidden"
|
<input type="hidden"
|
||||||
name="comment_id"
|
name="comment_id"
|
||||||
@@ -397,9 +383,8 @@ if ($replyAuthor === null) {
|
|||||||
); ?>">
|
); ?>">
|
||||||
|
|
||||||
<button type="submit"
|
<button type="submit"
|
||||||
class="delete-comment-button"
|
class="delete-comment-button">
|
||||||
onclick="return confirm('Möchtest du diesen Kommentar wirklich löschen?');">
|
Antwort löschen
|
||||||
Kommentar löschen
|
|
||||||
</button>
|
</button>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
@@ -425,8 +410,6 @@ if ($replyAuthor === null) {
|
|||||||
method="post"
|
method="post"
|
||||||
action="php/ajax/add-comment.php">
|
action="php/ajax/add-comment.php">
|
||||||
|
|
||||||
<?php csrf_field(); ?>
|
|
||||||
|
|
||||||
<input type="hidden"
|
<input type="hidden"
|
||||||
name="article_id"
|
name="article_id"
|
||||||
value="<?php echo htmlspecialchars(
|
value="<?php echo htmlspecialchars(
|
||||||
|
|||||||
@@ -285,32 +285,6 @@ CSS für die navbar
|
|||||||
border-bottom: 1px solid #333d43;
|
border-bottom: 1px solid #333d43;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav__logout-form {
|
|
||||||
display: contents;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav__logout-form .nav__button {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav__mobile-logout-button {
|
|
||||||
color: #fff;
|
|
||||||
text-decoration: none;
|
|
||||||
font-size: 1.2rem;
|
|
||||||
font-weight: 600;
|
|
||||||
display: block;
|
|
||||||
width: 100%;
|
|
||||||
text-align: left;
|
|
||||||
padding: 0.5rem 1rem;
|
|
||||||
border: none;
|
|
||||||
border-bottom: 1px solid #333d43;
|
|
||||||
background: none;
|
|
||||||
cursor: pointer;
|
|
||||||
font-family: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav__mobile-submenu {
|
.nav__mobile-submenu {
|
||||||
display: block;
|
display: block;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
|
|||||||
@@ -89,12 +89,6 @@
|
|||||||
Es ist ein Datenbankfehler aufgetreten. Bitte versuche es erneut.
|
Es ist ein Datenbankfehler aufgetreten. Bitte versuche es erneut.
|
||||||
</p>
|
</p>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
<?php if (isset($_SESSION["message"]) && $_SESSION["message"] == "invalid_csrf_token"): ?>
|
|
||||||
<p class="alert-message is-error">
|
|
||||||
Deine Sitzung ist abgelaufen oder die Anfrage konnte nicht überprüft werden.
|
|
||||||
Bitte lade die Seite neu und versuche es erneut.
|
|
||||||
</p>
|
|
||||||
<?php endif; ?>
|
|
||||||
<?php
|
<?php
|
||||||
unset($_SESSION["message"]);
|
unset($_SESSION["message"]);
|
||||||
?>
|
?>
|
||||||
@@ -1,88 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* CSRF-Schutz nach dem Synchronizer-Token-Pattern.
|
|
||||||
*
|
|
||||||
* Pro Session wird ein einziges, zufälliges Token erzeugt,
|
|
||||||
* das in jedem Formular als verstecktes Feld mitgeschickt und bei jeder
|
|
||||||
* zustandsändernden Anfrage serverseitig mit dem Session-Token verglichen
|
|
||||||
* wird.
|
|
||||||
*
|
|
||||||
* @author Niklas Ortmann
|
|
||||||
*/
|
|
||||||
|
|
||||||
if (session_status() === PHP_SESSION_NONE) {
|
|
||||||
session_start();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gibt das aktuelle CSRF-Token der Session zurück.
|
|
||||||
*
|
|
||||||
* Existiert noch kein Token, wird eines erzeugt und in der Session
|
|
||||||
* gespeichert.
|
|
||||||
*
|
|
||||||
* @return string Das CSRF-Token
|
|
||||||
*/
|
|
||||||
function csrf_token(): string
|
|
||||||
{
|
|
||||||
if (empty($_SESSION["csrf_token"]) || !is_string($_SESSION["csrf_token"])) {
|
|
||||||
$_SESSION["csrf_token"] = bin2hex(random_bytes(32));
|
|
||||||
}
|
|
||||||
|
|
||||||
return $_SESSION["csrf_token"];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gibt ein verstecktes Formularfeld mit dem aktuellen CSRF-Token aus.
|
|
||||||
*
|
|
||||||
* Wird in jedem Formular benötigt, das eine zustandsändernde
|
|
||||||
* Aktion auslöst.
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
function csrf_field(): void
|
|
||||||
{
|
|
||||||
echo '<input type="hidden" name="csrf_token" value="'
|
|
||||||
. htmlspecialchars(csrf_token())
|
|
||||||
. '">';
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Prüft, ob das per POST gesendete CSRF-Token zum Session-Token passt.
|
|
||||||
*
|
|
||||||
* Der Vergleich erfolgt zeitkonstant über hash_equals(), um
|
|
||||||
* Timing-Angriffe auf den Vergleich selbst auszuschließen.
|
|
||||||
*
|
|
||||||
* @return bool true, wenn das Token gültig ist
|
|
||||||
*/
|
|
||||||
function csrf_verify(): bool
|
|
||||||
{
|
|
||||||
$sentToken = $_POST["csrf_token"] ?? "";
|
|
||||||
$sessionToken = $_SESSION["csrf_token"] ?? "";
|
|
||||||
|
|
||||||
if (!is_string($sentToken) || $sentToken === "" || $sessionToken === "") {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return hash_equals($sessionToken, $sentToken);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Bricht die Anfrage ab und leitet mit einer Fehlermeldung um,
|
|
||||||
* wenn das mitgesendete CSRF-Token ungültig oder nicht vorhanden ist.
|
|
||||||
*
|
|
||||||
* Muss am Anfang jeder zustandsändernden POST-Aktion aufgerufen werden,
|
|
||||||
* bevor irgendeine Änderung an Daten vorgenommen wird.
|
|
||||||
*
|
|
||||||
* @param string $redirectTo Ziel-URL, zu der bei ungültigem Token
|
|
||||||
* weitergeleitet wird
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
function csrf_require_valid(string $redirectTo = "index.php"): void
|
|
||||||
{
|
|
||||||
if (!csrf_verify()) {
|
|
||||||
http_response_code(403);
|
|
||||||
$_SESSION["message"] = "invalid_csrf_token";
|
|
||||||
header("Location: " . $redirectTo);
|
|
||||||
exit();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -2,7 +2,6 @@
|
|||||||
if (session_status() === PHP_SESSION_NONE) {
|
if (session_status() === PHP_SESSION_NONE) {
|
||||||
session_start();
|
session_start();
|
||||||
}
|
}
|
||||||
include_once "includes/csrf.php";
|
|
||||||
include_once "php/controller/index-controller.php";
|
include_once "php/controller/index-controller.php";
|
||||||
?>
|
?>
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
@@ -25,9 +24,10 @@ include_once "php/controller/index-controller.php";
|
|||||||
<link rel="stylesheet" href="css/showCategory.css">
|
<link rel="stylesheet" href="css/showCategory.css">
|
||||||
|
|
||||||
<script src="js/comments.js" defer></script>
|
<script src="js/comments.js" defer></script>
|
||||||
|
<script src="js/profile.js" defer></script>
|
||||||
<script src="js/editor.js" async></script>
|
<script src="js/editor.js" async></script>
|
||||||
<script src="js/search-results.js" async></script>
|
|
||||||
<script src="js/showCategory.js" async></script>
|
<script src="js/showCategory.js" async></script>
|
||||||
|
<script src="js/search.js" async></script>
|
||||||
|
|
||||||
|
|
||||||
<title>EduForge</title>
|
<title>EduForge</title>
|
||||||
@@ -36,7 +36,6 @@ include_once "php/controller/index-controller.php";
|
|||||||
|
|
||||||
<?php
|
<?php
|
||||||
include_once 'includes/navbar.php';
|
include_once 'includes/navbar.php';
|
||||||
include_once "includes/alertMessages.php";
|
|
||||||
|
|
||||||
// Dynamischer Inhalt
|
// Dynamischer Inhalt
|
||||||
if (isset($pfad) && $pfad !== "404" && file_exists('content/' . $pfad . '.php')) {
|
if (isset($pfad) && $pfad !== "404" && file_exists('content/' . $pfad . '.php')) {
|
||||||
|
|||||||
+20
-26
@@ -11,6 +11,26 @@ document.addEventListener("DOMContentLoaded", function () {
|
|||||||
const parentCommentInput = document.getElementById("parent-comment-id");
|
const parentCommentInput = document.getElementById("parent-comment-id");
|
||||||
const replyInfo = document.getElementById("reply-info");
|
const replyInfo = document.getElementById("reply-info");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fragt vor dem Löschen eines Kommentars nach einer Bestätigung.
|
||||||
|
*
|
||||||
|
* Der Listener funktioniert auch für Kommentare,
|
||||||
|
* die später per AJAX eingefügt werden.
|
||||||
|
*/
|
||||||
|
document.addEventListener("submit", function (event) {
|
||||||
|
if (!event.target.classList.contains("delete-comment-form")) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const confirmed = confirm(
|
||||||
|
"Möchtest du diesen Kommentar wirklich löschen?"
|
||||||
|
);
|
||||||
|
|
||||||
|
if (!confirmed) {
|
||||||
|
event.preventDefault();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
if (!form || !commentsList || !commentContent || !parentCommentInput) {
|
if (!form || !commentsList || !commentContent || !parentCommentInput) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -109,12 +129,6 @@ document.addEventListener("DOMContentLoaded", function () {
|
|||||||
action="index.php?pfad=updateComment"
|
action="index.php?pfad=updateComment"
|
||||||
class="edit-comment-form"
|
class="edit-comment-form"
|
||||||
>
|
>
|
||||||
<input
|
|
||||||
type="hidden"
|
|
||||||
name="csrf_token"
|
|
||||||
value="${escapeHtml(formData.get("csrf_token"))}"
|
|
||||||
>
|
|
||||||
|
|
||||||
<input
|
<input
|
||||||
type="hidden"
|
type="hidden"
|
||||||
name="comment_id"
|
name="comment_id"
|
||||||
@@ -143,12 +157,6 @@ document.addEventListener("DOMContentLoaded", function () {
|
|||||||
action="index.php?pfad=deleteComment"
|
action="index.php?pfad=deleteComment"
|
||||||
class="delete-comment-form"
|
class="delete-comment-form"
|
||||||
>
|
>
|
||||||
<input
|
|
||||||
type="hidden"
|
|
||||||
name="csrf_token"
|
|
||||||
value="${escapeHtml(formData.get("csrf_token"))}"
|
|
||||||
>
|
|
||||||
|
|
||||||
<input
|
<input
|
||||||
type="hidden"
|
type="hidden"
|
||||||
name="comment_id"
|
name="comment_id"
|
||||||
@@ -164,7 +172,6 @@ document.addEventListener("DOMContentLoaded", function () {
|
|||||||
<button
|
<button
|
||||||
type="submit"
|
type="submit"
|
||||||
class="delete-comment-button"
|
class="delete-comment-button"
|
||||||
onclick="return confirm('Möchtest du diesen Kommentar wirklich löschen?');"
|
|
||||||
>
|
>
|
||||||
Kommentar löschen
|
Kommentar löschen
|
||||||
</button>
|
</button>
|
||||||
@@ -199,12 +206,6 @@ document.addEventListener("DOMContentLoaded", function () {
|
|||||||
action="index.php?pfad=updateComment"
|
action="index.php?pfad=updateComment"
|
||||||
class="edit-comment-form"
|
class="edit-comment-form"
|
||||||
>
|
>
|
||||||
<input
|
|
||||||
type="hidden"
|
|
||||||
name="csrf_token"
|
|
||||||
value="${escapeHtml(formData.get("csrf_token"))}"
|
|
||||||
>
|
|
||||||
|
|
||||||
<input
|
<input
|
||||||
type="hidden"
|
type="hidden"
|
||||||
name="comment_id"
|
name="comment_id"
|
||||||
@@ -233,12 +234,6 @@ document.addEventListener("DOMContentLoaded", function () {
|
|||||||
action="index.php?pfad=deleteComment"
|
action="index.php?pfad=deleteComment"
|
||||||
class="delete-comment-form"
|
class="delete-comment-form"
|
||||||
>
|
>
|
||||||
<input
|
|
||||||
type="hidden"
|
|
||||||
name="csrf_token"
|
|
||||||
value="${escapeHtml(formData.get("csrf_token"))}"
|
|
||||||
>
|
|
||||||
|
|
||||||
<input
|
<input
|
||||||
type="hidden"
|
type="hidden"
|
||||||
name="comment_id"
|
name="comment_id"
|
||||||
@@ -254,7 +249,6 @@ document.addEventListener("DOMContentLoaded", function () {
|
|||||||
<button
|
<button
|
||||||
type="submit"
|
type="submit"
|
||||||
class="delete-comment-button"
|
class="delete-comment-button"
|
||||||
onclick="return confirm('Möchtest du diesen Kommentar wirklich löschen?');"
|
|
||||||
>
|
>
|
||||||
Kommentar löschen
|
Kommentar löschen
|
||||||
</button>
|
</button>
|
||||||
|
|||||||
@@ -0,0 +1,29 @@
|
|||||||
|
document.addEventListener("DOMContentLoaded", function () {
|
||||||
|
|
||||||
|
const deleteAccountForm = document.querySelector(".confirm-delete-account");
|
||||||
|
|
||||||
|
if (deleteAccountForm) {
|
||||||
|
deleteAccountForm.addEventListener("submit", function (event) {
|
||||||
|
|
||||||
|
if (!confirm("Möchtest du deinen Account und alle deine Beiträge wirklich unwiderruflich löschen?")) {
|
||||||
|
event.preventDefault();
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
const deleteArticleForms = document.querySelectorAll(".confirm-delete-article");
|
||||||
|
|
||||||
|
deleteArticleForms.forEach(function (form) {
|
||||||
|
|
||||||
|
form.addEventListener("submit", function (event) {
|
||||||
|
|
||||||
|
if (!confirm("Möchtest du diesen Artikel wirklich löschen?")) {
|
||||||
|
event.preventDefault();
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
@@ -1,10 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
if (session_status() === PHP_SESSION_NONE) {
|
|
||||||
session_start();
|
|
||||||
}
|
|
||||||
|
|
||||||
$_SESSION = [];
|
$_SESSION = [];
|
||||||
session_destroy();
|
session_destroy();
|
||||||
|
|
||||||
header("Location: ../../index.php");
|
header("Location: index.php");
|
||||||
exit();
|
exit();
|
||||||
@@ -315,16 +315,15 @@ class DatabaseArticleManager implements ArticleManagerDAO {
|
|||||||
FROM articles
|
FROM articles
|
||||||
WHERE title LIKE :keyword
|
WHERE title LIKE :keyword
|
||||||
OR content LIKE :keyword
|
OR content LIKE :keyword
|
||||||
OR tags LIKE :keyword";
|
OR tags LIKE :keyword;";
|
||||||
|
|
||||||
$command = $db->prepare($sql);
|
$command = $db->prepare($sql);
|
||||||
if (!$command) {
|
if (!$command) {
|
||||||
throw new InternalServerErrorException("internal_error");
|
throw new InternalServerErrorException("internal_error");
|
||||||
}
|
}
|
||||||
|
|
||||||
// Wildcards für die Suche hinzufügen
|
// Wildcards für die SQL-Suche hinzufügen
|
||||||
$searchParam = '%' . $cleankeyword . '%';
|
$searchParam = '%' . $cleankeyword . '%';
|
||||||
|
|
||||||
$success = $command->execute([
|
$success = $command->execute([
|
||||||
":keyword" => $searchParam
|
":keyword" => $searchParam
|
||||||
]);
|
]);
|
||||||
@@ -337,10 +336,11 @@ class DatabaseArticleManager implements ArticleManagerDAO {
|
|||||||
$filteredArticles = [];
|
$filteredArticles = [];
|
||||||
|
|
||||||
foreach ($rows as $row) {
|
foreach ($rows as $row) {
|
||||||
$likes = $this->getLikesForArticle(intval($row['id']));
|
$articleId = intval($row['id']);
|
||||||
|
$likes = $this->getLikesForArticle($articleId);
|
||||||
|
|
||||||
$filteredArticles[] = new Article(
|
$filteredArticles[] = new Article(
|
||||||
intval($row['id']),
|
$articleId,
|
||||||
$row['title'] ?? '',
|
$row['title'] ?? '',
|
||||||
$row['content'] ?? '',
|
$row['content'] ?? '',
|
||||||
$row['author'] ?? '',
|
$row['author'] ?? '',
|
||||||
@@ -358,6 +358,7 @@ class DatabaseArticleManager implements ArticleManagerDAO {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holt alle User-IDs, die einen bestimmten Beitrag geliked haben.
|
* Holt alle User-IDs, die einen bestimmten Beitrag geliked haben.
|
||||||
*
|
*
|
||||||
|
|||||||
Reference in New Issue
Block a user