mirror of
https://github.com/Terranom674/Piwigo_Bratonien_Tools.git
synced 2026-09-19 21:04:33 +00:00
Compare commits
17 Commits
fix/adapte
...
fix/migrat
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3d5e6c82ea | ||
|
|
ae815bc077 | ||
|
|
936a1cf3c4 | ||
|
|
ff0c1e0bec | ||
|
|
a047fc0d83 | ||
|
|
2029059720 | ||
|
|
1eca236509 | ||
|
|
e464668343 | ||
|
|
47813b0b0e | ||
|
|
26af1b3019 | ||
|
|
b1b75676a8 | ||
|
|
12880b6c41 | ||
|
|
32abc7250d | ||
|
|
76de2b037c | ||
|
|
e2e82162c6 | ||
|
|
7a9eb1baa6 | ||
|
|
e800f11f64 |
@@ -104,7 +104,6 @@ function bratonien_tools_nc_connector_create_webdav_placeholder_from_wizard()
|
|||||||
$selected_ids = isset($state['directory_selected_fileids']) && is_array($state['directory_selected_fileids'])
|
$selected_ids = isset($state['directory_selected_fileids']) && is_array($state['directory_selected_fileids'])
|
||||||
? $state['directory_selected_fileids']
|
? $state['directory_selected_fileids']
|
||||||
: array();
|
: array();
|
||||||
$selected = array_values(array_filter($selected, function($path) { return $path !== ''; }));
|
|
||||||
if (!$selected) throw new RuntimeException('Bitte mindestens ein Nextcloud-Verzeichnis auswählen.');
|
if (!$selected) throw new RuntimeException('Bitte mindestens ein Nextcloud-Verzeichnis auswählen.');
|
||||||
|
|
||||||
$roots = array();
|
$roots = array();
|
||||||
@@ -112,9 +111,12 @@ function bratonien_tools_nc_connector_create_webdav_placeholder_from_wizard()
|
|||||||
{
|
{
|
||||||
$fileid = isset($selected_ids[$path]) ? (int)$selected_ids[$path] : 0;
|
$fileid = isset($selected_ids[$path]) ? (int)$selected_ids[$path] : 0;
|
||||||
if ($fileid < 1) throw new RuntimeException('Für ein ausgewähltes Nextcloud-Verzeichnis fehlt die eindeutige Datei-ID.');
|
if ($fileid < 1) throw new RuntimeException('Für ein ausgewähltes Nextcloud-Verzeichnis fehlt die eindeutige Datei-ID.');
|
||||||
|
$display_name = $path === ''
|
||||||
|
? (trim((string)($state['display_name'] ?? '')) !== '' ? trim((string)$state['display_name']) : $username)
|
||||||
|
: basename($path);
|
||||||
$roots[] = array(
|
$roots[] = array(
|
||||||
'fileid'=>$fileid,
|
'fileid'=>$fileid,
|
||||||
'display_name'=>basename($path),
|
'display_name'=>$display_name,
|
||||||
'webdav_path'=>$path,
|
'webdav_path'=>$path,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -126,7 +126,6 @@ function bratonien_tools_nc_wizard_save_sources_dispatch()
|
|||||||
$selected = isset($state['directory_selected']) && is_array($state['directory_selected'])
|
$selected = isset($state['directory_selected']) && is_array($state['directory_selected'])
|
||||||
? array_values(array_unique(array_map(function($path) { return trim((string)$path, '/'); }, $state['directory_selected'])))
|
? array_values(array_unique(array_map(function($path) { return trim((string)$path, '/'); }, $state['directory_selected'])))
|
||||||
: array();
|
: array();
|
||||||
$selected = array_values(array_filter($selected, function($path) { return $path !== ''; }));
|
|
||||||
if (!$selected)
|
if (!$selected)
|
||||||
{
|
{
|
||||||
throw new RuntimeException('Bitte mindestens ein Nextcloud-Verzeichnis auswählen.');
|
throw new RuntimeException('Bitte mindestens ein Nextcloud-Verzeichnis auswählen.');
|
||||||
@@ -143,9 +142,12 @@ function bratonien_tools_nc_wizard_save_sources_dispatch()
|
|||||||
{
|
{
|
||||||
throw new RuntimeException('Für eine Auswahl fehlt die eindeutige Nextcloud-Datei-ID. Bitte das Verzeichnis erneut auswählen.');
|
throw new RuntimeException('Für eine Auswahl fehlt die eindeutige Nextcloud-Datei-ID. Bitte das Verzeichnis erneut auswählen.');
|
||||||
}
|
}
|
||||||
|
$display_name = $path === ''
|
||||||
|
? (trim((string)($state['display_name'] ?? '')) !== '' ? trim((string)$state['display_name']) : (string)$state['username'])
|
||||||
|
: basename($path);
|
||||||
$roots[] = array(
|
$roots[] = array(
|
||||||
'fileid'=>$fileid,
|
'fileid'=>$fileid,
|
||||||
'display_name'=>basename($path),
|
'display_name'=>$display_name,
|
||||||
'webdav_path'=>$path,
|
'webdav_path'=>$path,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -156,9 +158,35 @@ function bratonien_tools_nc_wizard_save_sources_dispatch()
|
|||||||
$state['technical_source'] = 'WebDAV-Verzeichnisse ausgewählt';
|
$state['technical_source'] = 'WebDAV-Verzeichnisse ausgewählt';
|
||||||
$state['technical_error'] = '';
|
$state['technical_error'] = '';
|
||||||
$state['directory_selection_ready'] = false;
|
$state['directory_selection_ready'] = false;
|
||||||
|
|
||||||
|
if ((string)($state['editing_mode'] ?? '') === 'migrate')
|
||||||
|
{
|
||||||
|
$editing_id = (int)($state['editing_connection_id'] ?? 0);
|
||||||
|
$connection = $editing_id > 0 ? bratonien_tools_nc_connector_connection($editing_id, true) : null;
|
||||||
|
if (!$connection || (string)$connection['adapter'] !== 'local')
|
||||||
|
{
|
||||||
|
throw new RuntimeException('Die zu migrierende Legacy-Verbindung ist nicht mehr verfügbar.');
|
||||||
|
}
|
||||||
|
|
||||||
|
$migration = bratonien_tools_nc_connector_migration_state($connection);
|
||||||
|
if (empty($migration['ready']))
|
||||||
|
{
|
||||||
|
throw new RuntimeException('Die WebDAV-Migration kann noch nicht abgeschlossen werden. Es fehlen: '.implode(', ', $migration['missing']).'.');
|
||||||
|
}
|
||||||
|
|
||||||
|
$credentials = bratonien_tools_nc_connector_scoped_secret($connection);
|
||||||
|
$state['_api_key_id'] = (string)($credentials['api_key_id'] ?? '');
|
||||||
|
$state['_api_key_secret'] = (string)($credentials['api_key_secret'] ?? '');
|
||||||
|
$state['api_status'] = 'ok';
|
||||||
|
$state['api_error'] = '';
|
||||||
|
$state['step'] = 4;
|
||||||
bratonien_tools_nc_wizard_store($state);
|
bratonien_tools_nc_wizard_store($state);
|
||||||
|
|
||||||
return array('message'=>'WebDAV-Verzeichnisse wurden übernommen. Die Verbindung ist für den parallelen Testweg vorbereitet.');
|
return array('message'=>'WebDAV-Quelle wurde übernommen. Mit „Migration starten“ wird jetzt der WebDAV-Nachfolger angelegt; die Legacy-Verbindung bleibt als Fallback erhalten.');
|
||||||
|
}
|
||||||
|
|
||||||
|
bratonien_tools_nc_wizard_store($state);
|
||||||
|
return array('message'=>'WebDAV-Verzeichnisse wurden übernommen. Die Verbindung ist für den nächsten Einrichtungsschritt vorbereitet.');
|
||||||
}
|
}
|
||||||
|
|
||||||
function bratonien_tools_nc_wizard_finish_dispatch()
|
function bratonien_tools_nc_wizard_finish_dispatch()
|
||||||
|
|||||||
@@ -6,11 +6,18 @@ if (!defined('PHPWG_ROOT_PATH'))
|
|||||||
|
|
||||||
if (isset($GLOBALS['template']) && is_object($GLOBALS['template']) && method_exists($GLOBALS['template'], 'func_combine_script'))
|
if (isset($GLOBALS['template']) && is_object($GLOBALS['template']) && method_exists($GLOBALS['template'], 'func_combine_script'))
|
||||||
{
|
{
|
||||||
|
$script_version = function_exists('bratonien_tools_current_version') ? bratonien_tools_current_version() : '0.9.6.15';
|
||||||
$GLOBALS['template']->func_combine_script(array(
|
$GLOBALS['template']->func_combine_script(array(
|
||||||
'id'=>'bratonien_nc_connector_edit_v2',
|
'id'=>'bratonien_nc_connector_edit_v2',
|
||||||
'path'=>BRATONIEN_TOOLS_PATH.'js/nc_connector_edit_v2.js',
|
'path'=>BRATONIEN_TOOLS_PATH.'js/nc_connector_edit_v2.js',
|
||||||
'load'=>'footer',
|
'load'=>'footer',
|
||||||
'version'=>function_exists('bratonien_tools_current_version') ? bratonien_tools_current_version() : '0.9.6.10',
|
'version'=>$script_version,
|
||||||
|
));
|
||||||
|
$GLOBALS['template']->func_combine_script(array(
|
||||||
|
'id'=>'bratonien_nc_connector_source_ui',
|
||||||
|
'path'=>BRATONIEN_TOOLS_PATH.'js/nc_connector_source_ui.js',
|
||||||
|
'load'=>'footer',
|
||||||
|
'version'=>$script_version,
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
217
js/nc_connector_source_ui.js
Normal file
217
js/nc_connector_source_ui.js
Normal file
@@ -0,0 +1,217 @@
|
|||||||
|
(function () {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
function escapeHtml(value) {
|
||||||
|
return String(value == null ? '' : value).replace(/[&<>"']/g, function (c) {
|
||||||
|
return {'&':'&','<':'<','>':'>','"':'"',"'":'''}[c];
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function fieldNodes(form, fieldName) {
|
||||||
|
return [].slice.call(form.querySelectorAll('[name="'+fieldName.replace(/"/g, '\\"')+'"]'));
|
||||||
|
}
|
||||||
|
|
||||||
|
function clearPickerErrors(form) {
|
||||||
|
[].slice.call(form.querySelectorAll('[data-source-picker-error]')).forEach(function (node) { node.remove(); });
|
||||||
|
[].slice.call(form.querySelectorAll('[data-source-picker-invalid="1"]')).forEach(function (field) {
|
||||||
|
field.removeAttribute('data-source-picker-invalid');
|
||||||
|
if (field.getAttribute('aria-invalid') === 'true') field.removeAttribute('aria-invalid');
|
||||||
|
field.style.borderColor = '';
|
||||||
|
field.style.boxShadow = '';
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function showPickerError(form, data) {
|
||||||
|
clearPickerErrors(form);
|
||||||
|
var message = data && data.message ? data.message : 'Die Nextcloud-Ordnerauswahl konnte nicht gestartet werden.';
|
||||||
|
var fields = data && Array.isArray(data.fields) ? data.fields : [];
|
||||||
|
|
||||||
|
var summary = document.createElement('div');
|
||||||
|
summary.dataset.sourcePickerError = '1';
|
||||||
|
summary.className = 'bratonien-main-cache__warning';
|
||||||
|
summary.style.margin = '0 0 1rem';
|
||||||
|
summary.style.padding = '.75rem';
|
||||||
|
summary.style.border = '1px solid currentColor';
|
||||||
|
summary.innerHTML = '<strong>Ordnerauswahl nicht möglich:</strong> '+escapeHtml(message);
|
||||||
|
form.insertBefore(summary, form.firstChild);
|
||||||
|
|
||||||
|
var first = null;
|
||||||
|
fields.forEach(function (fieldName) {
|
||||||
|
fieldNodes(form, fieldName).forEach(function (field) {
|
||||||
|
field.dataset.sourcePickerInvalid = '1';
|
||||||
|
field.setAttribute('aria-invalid', 'true');
|
||||||
|
field.style.borderColor = '#d65a5a';
|
||||||
|
field.style.boxShadow = '0 0 0 1px #d65a5a';
|
||||||
|
if (!first) first = field;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
if (first) {
|
||||||
|
first.scrollIntoView({block:'center', behavior:'smooth'});
|
||||||
|
window.setTimeout(function () { first.focus(); }, 150);
|
||||||
|
} else {
|
||||||
|
summary.scrollIntoView({block:'center', behavior:'smooth'});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function jsonResponse(response) {
|
||||||
|
return response.json().then(function (data) {
|
||||||
|
if (!response.ok || !data.ok) throw data;
|
||||||
|
return data;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function startSourcePicker(form, button) {
|
||||||
|
clearPickerErrors(form);
|
||||||
|
if (!form.reportValidity()) return;
|
||||||
|
|
||||||
|
button.disabled = true;
|
||||||
|
var originalText = button.textContent;
|
||||||
|
button.textContent = 'Verbindung prüfen …';
|
||||||
|
|
||||||
|
var saveBody = new FormData(form);
|
||||||
|
fetch('plugins/bratonien_tools/nc-connector-edit-save.php', {
|
||||||
|
method:'POST',
|
||||||
|
credentials:'same-origin',
|
||||||
|
cache:'no-store',
|
||||||
|
headers:{'Accept':'application/json'},
|
||||||
|
body:saveBody
|
||||||
|
})
|
||||||
|
.then(jsonResponse)
|
||||||
|
.then(function () {
|
||||||
|
button.textContent = 'Nextcloud-Ordner laden …';
|
||||||
|
var pickerBody = new FormData();
|
||||||
|
var token = form.querySelector('input[name="pwg_token"]');
|
||||||
|
var id = form.querySelector('input[name="connection_id"]');
|
||||||
|
pickerBody.append('pwg_token', token ? token.value : '');
|
||||||
|
pickerBody.append('connection_id', id ? id.value : '');
|
||||||
|
return fetch('plugins/bratonien_tools/nc-connector-source-picker-start.php', {
|
||||||
|
method:'POST',
|
||||||
|
credentials:'same-origin',
|
||||||
|
cache:'no-store',
|
||||||
|
headers:{'Accept':'application/json'},
|
||||||
|
body:pickerBody
|
||||||
|
}).then(jsonResponse);
|
||||||
|
})
|
||||||
|
.then(function () {
|
||||||
|
try {
|
||||||
|
sessionStorage.setItem('bratonienNcWizardMode', 'migrate');
|
||||||
|
sessionStorage.setItem('bratonienNcWizardOpen', '1');
|
||||||
|
} catch (e) {}
|
||||||
|
window.location.reload();
|
||||||
|
})
|
||||||
|
.catch(function (error) {
|
||||||
|
showPickerError(form, error && typeof error === 'object' ? error : {message:String(error), fields:[]});
|
||||||
|
button.disabled = false;
|
||||||
|
button.textContent = originalText;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function enhanceMigrationButtons(root) {
|
||||||
|
[].slice.call(root.querySelectorAll('button[value="nc_connector_migrate_start"]')).forEach(function (button) {
|
||||||
|
button.textContent = 'Nextcloud-Ordner auswählen & migrieren';
|
||||||
|
button.title = 'Die WebDAV-Quelle wird im Nextcloud-Ordnerbrowser ausgewählt. Der bestehende SMB-/Legacy-Speicher wird nicht als WebDAV-Quelle übernommen.';
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function enhanceEditor(root) {
|
||||||
|
var form = root.querySelector('[data-edit-v2-form]');
|
||||||
|
if (!form || form.dataset.sourceUiEnhanced === '1') return;
|
||||||
|
form.dataset.sourceUiEnhanced = '1';
|
||||||
|
|
||||||
|
var headings = [].slice.call(form.querySelectorAll('h5'));
|
||||||
|
var webdavHeading = headings.find(function (node) {
|
||||||
|
return (node.textContent || '').trim() === 'Nextcloud / WebDAV';
|
||||||
|
});
|
||||||
|
var legacyHeading = headings.find(function (node) {
|
||||||
|
return (node.textContent || '').trim() === 'Bestehender Legacy-Weg';
|
||||||
|
});
|
||||||
|
var storageHeading = headings.find(function (node) {
|
||||||
|
return (node.textContent || '').trim() === 'Speicherorte';
|
||||||
|
});
|
||||||
|
var storageList = form.querySelector('[data-storage-list]');
|
||||||
|
var addStorage = form.querySelector('[data-add-storage]');
|
||||||
|
|
||||||
|
if (webdavHeading && !form.querySelector('[data-webdav-source-picker]')) {
|
||||||
|
var webdavGrid = webdavHeading.nextElementSibling;
|
||||||
|
while (webdavGrid && !webdavGrid.classList.contains('bratonien-form-grid')) webdavGrid = webdavGrid.nextElementSibling;
|
||||||
|
if (webdavGrid) {
|
||||||
|
var picker = document.createElement('div');
|
||||||
|
picker.dataset.webdavSourcePicker = '1';
|
||||||
|
picker.style.margin = '.8rem 0 1rem';
|
||||||
|
picker.innerHTML = '<p class="bratonien-base-note" style="margin:.25rem 0 .5rem"><strong>WebDAV-Quelle:</strong> Du musst keinen Pfad kennen. Die Ordner des oben eingetragenen Nextcloud-Benutzers werden automatisch geladen und können anschließend ausgewählt werden.</p>';
|
||||||
|
var button = document.createElement('button');
|
||||||
|
button.type = 'button';
|
||||||
|
button.className = 'buttonLike';
|
||||||
|
button.textContent = 'Nextcloud-Ordner automatisch auswählen';
|
||||||
|
button.addEventListener('click', function () { startSourcePicker(form, button); });
|
||||||
|
picker.appendChild(button);
|
||||||
|
webdavGrid.insertAdjacentElement('afterend', picker);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (legacyHeading && !form.querySelector('[data-webdav-source-note]')) {
|
||||||
|
var note = document.createElement('p');
|
||||||
|
note.dataset.webdavSourceNote = '1';
|
||||||
|
note.className = 'bratonien-main-cache__warning';
|
||||||
|
note.innerHTML = '<strong>Wichtig:</strong> Der folgende SMB-/lokale Speicher gehört ausschließlich zum bisherigen Legacy-Fallback. Er wird <strong>nicht</strong> als WebDAV-Quelle übernommen.';
|
||||||
|
legacyHeading.insertAdjacentElement('beforebegin', note);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (storageHeading && storageList && addStorage) {
|
||||||
|
storageHeading.textContent = 'Legacy-Speicher (nur Fallback)';
|
||||||
|
|
||||||
|
var details = document.createElement('details');
|
||||||
|
details.dataset.legacyStorageTechnical = '1';
|
||||||
|
details.style.marginTop = '.75rem';
|
||||||
|
var summary = document.createElement('summary');
|
||||||
|
summary.textContent = 'Technische Legacy-Speicherzuordnung bearbeiten';
|
||||||
|
details.appendChild(summary);
|
||||||
|
|
||||||
|
var info = document.createElement('p');
|
||||||
|
info.className = 'bratonien-base-note';
|
||||||
|
info.textContent = 'Diese Felder betreffen nur den alten Fallback-Weg. Für WebDAV werden keine SMB-Adressen oder lokalen Mount-Pfade eingegeben.';
|
||||||
|
details.appendChild(info);
|
||||||
|
|
||||||
|
storageHeading.insertAdjacentElement('beforebegin', details);
|
||||||
|
details.appendChild(storageHeading);
|
||||||
|
details.appendChild(storageList);
|
||||||
|
details.appendChild(addStorage);
|
||||||
|
|
||||||
|
addStorage.textContent = 'Legacy-Speicher manuell hinzufügen';
|
||||||
|
addStorage.title = 'Nur für den alten Legacy-Fallback. WebDAV-Ordner werden im Nextcloud-Ordnerbrowser ausgewählt.';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function enhance(root) {
|
||||||
|
if (!root || root.nodeType !== 1) return;
|
||||||
|
enhanceMigrationButtons(root);
|
||||||
|
if (root.matches && root.matches('#bratonien-nc-connection-edit-v2')) enhanceEditor(root);
|
||||||
|
var dialog = root.querySelector ? root.querySelector('#bratonien-nc-connection-edit-v2') : null;
|
||||||
|
if (dialog) enhanceEditor(dialog);
|
||||||
|
}
|
||||||
|
|
||||||
|
function start() {
|
||||||
|
var section = document.getElementById('nc-connector');
|
||||||
|
if (!section) return;
|
||||||
|
|
||||||
|
enhance(section);
|
||||||
|
enhanceMigrationButtons(document);
|
||||||
|
|
||||||
|
var observer = new MutationObserver(function (mutations) {
|
||||||
|
mutations.forEach(function (mutation) {
|
||||||
|
[].slice.call(mutation.addedNodes || []).forEach(function (node) {
|
||||||
|
if (node && node.nodeType === 1) enhance(node);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
var dialog = document.getElementById('bratonien-nc-connection-edit-v2');
|
||||||
|
if (dialog) enhanceEditor(dialog);
|
||||||
|
enhanceMigrationButtons(document);
|
||||||
|
});
|
||||||
|
|
||||||
|
observer.observe(document.body, {childList:true, subtree:true});
|
||||||
|
}
|
||||||
|
|
||||||
|
if (document.readyState === 'loading') document.addEventListener('DOMContentLoaded', start);
|
||||||
|
else start();
|
||||||
|
})();
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
/*
|
/*
|
||||||
Plugin Name: Bratonien Tools
|
Plugin Name: Bratonien Tools
|
||||||
Version: 0.9.6.14
|
Version: 0.9.6.18
|
||||||
Description: Erweiterbare Administrationswerkzeuge fuer die Bratonien-Piwigo-Installation.
|
Description: Erweiterbare Administrationswerkzeuge fuer die Bratonien-Piwigo-Installation.
|
||||||
Plugin URI: https://github.com/Terranom674/Piwigo_Bratonien_Tools
|
Plugin URI: https://github.com/Terranom674/Piwigo_Bratonien_Tools
|
||||||
Author: Bratonien
|
Author: Bratonien
|
||||||
|
|||||||
104
nc-connector-source-picker-start.php
Normal file
104
nc-connector-source-picker-start.php
Normal file
@@ -0,0 +1,104 @@
|
|||||||
|
<?php
|
||||||
|
$piwigo_root = realpath(dirname(__DIR__, 2));
|
||||||
|
if ($piwigo_root === false)
|
||||||
|
{
|
||||||
|
http_response_code(500);
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
define('PHPWG_ROOT_PATH', rtrim($piwigo_root, DIRECTORY_SEPARATOR).DIRECTORY_SEPARATOR);
|
||||||
|
include_once(PHPWG_ROOT_PATH.'include/common.inc.php');
|
||||||
|
|
||||||
|
header('Content-Type: application/json; charset=utf-8');
|
||||||
|
header('Cache-Control: no-store, max-age=0');
|
||||||
|
|
||||||
|
function bratonien_tools_nc_source_picker_json($status, array $payload)
|
||||||
|
{
|
||||||
|
http_response_code((int)$status);
|
||||||
|
echo json_encode($payload, JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES);
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
function bratonien_tools_nc_source_picker_fail($message, array $fields = array())
|
||||||
|
{
|
||||||
|
bratonien_tools_nc_source_picker_json(422, array(
|
||||||
|
'ok'=>false,
|
||||||
|
'message'=>(string)$message,
|
||||||
|
'fields'=>array_values(array_unique($fields)),
|
||||||
|
));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!defined('BRATONIEN_TOOLS_PATH'))
|
||||||
|
{
|
||||||
|
bratonien_tools_nc_source_picker_json(404, array('ok'=>false, 'message'=>'Bratonien Tools ist nicht aktiv.', 'fields'=>array()));
|
||||||
|
}
|
||||||
|
if (!function_exists('is_admin') || !is_admin())
|
||||||
|
{
|
||||||
|
bratonien_tools_nc_source_picker_json(403, array('ok'=>false, 'message'=>'Administratorrechte erforderlich.', 'fields'=>array()));
|
||||||
|
}
|
||||||
|
if (($_SERVER['REQUEST_METHOD'] ?? '') !== 'POST')
|
||||||
|
{
|
||||||
|
bratonien_tools_nc_source_picker_json(405, array('ok'=>false, 'message'=>'Nur POST ist erlaubt.', 'fields'=>array()));
|
||||||
|
}
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
check_pwg_token();
|
||||||
|
require_once(BRATONIEN_TOOLS_PATH.'include/tool_registry.inc.php');
|
||||||
|
|
||||||
|
$id = (int)($_POST['connection_id'] ?? 0);
|
||||||
|
$connection = bratonien_tools_nc_connector_connection($id, true);
|
||||||
|
if (!$connection)
|
||||||
|
{
|
||||||
|
bratonien_tools_nc_source_picker_fail('Die zu bearbeitende Verbindung wurde nicht gefunden.');
|
||||||
|
}
|
||||||
|
if ((string)$connection['adapter'] !== 'local')
|
||||||
|
{
|
||||||
|
bratonien_tools_nc_source_picker_fail('Die automatische Migrationsauswahl ist nur für die bestehende Legacy-Verbindung vorgesehen.');
|
||||||
|
}
|
||||||
|
|
||||||
|
$config = isset($connection['config']) && is_array($connection['config']) ? $connection['config'] : array();
|
||||||
|
$credentials = bratonien_tools_nc_connector_scoped_secret($connection);
|
||||||
|
|
||||||
|
$base_url = trim((string)($config['nextcloud_url'] ?? ''));
|
||||||
|
$username = trim((string)($credentials['nextcloud_user'] ?? ''));
|
||||||
|
$password = (string)($credentials['nextcloud_password'] ?? '');
|
||||||
|
|
||||||
|
$missing = array();
|
||||||
|
if ($base_url === '') $missing[] = 'nc_nextcloud_url';
|
||||||
|
if ($username === '') $missing[] = 'nc_nextcloud_user';
|
||||||
|
if ($password === '') $missing[] = 'nc_nextcloud_password';
|
||||||
|
if ($missing)
|
||||||
|
{
|
||||||
|
bratonien_tools_nc_source_picker_fail(
|
||||||
|
'Für die automatische Ordnerauswahl müssen Nextcloud-Adresse, Benutzer und Passwort gespeichert sein.',
|
||||||
|
$missing
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
bratonien_tools_nc_connector_prepare_webdav_wizard_from_connection($connection, 'migrate');
|
||||||
|
|
||||||
|
$state = bratonien_tools_nc_wizard_state();
|
||||||
|
if ((int)($state['step'] ?? 0) !== 2 || empty($state['scan_ok']) || empty($state['directory_selection_ready']))
|
||||||
|
{
|
||||||
|
$detail = trim((string)($state['technical_error'] ?? ''));
|
||||||
|
bratonien_tools_nc_source_picker_fail(
|
||||||
|
$detail !== '' ? 'Die Nextcloud-Ordner konnten nicht geladen werden: '.$detail : 'Die Nextcloud-Ordner konnten nicht geladen werden.',
|
||||||
|
array('nc_nextcloud_url','nc_nextcloud_user','nc_nextcloud_password')
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
bratonien_tools_nc_source_picker_json(200, array(
|
||||||
|
'ok'=>true,
|
||||||
|
'message'=>'Nextcloud-Ordner wurden geladen. Die Auswahl wird geöffnet.',
|
||||||
|
'fields'=>array(),
|
||||||
|
));
|
||||||
|
}
|
||||||
|
catch (Throwable $e)
|
||||||
|
{
|
||||||
|
$message = trim($e->getMessage());
|
||||||
|
if ($message === '') $message = 'Die Nextcloud-Ordnerauswahl konnte nicht vorbereitet werden.';
|
||||||
|
bratonien_tools_nc_source_picker_fail(
|
||||||
|
$message,
|
||||||
|
array('nc_nextcloud_url','nc_nextcloud_user','nc_nextcloud_password')
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -165,7 +165,6 @@ try
|
|||||||
if (!is_dir($galleryRoot) && !mkdir($galleryRoot, 0755, true)) fail_webdav_reconcile('WebDAV-Galeriebereich konnte nicht angelegt werden.');
|
if (!is_dir($galleryRoot) && !mkdir($galleryRoot, 0755, true)) fail_webdav_reconcile('WebDAV-Galeriebereich konnte nicht angelegt werden.');
|
||||||
@chmod($galleryRoot, 0755);
|
@chmod($galleryRoot, 0755);
|
||||||
|
|
||||||
// Alte technische Wrapper unter ./galleries duerfen nicht als Piwigo-Alben auftauchen.
|
|
||||||
webdav_remove_generated_tree($legacyDefault, $legacyGalleryRoot);
|
webdav_remove_generated_tree($legacyDefault, $legacyGalleryRoot);
|
||||||
|
|
||||||
$sourceDir = $publicSourceRoot.'/connection-'.$id;
|
$sourceDir = $publicSourceRoot.'/connection-'.$id;
|
||||||
@@ -189,8 +188,9 @@ try
|
|||||||
{
|
{
|
||||||
$path = trim((string)($root['webdav_path'] ?? ''), '/');
|
$path = trim((string)($root['webdav_path'] ?? ''), '/');
|
||||||
$display = trim((string)($root['display_name'] ?? ''));
|
$display = trim((string)($root['display_name'] ?? ''));
|
||||||
if ($path === '' || $display === '' || preg_match('/[\t\r\n]/', $path.$display)) fail_webdav_reconcile('Eine gespeicherte WebDAV-Wurzel ist ungueltig.');
|
$runtimePath = $path === '' ? '/' : $path;
|
||||||
$rootLines[] = $path."\t".$display;
|
if ($display === '' || preg_match('/[\t\r\n]/', $runtimePath.$display)) fail_webdav_reconcile('Eine gespeicherte WebDAV-Wurzel ist ungueltig.');
|
||||||
|
$rootLines[] = $runtimePath."\t".$display;
|
||||||
}
|
}
|
||||||
file_put_contents($rootsPath, implode("\n", $rootLines)."\n", LOCK_EX);
|
file_put_contents($rootsPath, implode("\n", $rootLines)."\n", LOCK_EX);
|
||||||
@chmod($rootsPath, 0600);
|
@chmod($rootsPath, 0600);
|
||||||
|
|||||||
Reference in New Issue
Block a user