Compare commits
5 Commits
07f9f304a4
...
ab4f38a360
| Author | SHA1 | Date | |
|---|---|---|---|
| ab4f38a360 | |||
| 61dde2925b | |||
| 3aa523870f | |||
| 4d6cc807c9 | |||
| a0698d621e |
4
.gitignore
vendored
4
.gitignore
vendored
@@ -24,3 +24,7 @@ docker/
|
||||
*.png
|
||||
|
||||
.DS_Store
|
||||
|
||||
# Filesgallery-Cache (generierte Thumbnails)
|
||||
module/knowledgecenter_update/Plugins/_files/cache/images/*
|
||||
!module/knowledgecenter_update/Plugins/_files/cache/images/.gitkeep
|
||||
@@ -24,6 +24,67 @@ require_once($connEnv);
|
||||
|
||||
db_connect();
|
||||
|
||||
// Prüft ob der aktuelle User Wiki-Schreibrechte hat (r-wiki oder r-wiki-br)
|
||||
function ajax_has_wiki_edit(): bool
|
||||
{
|
||||
$mid = $GLOBALS['main_contact']['master_mandant_id'] ?? 0;
|
||||
$uid = $GLOBALS['main_contact']['id'] ?? 0;
|
||||
return get_permission_state('r-wiki', $mid, $uid) == 1
|
||||
|| get_permission_state('r-wiki-br', $mid, $uid) == 1;
|
||||
}
|
||||
|
||||
// Prüft ob eine Kategorie (oder ein Vorfahre) betriebsrat_editable=1 hat.
|
||||
function ajax_is_category_editable_for_br(int $categoryId): bool
|
||||
{
|
||||
$visited = [];
|
||||
$queue = [$categoryId];
|
||||
while (!empty($queue)) {
|
||||
$current = array_shift($queue);
|
||||
if (isset($visited[$current])) {
|
||||
continue;
|
||||
}
|
||||
$visited[$current] = true;
|
||||
$res = mysqli_query($GLOBALS['mysql_con'],
|
||||
"SELECT betriebsrat_editable FROM knowledgecenter_categories_update WHERE id = $current LIMIT 1");
|
||||
$row = mysqli_fetch_assoc($res);
|
||||
if ($row && (int)$row['betriebsrat_editable'] === 1) {
|
||||
return true;
|
||||
}
|
||||
$pRes = mysqli_query($GLOBALS['mysql_con'],
|
||||
"SELECT parent_category_id FROM knowledgecenter_category_links WHERE child_category_id = $current");
|
||||
while ($pRow = mysqli_fetch_assoc($pRes)) {
|
||||
$pid = (int)$pRow['parent_category_id'];
|
||||
if (!isset($visited[$pid])) {
|
||||
$queue[] = $pid;
|
||||
}
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// Betriebsrat darf einen Post nur bearbeiten, wenn er in einer freigegebenen
|
||||
// Kategorie (oder Unterkategorie einer freigegebenen Kategorie) liegt.
|
||||
function ajax_can_edit_post(int $postId): bool
|
||||
{
|
||||
$mid = $GLOBALS['main_contact']['master_mandant_id'] ?? 0;
|
||||
$uid = $GLOBALS['main_contact']['id'] ?? 0;
|
||||
if (get_permission_state('r-wiki', $mid, $uid) == 1) {
|
||||
return true;
|
||||
}
|
||||
if (get_permission_state('r-wiki-br', $mid, $uid) != 1) {
|
||||
return false;
|
||||
}
|
||||
// Betriebsrat: prüfe alle dem Post zugeordneten Kategorien inkl. Vorfahren
|
||||
$res = mysqli_query($GLOBALS['mysql_con'],
|
||||
"SELECT category_id FROM knowledgecenter_category_post WHERE post_id = $postId");
|
||||
while ($row = mysqli_fetch_assoc($res)) {
|
||||
if (ajax_is_category_editable_for_br((int)$row['category_id'])) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// AJAX-Handler: Falls per POST eine Aktion übergeben wurde, diese verarbeiten und das Skript beenden.
|
||||
if (isset($_POST["action"])) {
|
||||
header('Content-Type: application/json');
|
||||
@@ -243,6 +304,7 @@ function update_category_detail()
|
||||
{
|
||||
$is_navigation_item = isset($_POST['is_navigation_item']) ? (int) $_POST['is_navigation_item'] : 0;
|
||||
$enable_post_color_pickers = isset($_POST['enable_post_color_pickers']) ? (int) $_POST['enable_post_color_pickers'] : 0;
|
||||
$betriebsrat_editable = isset($_POST['betriebsrat_editable']) ? (int) $_POST['betriebsrat_editable'] : 0;
|
||||
$color_hex = mysqli_real_escape_string($GLOBALS['mysql_con'], $_POST['color_hex'] ?? '');
|
||||
$categoryId = (int) ($_POST['id'] ?? 0);
|
||||
$languageId = (int) ($_POST['language_id'] ?? 0);
|
||||
@@ -292,6 +354,7 @@ function update_category_detail()
|
||||
modified_at = NOW(),
|
||||
state = $state,
|
||||
enable_post_color_pickers = $enable_post_color_pickers,
|
||||
betriebsrat_editable = $betriebsrat_editable,
|
||||
color_hex = '$color_hex'
|
||||
WHERE id = $categoryId";
|
||||
if (!mysqli_query($GLOBALS['mysql_con'], $mainUpdate)) {
|
||||
@@ -686,6 +749,22 @@ function update_post_version()
|
||||
echo json_encode(['error' => 'Ungültige Beitrags-ID']);
|
||||
exit;
|
||||
}
|
||||
|
||||
if (!ajax_has_wiki_edit()) {
|
||||
echo json_encode(['error' => 'Keine Berechtigung']);
|
||||
exit;
|
||||
}
|
||||
// Betriebsrat darf bestehende Posts nur bearbeiten wenn der Post in einer freigegebenen Kategorie liegt.
|
||||
// Neue Drafts haben noch keine Kategorien → Prüfung überspringen (Zugang wurde schon bei create_post_draft gesichert).
|
||||
if ($postId > 0) {
|
||||
$catCountRes = mysqli_query($GLOBALS['mysql_con'],
|
||||
"SELECT COUNT(*) AS cnt FROM knowledgecenter_category_post WHERE post_id = $postId");
|
||||
$catCountRow = mysqli_fetch_assoc($catCountRes);
|
||||
if ((int)$catCountRow['cnt'] > 0 && !ajax_can_edit_post($postId)) {
|
||||
echo json_encode(['error' => 'Keine Berechtigung für diesen Beitrag']);
|
||||
exit;
|
||||
}
|
||||
}
|
||||
$keepModifiedAt = isset($_POST['keep_modified_at']) && (int) $_POST['keep_modified_at'] === 1;
|
||||
|
||||
$backgroundColor = normalize_hex_color($_POST['background_color'] ?? '#FFFFFF', '#FFFFFF');
|
||||
@@ -1029,6 +1108,10 @@ function delete_post_gallery_dir($postId)
|
||||
|
||||
function create_post_draft()
|
||||
{
|
||||
if (!ajax_has_wiki_edit()) {
|
||||
echo json_encode(['error' => 'Keine Berechtigung']);
|
||||
exit;
|
||||
}
|
||||
$insertPostQuery = "INSERT INTO knowledgecenter_posts (created_at) VALUES (NOW())";
|
||||
if (!mysqli_query($GLOBALS['mysql_con'], $insertPostQuery)) {
|
||||
echo json_encode(['error' => 'Fehler beim Erstellen des Entwurfs: ' . mysqli_error($GLOBALS['mysql_con'])]);
|
||||
@@ -1243,6 +1326,27 @@ function update_post_categories()
|
||||
exit;
|
||||
}
|
||||
|
||||
$mid = $GLOBALS['main_contact']['master_mandant_id'] ?? 0;
|
||||
$uid = $GLOBALS['main_contact']['id'] ?? 0;
|
||||
$isRedakteur = get_permission_state('r-wiki', $mid, $uid) == 1;
|
||||
$isBetriebsrat = get_permission_state('r-wiki-br', $mid, $uid) == 1;
|
||||
|
||||
if (!$isRedakteur && !$isBetriebsrat) {
|
||||
echo json_encode(['error' => 'Keine Berechtigung']);
|
||||
exit;
|
||||
}
|
||||
|
||||
// Betriebsrat darf nur Kategorien zuweisen, die für ihn freigegeben sind (inkl. Vererbung)
|
||||
if (!$isRedakteur && $isBetriebsrat) {
|
||||
foreach ($categories as $catId) {
|
||||
$catId = (int)$catId;
|
||||
if ($catId > 0 && !ajax_is_category_editable_for_br($catId)) {
|
||||
echo json_encode(['error' => "Kategorie $catId ist nicht für den Betriebsrat freigegeben"]);
|
||||
exit;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Bestehende Einträge für diesen Beitrag löschen
|
||||
$deleteQuery = "DELETE FROM knowledgecenter_category_post WHERE post_id = $postId";
|
||||
if (!mysqli_query($GLOBALS['mysql_con'], $deleteQuery)) {
|
||||
@@ -1583,6 +1687,10 @@ function save_post_files()
|
||||
echo json_encode(['error' => 'Ungültige Post-ID']);
|
||||
exit;
|
||||
}
|
||||
if (!ajax_can_edit_post($postId)) {
|
||||
echo json_encode(['error' => 'Keine Berechtigung']);
|
||||
exit;
|
||||
}
|
||||
|
||||
if (!empty($filesStr)) {
|
||||
// Zerlege den String in einzelne Pfade (getrennt durch Komma und optional Leerzeichen)
|
||||
@@ -1650,7 +1758,7 @@ function delete_post_file()
|
||||
exit;
|
||||
}
|
||||
|
||||
$selectQuery = "SELECT path FROM knowledgecenter_post_files WHERE id = $fileId LIMIT 1";
|
||||
$selectQuery = "SELECT path, post_id FROM knowledgecenter_post_files WHERE id = $fileId LIMIT 1";
|
||||
$selectResult = mysqli_query($GLOBALS['mysql_con'], $selectQuery);
|
||||
if (!$selectResult || mysqli_num_rows($selectResult) === 0) {
|
||||
echo json_encode(['error' => 'Datei-Eintrag nicht gefunden']);
|
||||
@@ -1660,6 +1768,11 @@ function delete_post_file()
|
||||
$row = mysqli_fetch_assoc($selectResult);
|
||||
$storedPath = trim((string) ($row['path'] ?? ''));
|
||||
|
||||
if (!ajax_can_edit_post((int)($row['post_id'] ?? 0))) {
|
||||
echo json_encode(['error' => 'Keine Berechtigung']);
|
||||
exit;
|
||||
}
|
||||
|
||||
$userdataRoot = realpath($_SERVER['DOCUMENT_ROOT'] . '/userdata');
|
||||
if ($userdataRoot === false) {
|
||||
echo json_encode(['error' => 'userdata-Verzeichnis nicht gefunden']);
|
||||
|
||||
@@ -58,8 +58,10 @@ if (!$q || !($contactRow = mysqli_fetch_assoc($q))) {
|
||||
$contactId = (int) $contactRow['id'];
|
||||
$masterMandantId = (int) $contactRow['master_mandant_id'];
|
||||
|
||||
if (get_permission_state('r-wiki', $masterMandantId, $contactId) != 1) {
|
||||
respond_error('Keine Berechtigung (r-wiki).', 403);
|
||||
$hasRwiki = get_permission_state('r-wiki', $masterMandantId, $contactId) == 1;
|
||||
$hasRwikiBr = get_permission_state('r-wiki-br', $masterMandantId, $contactId) == 1;
|
||||
if (!$hasRwiki && !$hasRwikiBr) {
|
||||
respond_error('Keine Berechtigung.', 403);
|
||||
}
|
||||
|
||||
$postId = isset($_POST['post_id']) ? (int) $_POST['post_id'] : 0;
|
||||
@@ -72,6 +74,40 @@ if (!$verifyQ || mysqli_num_rows($verifyQ) === 0) {
|
||||
respond_error('Beitrag existiert nicht.', 404);
|
||||
}
|
||||
|
||||
// Betriebsrat darf Bilder nur für Posts in freigegebenen Kategorien hochladen (inkl. Vererbung)
|
||||
if (!$hasRwiki && $hasRwikiBr) {
|
||||
$brAllowed = false;
|
||||
$brRes = mysqli_query($GLOBALS['mysql_con'],
|
||||
"SELECT category_id FROM knowledgecenter_category_post WHERE post_id = $postId");
|
||||
while ($brRow = mysqli_fetch_assoc($brRes)) {
|
||||
$catId = (int)$brRow['category_id'];
|
||||
// Baum nach oben absuchen
|
||||
$visited = [];
|
||||
$queue = [$catId];
|
||||
while (!empty($queue)) {
|
||||
$current = array_shift($queue);
|
||||
if (isset($visited[$current])) continue;
|
||||
$visited[$current] = true;
|
||||
$chkRes = mysqli_query($GLOBALS['mysql_con'],
|
||||
"SELECT betriebsrat_editable FROM knowledgecenter_categories_update WHERE id = $current LIMIT 1");
|
||||
$chkRow = mysqli_fetch_assoc($chkRes);
|
||||
if ($chkRow && (int)$chkRow['betriebsrat_editable'] === 1) {
|
||||
$brAllowed = true;
|
||||
break 2;
|
||||
}
|
||||
$pRes = mysqli_query($GLOBALS['mysql_con'],
|
||||
"SELECT parent_category_id FROM knowledgecenter_category_links WHERE child_category_id = $current");
|
||||
while ($pRow = mysqli_fetch_assoc($pRes)) {
|
||||
$pid = (int)$pRow['parent_category_id'];
|
||||
if (!isset($visited[$pid])) $queue[] = $pid;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (!$brAllowed) {
|
||||
respond_error('Keine Berechtigung für diesen Beitrag.', 403);
|
||||
}
|
||||
}
|
||||
|
||||
if (!isset($_FILES['file']) || !is_array($_FILES['file'])) {
|
||||
respond_error('Keine Datei empfangen.');
|
||||
}
|
||||
|
||||
@@ -829,7 +829,6 @@ if (isset($_GET[$c_form]) && !empty($_POST)) {
|
||||
// Helper-Funktion zur Berechtigungsprüfung
|
||||
function require_permission($permissionCode)
|
||||
{
|
||||
// Hier nehmen wir an, dass $GLOBALS["main_contact"] korrekt gesetzt ist
|
||||
if (
|
||||
get_permission_state(
|
||||
$permissionCode,
|
||||
@@ -842,6 +841,62 @@ function require_permission($permissionCode)
|
||||
}
|
||||
}
|
||||
|
||||
// Prüft, ob der User voller Wiki-Redakteur ist (r-wiki)
|
||||
function is_wiki_redakteur(): bool
|
||||
{
|
||||
return get_permission_state('r-wiki', $GLOBALS['main_contact']['master_mandant_id'], $GLOBALS['main_contact']['id']) == 1;
|
||||
}
|
||||
|
||||
// Prüft, ob der User Betriebsrat-Wiki-Recht hat (r-wiki-br)
|
||||
function is_wiki_betriebsrat(): bool
|
||||
{
|
||||
return get_permission_state('r-wiki-br', $GLOBALS['main_contact']['master_mandant_id'], $GLOBALS['main_contact']['id']) == 1;
|
||||
}
|
||||
|
||||
// Prüft, ob der User irgendeins der Wiki-Bearbeitungsrechte hat
|
||||
function has_wiki_edit_permission(): bool
|
||||
{
|
||||
return is_wiki_redakteur() || is_wiki_betriebsrat();
|
||||
}
|
||||
|
||||
function require_wiki_edit_permission(): void
|
||||
{
|
||||
if (!has_wiki_edit_permission()) {
|
||||
echo "Sie haben nicht die notwendigen Berechtigungen, um diese Seite zu sehen.";
|
||||
exit;
|
||||
}
|
||||
}
|
||||
|
||||
// Prüft ob eine Kategorie (oder irgendein Vorfahre über knowledgecenter_category_links)
|
||||
// betriebsrat_editable=1 hat. Läuft den Baum nach oben durch.
|
||||
function is_category_betriebsrat_editable(int $categoryId): bool
|
||||
{
|
||||
$visited = [];
|
||||
$queue = [$categoryId];
|
||||
while (!empty($queue)) {
|
||||
$current = array_shift($queue);
|
||||
if (isset($visited[$current])) {
|
||||
continue;
|
||||
}
|
||||
$visited[$current] = true;
|
||||
$res = mysqli_query($GLOBALS['mysql_con'],
|
||||
"SELECT betriebsrat_editable FROM knowledgecenter_categories_update WHERE id = $current LIMIT 1");
|
||||
$row = mysqli_fetch_assoc($res);
|
||||
if ($row && (int)$row['betriebsrat_editable'] === 1) {
|
||||
return true;
|
||||
}
|
||||
$pRes = mysqli_query($GLOBALS['mysql_con'],
|
||||
"SELECT parent_category_id FROM knowledgecenter_category_links WHERE child_category_id = $current");
|
||||
while ($pRow = mysqli_fetch_assoc($pRes)) {
|
||||
$pid = (int)$pRow['parent_category_id'];
|
||||
if (!isset($visited[$pid])) {
|
||||
$queue[] = $pid;
|
||||
}
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// Switch-Case für die verschiedenen Aktionen
|
||||
$action = $_GET["action"] ?? "List";
|
||||
switch ($action) {
|
||||
@@ -850,6 +905,7 @@ switch ($action) {
|
||||
require_once(__DIR__ . '/../Installation/Installation.php');
|
||||
break;
|
||||
case "Categories":
|
||||
// Kategorieverwaltung nur für vollständige Redakteure
|
||||
if (isset($_GET['detail'])) {
|
||||
require_permission('r-wiki');
|
||||
require_once(__DIR__ . '/../Views/categories_cardform.php');
|
||||
@@ -859,7 +915,8 @@ switch ($action) {
|
||||
}
|
||||
break;
|
||||
case "PostList":
|
||||
require_permission('r-wiki');
|
||||
// Betriebsrat darf die Post-Liste sehen (gefiltert auf seine Kategorien)
|
||||
require_wiki_edit_permission();
|
||||
require_once(__DIR__ . '/../Views/post_listform.php');
|
||||
break;
|
||||
case "Post":
|
||||
@@ -870,7 +927,8 @@ switch ($action) {
|
||||
require_once(__DIR__ . '/../Import/Import.php');
|
||||
break;
|
||||
case "NewPost":
|
||||
require_permission('r-wiki');
|
||||
// Betriebsrat darf neue Posts erstellen (nur in freigegebenen Kategorien)
|
||||
require_wiki_edit_permission();
|
||||
$_GET['new'] = 1;
|
||||
require_once(__DIR__ . '/../Views/post_cardform.php');
|
||||
break;
|
||||
|
||||
@@ -1,15 +1,25 @@
|
||||
<script>
|
||||
// Redakteur (r-wiki) darf frei navigieren; Betriebsrat ist auf den Post-Ordner beschränkt
|
||||
var kcUserLockedToPostFolder = <?= (!is_wiki_redakteur() && is_wiki_betriebsrat()) ? 'true' : 'false' ?>;
|
||||
|
||||
function buildFileGalleryUrl(target, mode, ajaxFunction, nocache) {
|
||||
var base = "/module/knowledgecenter_update/Plugins/filesgallery.php?";
|
||||
var startPath = (typeof window.kcPostGalleryPath === "string")
|
||||
var postPath = (typeof window.kcPostGalleryPath === "string")
|
||||
? window.kcPostGalleryPath.replace(/^\/+|\/+$/g, "")
|
||||
: "";
|
||||
|
||||
// Redakteur: kein Lock (leerer kc_lock_path löscht den Session-Lock)
|
||||
// Betriebsrat: immer auf Post-Ordner beschränken
|
||||
var lockPath = kcUserLockedToPostFolder ? postPath : "";
|
||||
|
||||
var params = "input_id=" + encodeURIComponent(target) +
|
||||
"&mode=" + encodeURIComponent(mode) +
|
||||
"&saveajax=" + encodeURIComponent(ajaxFunction || "") +
|
||||
"&kc_lock_path=" + encodeURIComponent(startPath) +
|
||||
"&kc_lock_path=" + encodeURIComponent(lockPath) +
|
||||
"&nocache=" + nocache;
|
||||
|
||||
// Startverzeichnis: bei Betriebsrat immer Post-Ordner, bei Redakteur auch
|
||||
var startPath = postPath;
|
||||
if (startPath.length > 0) {
|
||||
return base + encodeURIComponent(startPath) + "&" + params;
|
||||
}
|
||||
|
||||
@@ -409,6 +409,15 @@ $parentCount = count($parentCategories);
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<?php $betriebsrat_editable = isset($category['betriebsrat_editable']) ? (int) $category['betriebsrat_editable'] : 0; ?>
|
||||
<div class="aside_section">
|
||||
<label for="betriebsratEditableCheckbox">
|
||||
Für Betriebsrat bearbeitbar
|
||||
<input type="checkbox" id="betriebsratEditableCheckbox" name="betriebsrat_editable" value="1"
|
||||
<?= $betriebsrat_editable === 1 ? 'checked' : '' ?>>
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<?php if (!empty($categoryId)): ?>
|
||||
<?php
|
||||
$formatter = new IntlDateFormatter(
|
||||
@@ -505,7 +514,7 @@ $parentCount = count($parentCategories);
|
||||
var state = $('#stateCheckbox').is(':checked') ? 1 : 0;
|
||||
var isNavigationItem = $('#isNavigationItem').is(':checked') ? 1 : 0;
|
||||
var enablePostColorPickers = $('#enablePostColorPickersCheckbox').is(':checked') ? 1 : 0;
|
||||
|
||||
var betriebsratEditable = $('#betriebsratEditableCheckbox').is(':checked') ? 1 : 0;
|
||||
|
||||
$.post("/module/knowledgecenter_update/Ajax/Ajax.php", {
|
||||
action: "update_category_detail",
|
||||
@@ -517,7 +526,8 @@ $parentCount = count($parentCategories);
|
||||
state: state,
|
||||
is_navigation_item: isNavigationItem,
|
||||
enable_post_color_pickers: enablePostColorPickers,
|
||||
color_hex: $('#color_hex').val()
|
||||
color_hex: $('#color_hex').val(),
|
||||
betriebsrat_editable: betriebsratEditable
|
||||
}, function (response) {
|
||||
if (!response.success) {
|
||||
showMessage("Fehler beim Speichern der Übersetzung (" + langCode + "): " + response.error, false);
|
||||
|
||||
@@ -26,6 +26,8 @@ if (empty($GLOBALS['allowedRoles'])) {
|
||||
|
||||
// Standard-Redirect-URL (zum Beispiel für Navigation)
|
||||
$redirectURL = isset($_GET['redirectURL']) ? $_GET['redirectURL'] : '?action=List';
|
||||
|
||||
$_kcBrOnly = !is_wiki_redakteur() && is_wiki_betriebsrat();
|
||||
?>
|
||||
<script>
|
||||
(function () {
|
||||
@@ -38,18 +40,27 @@ $redirectURL = isset($_GET['redirectURL']) ? $_GET['redirectURL'] : '?action=Lis
|
||||
<form action="" id="<?= $formname = "categories_posts_listform" ?>" name="<?= $formname ?>" method="post">
|
||||
<div class="titlebar">
|
||||
<div class="searchbar">
|
||||
<?php if (get_permission_state('r-wiki', $GLOBALS['main_contact']['master_mandant_id'], $GLOBALS['main_contact']['id']) == 1) { ?>
|
||||
<?php if (has_wiki_edit_permission()) { ?>
|
||||
<?= button("post_list", $translation->get("post_list"), $formname, "sendRequest('PostList', true)"); ?>
|
||||
<?php } ?>
|
||||
<?php if (get_permission_state('r-wiki', $GLOBALS['main_contact']['master_mandant_id'], $GLOBALS['main_contact']['id']) == 1) { ?>
|
||||
<?php if (is_wiki_redakteur()) { ?>
|
||||
<?= button("category_list", $translation->get("category_list"), $formname, "sendRequest('Categories', true)"); ?>
|
||||
<?php } ?>
|
||||
<div id="changeCategoryGridView">
|
||||
</div>
|
||||
</div>
|
||||
<div class="titlebar-actions">
|
||||
<?php if (get_permission_state('r-wiki', $GLOBALS['main_contact']['master_mandant_id'], $GLOBALS['main_contact']['id']) == 1) { ?>
|
||||
<a href="?action=NewPost&InitialCategory=<?= $_GET["detail"] ?>"
|
||||
<?php
|
||||
// "Beitrag erstellen" für Redakteur immer, für Betriebsrat nur in freigegebenen Kategorien
|
||||
// (inkl. Vererbung: Unterkategorien einer freigegebenen Kategorie gelten ebenfalls)
|
||||
$showCreateBtn = false;
|
||||
if (is_wiki_redakteur()) {
|
||||
$showCreateBtn = true;
|
||||
} elseif ($_kcBrOnly && isset($_GET['detail'])) {
|
||||
$showCreateBtn = is_category_betriebsrat_editable((int)$_GET['detail']);
|
||||
}
|
||||
if ($showCreateBtn) { ?>
|
||||
<a href="?action=NewPost&InitialCategory=<?= (int)($_GET["detail"] ?? 0) ?>"
|
||||
title="<?= $translation->get("new_wiki_post") ?>" role="button" class="green">Beitrag erstellen +</a>
|
||||
<?php } ?>
|
||||
|
||||
|
||||
@@ -148,14 +148,19 @@ $initialCategoryId = isset($_GET['InitialCategory']) ? (int) $_GET['InitialCateg
|
||||
$InitialProduct = isset($_GET['InitialProduct']) ? (int) $_GET['InitialProduct'] : 0;
|
||||
|
||||
if ($isNew) {
|
||||
require_permission('r-wiki');
|
||||
require_wiki_edit_permission();
|
||||
|
||||
// Neuer Beitrag: Lege leere bzw. Standardwerte an
|
||||
// Betriebsrat darf nur in Kategorien erstellen, die für ihn freigegeben sind (inkl. Vererbung)
|
||||
if (!is_wiki_redakteur() && $initialCategoryId > 0) {
|
||||
if (!is_category_betriebsrat_editable($initialCategoryId)) {
|
||||
echo "<p>Sie haben nicht die Berechtigung, in dieser Kategorie zu erstellen.</p>";
|
||||
exit;
|
||||
}
|
||||
}
|
||||
|
||||
$canEditPost = true; // Berechtigung schon oben geprüft
|
||||
$postId = 0;
|
||||
$post = [
|
||||
'id' => 0,
|
||||
// Weitere Felder kannst du hier ggf. ergänzen
|
||||
];
|
||||
$post = ['id' => 0];
|
||||
$versionCount = 0;
|
||||
$currentVersion = [
|
||||
'id' => 0,
|
||||
@@ -178,6 +183,20 @@ if ($isNew) {
|
||||
echo "<p>Sie haben nicht die notwendigen Berechtigungen.</p>";
|
||||
exit;
|
||||
}
|
||||
|
||||
// Schreibrechte: Redakteur darf alles; Betriebsrat nur in freigegebenen Kategorien (inkl. Vererbung)
|
||||
$canEditPost = is_wiki_redakteur();
|
||||
if (!$canEditPost && is_wiki_betriebsrat()) {
|
||||
$brCatRes = mysqli_query($GLOBALS['mysql_con'],
|
||||
"SELECT category_id FROM knowledgecenter_category_post WHERE post_id = $postId");
|
||||
$canEditPost = false;
|
||||
while ($brCatRow = mysqli_fetch_assoc($brCatRes)) {
|
||||
if (is_category_betriebsrat_editable((int)$brCatRow['category_id'])) {
|
||||
$canEditPost = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
// Beitrag aus der Haupttabelle abrufen
|
||||
$sqlPost = "SELECT * FROM knowledgecenter_posts WHERE id = $postId LIMIT 1";
|
||||
$resPost = mysqli_query($GLOBALS['mysql_con'], $sqlPost);
|
||||
@@ -363,7 +382,7 @@ if ($resLinkedForm && mysqli_num_rows($resLinkedForm) > 0) {
|
||||
<a href="#tab-files"><?= $translation->get("files") ?> (<?php echo $fileCount; ?>)</a>
|
||||
<a href="#tab-contacts"><?= $translation->get("Ansprechpartner") ?> (<?php echo $contactCount; ?>)</a>
|
||||
<a href="#tab-versions"><?= $translation->get("version_history") ?> (<?php echo $versionCount; ?>)</a>
|
||||
<?php if (get_permission_state('r-wiki', $GLOBALS['main_contact']['master_mandant_id'], $GLOBALS['main_contact']['id']) == 1) { ?>
|
||||
<?php if ($canEditPost ?? false) { ?>
|
||||
<a href="#tab-settings"><?= $translation->get("settings") ?></a>
|
||||
<?php } ?>
|
||||
</div>
|
||||
@@ -431,7 +450,7 @@ if ($resLinkedForm && mysqli_num_rows($resLinkedForm) > 0) {
|
||||
require_once 'post_cardform_version_history.php';
|
||||
?>
|
||||
</div>
|
||||
<?php if (get_permission_state('r-wiki', $GLOBALS['main_contact']['master_mandant_id'], $GLOBALS['main_contact']['id']) == 1) { ?>
|
||||
<?php if ($canEditPost ?? false) { ?>
|
||||
<div id="tab-settings" class="tab-content">
|
||||
<?php
|
||||
require_once 'post_cardform_settings.php';
|
||||
|
||||
@@ -121,15 +121,10 @@
|
||||
<h1 id="displayTitle"><?php echo htmlspecialchars($currentVersion['title']); ?></h1>
|
||||
<?php endif; ?>
|
||||
<div>
|
||||
<?php if (!empty($postId) && $postId > 0): ?>
|
||||
<?php if (get_permission_state('r-wiki', $GLOBALS['main_contact']['master_mandant_id'], $GLOBALS['main_contact']['id']) == 1): ?>
|
||||
<?php if (!empty($postId) && $postId > 0 && ($canEditPost ?? false)): ?>
|
||||
<span id="editBtn" class="post-action-btn grey" title="Aktuelle Version bearbeiten">✎</span>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if (get_permission_state('r-wiki', $GLOBALS['main_contact']['master_mandant_id'], $GLOBALS['main_contact']['id']) == 1): ?>
|
||||
<span id="createBtn" class="green" title="Neue Version erstellen">Neue Version erstellen +</span>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<div class="titlebar_small">
|
||||
<h2><?= $translation->get("files") ?></h2>
|
||||
<?php if (get_permission_state('r-wiki', $GLOBALS['main_contact']['master_mandant_id'], $GLOBALS['main_contact']['id']) == 1) { ?>
|
||||
<?php if (($canEditPost ?? false)) { ?>
|
||||
<div class="post-action-btn-small green openFileGalleryMulti" title="Datei hinzufügen"
|
||||
data-ajax-function="saveFilesAjax" data-target="post_files">+
|
||||
</div>
|
||||
@@ -111,7 +111,7 @@
|
||||
}
|
||||
|
||||
// Definiere den Lösch-Button
|
||||
<?php if (get_permission_state('r-wiki', $GLOBALS['main_contact']['master_mandant_id'], $GLOBALS['main_contact']['id']) == 1) { ?>
|
||||
<?php if (($canEditPost ?? false)) { ?>
|
||||
var deleteButton = "<span class='file-delete post-action-btn-small' data-file-id='" + file.id + "' onclick='deleteFile(" + file.id + ")'>✕</span>";
|
||||
<?php } else {
|
||||
?>
|
||||
|
||||
@@ -36,6 +36,7 @@ while ($row = mysqli_fetch_assoc($result)) {
|
||||
|
||||
// -------------------- Kategorien --------------------
|
||||
// Erzeuge die Whitelist für alle verfügbaren Kategorien (mit Übersetzung)
|
||||
// Betriebsrat sieht nur Kategorien, die für ihn freigegeben sind (direkt oder über Elternkategorie)
|
||||
$categoriesData = [];
|
||||
$query = "SELECT c.id, t.title, c.enable_post_color_pickers
|
||||
FROM knowledgecenter_categories_update AS c
|
||||
@@ -43,8 +44,11 @@ $query = "SELECT c.id, t.title, c.enable_post_color_pickers
|
||||
ON c.id = t.category_id
|
||||
WHERE t.language_id = $languageId";
|
||||
$result = mysqli_query($GLOBALS['mysql_con'], $query);
|
||||
$isBrOnly = !is_wiki_redakteur() && is_wiki_betriebsrat();
|
||||
while ($row = mysqli_fetch_assoc($result)) {
|
||||
// Hier wird der in der Übersetzungstabelle gespeicherte Titel als 'name' verwendet.
|
||||
if ($isBrOnly && !is_category_betriebsrat_editable((int)$row['id'])) {
|
||||
continue;
|
||||
}
|
||||
$categoriesData[] = [
|
||||
'value' => $row['id'],
|
||||
'name' => $row['title'],
|
||||
@@ -185,7 +189,7 @@ if (!empty($post['text_color'])) {
|
||||
<button id="message" style="opacity:0; position: absolute;"></button>
|
||||
<div class="titlebar_small">
|
||||
<h2><?=$translation->get("settings")?></h2>
|
||||
<?php if (get_permission_state('r-wiki', $GLOBALS['main_contact']['master_mandant_id'], $GLOBALS['main_contact']['id']) == 1) { ?>
|
||||
<?php if ($canEditPost ?? false) { ?>
|
||||
<span id="saveAllBtn" class="post-action-btn-small green"><?= $saveIcon ?></span>
|
||||
<?php } ?>
|
||||
</div>
|
||||
@@ -424,7 +428,7 @@ if (!empty($post['text_color'])) {
|
||||
tagifyPostFachbereiche.addTags(selectedPostFachbereiche);
|
||||
}
|
||||
|
||||
<?php if (get_permission_state('r-wiki', $GLOBALS['main_contact']['master_mandant_id'], $GLOBALS['main_contact']['id']) == 1) { ?>
|
||||
<?php if ($canEditPost ?? false) { ?>
|
||||
$("#saveAllBtn").on("click", function () {
|
||||
// Während des Speicherns blurren
|
||||
$("#tab-settings").addClass("blurred");
|
||||
|
||||
@@ -99,7 +99,8 @@ function save_facility() {
|
||||
$messages[] = '<div class="successbox">' . $translation->get("role_msg_success2") . '</div>';
|
||||
}
|
||||
saveMandantLink($input_id);
|
||||
edit_role($input_id, $messages);
|
||||
saveLinkedEinrichts($input_id);
|
||||
edit_facility($input_id, $messages);
|
||||
} else {
|
||||
header('EDIT_ERROR: 1');
|
||||
// $input_role["id"] = $_POST["input_id"];
|
||||
@@ -110,6 +111,28 @@ function save_facility() {
|
||||
}
|
||||
}
|
||||
|
||||
function saveLinkedEinrichts($einricht_id) {
|
||||
$einricht_id = (int)$einricht_id;
|
||||
if ($einricht_id <= 0) return;
|
||||
|
||||
// Alle alten Verknüpfungen löschen
|
||||
mysqli_query($GLOBALS['mysql_con'],
|
||||
"DELETE FROM organigramm_einricht_link WHERE einricht_id = $einricht_id");
|
||||
|
||||
// Neue Verknüpfungen speichern
|
||||
$raw = trim($_POST['linked_einrichts'] ?? '');
|
||||
if ($raw === '') return;
|
||||
|
||||
foreach (explode(',', $raw) as $linkedId) {
|
||||
$linkedId = (int)trim($linkedId);
|
||||
if ($linkedId > 0 && $linkedId !== $einricht_id) {
|
||||
mysqli_query($GLOBALS['mysql_con'],
|
||||
"INSERT IGNORE INTO organigramm_einricht_link (einricht_id, linked_einricht_id)
|
||||
VALUES ($einricht_id, $linkedId)");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function saveMandantLink($role_id){
|
||||
$mandant_id = $_POST['select_mandant'];
|
||||
$mandante = explode(',', $mandant_id);
|
||||
|
||||
@@ -2,6 +2,28 @@
|
||||
$formname = "form_facility_card";
|
||||
$translation = \DynCom\mysyde\common\classes\Registry::get("translation");
|
||||
$inputname = "input_id";
|
||||
|
||||
$currentId = (int)($input_role["id"] ?? 0);
|
||||
|
||||
// Alle Einrichtungen außer der aktuellen laden
|
||||
$allEinrichts = [];
|
||||
$qAll = mysqli_query($GLOBALS['mysql_con'],
|
||||
"SELECT id, description FROM organigramm_einricht ORDER BY description ASC");
|
||||
while ($row = mysqli_fetch_assoc($qAll)) {
|
||||
if ((int)$row['id'] !== $currentId) {
|
||||
$allEinrichts[] = $row;
|
||||
}
|
||||
}
|
||||
|
||||
// Bereits verknüpfte Einrichtungen laden
|
||||
$preselect = [];
|
||||
if ($currentId > 0) {
|
||||
$qLinked = mysqli_query($GLOBALS['mysql_con'],
|
||||
"SELECT linked_einricht_id FROM organigramm_einricht_link WHERE einricht_id = $currentId");
|
||||
while ($row = mysqli_fetch_assoc($qLinked)) {
|
||||
$preselect[] = $row['linked_einricht_id'];
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
<div id="overlaycrumb">
|
||||
@@ -9,33 +31,26 @@ $inputname = "input_id";
|
||||
echo $translation->get("new_facility");
|
||||
} else {
|
||||
echo $translation->get("edit_facility");
|
||||
}
|
||||
?>
|
||||
} ?>
|
||||
<div id="closeoverlay" onclick="disableOverlay();"></div>
|
||||
</div>
|
||||
|
||||
<ul class="toolbar_menu">
|
||||
<?= button("save", $translation->get("save"), $formname, "loadCard('save', true)"); ?>
|
||||
<?= button("save", $translation->get("save_and_close"), $formname, "loadCard('save', true, '', true)"); ?>
|
||||
<li>
|
||||
<ul>
|
||||
<?php
|
||||
if ($input_role["id"] != "") {
|
||||
echo button("delete", $translation->get("delete"), $formname, "loadCard('delete', true, '{$translation->get('delete_role_confirm')}', true)", "", FALSE);
|
||||
}
|
||||
?>
|
||||
<?php if ($input_role["id"] != ""): ?>
|
||||
<?= button("delete", $translation->get("delete"), $formname, "loadCard('delete', true, '{$translation->get('delete_role_confirm')}', true)", "", FALSE); ?>
|
||||
<?php endif; ?>
|
||||
<?= button("reset", $translation->get("restore"), $formname, "?action=edit", "", FALSE); ?>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<?php
|
||||
if ($messages !== null) {
|
||||
if (count($messages)) {
|
||||
echo '<div id="overlayMessages">' . join("\r\n", $messages) . '</div>';
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
?>
|
||||
<?php if ($messages !== null && count($messages)): ?>
|
||||
<div id="overlayMessages"><?= join("\r\n", $messages) ?></div>
|
||||
<?php endif; ?>
|
||||
|
||||
<form id="<?= $formname ?>" name="<?= $formname ?>" method="post">
|
||||
<input name="input_id" type="hidden" value="<?= $input_role["id"] ?>">
|
||||
@@ -44,5 +59,43 @@ if ($messages !== null) {
|
||||
<div>
|
||||
<? input($translation->get("description"), "input_description", "text", $input_role["description"], 100) ?>
|
||||
</div>
|
||||
<tr>
|
||||
<div class="label">Verknüpfte Einrichtungen</div>
|
||||
<div class="einricht-link bc-select-ui ui fluid multiple search selection dropdown" style="clear:both; display:inline-block;">
|
||||
<input type="hidden" name="linked_einrichts">
|
||||
<i class="dropdown icon"></i>
|
||||
<div class="default text">Einrichtungen auswählen…</div>
|
||||
<div class="menu">
|
||||
<?php foreach ($allEinrichts as $e): ?>
|
||||
<div class="item" data-value="<?= (int)$e['id'] ?>">
|
||||
<?= htmlspecialchars($e['description']) ?>
|
||||
</div>
|
||||
<?php endforeach; ?>
|
||||
</div>
|
||||
</div>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
|
||||
<script type="text/javascript" src="/plugins/jquery/jquery-3.5.1.min.js"></script>
|
||||
<script type="text/javascript" src="/plugins/Semantic-UI-master/semantic.min.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="/plugins/Semantic-UI-master/bc-semantic.css?time=<?= filemtime($_SERVER['DOCUMENT_ROOT'] . '/plugins/Semantic-UI-master/bc-semantic.css') ?>">
|
||||
<script>
|
||||
var $y = jQuery.noConflict();
|
||||
$y(document).ready(function () {
|
||||
var $drop = $y('.einricht-link.ui.fluid.multiple.dropdown');
|
||||
var $hidden = $y('input[name="linked_einrichts"]');
|
||||
|
||||
$drop.dropdown({
|
||||
onChange: function (value) {
|
||||
$hidden.val(value);
|
||||
}
|
||||
});
|
||||
|
||||
var preselect = <?= json_encode($preselect) ?>.map(String);
|
||||
if (preselect.length) {
|
||||
$drop.dropdown('set selected', preselect);
|
||||
$hidden.val(preselect.join(','));
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user