1875 lines
108 KiB
PHP
Executable File
1875 lines
108 KiB
PHP
Executable File
<?php $__env->startSection('title', 'Impostazioni'); ?>
|
|
|
|
<?php $__env->startSection('page_title', 'Impostazioni'); ?>
|
|
|
|
<?php $__env->startSection('breadcrumbs'); ?>
|
|
<li class="breadcrumb-item"><a href="<?php echo e(route('dashboard')); ?>">Dashboard</a></li>
|
|
<li class="breadcrumb-item active">Impostazioni</li>
|
|
<?php $__env->stopSection(); ?>
|
|
|
|
<?php $__env->startSection('content'); ?>
|
|
<div class="row">
|
|
<div class="col-md-3">
|
|
<div class="card card-secondary">
|
|
<div class="card-header">
|
|
<h3 class="card-title">Sezioni</h3>
|
|
</div>
|
|
<div class="list-group list-group-flush">
|
|
<a href="#applicazione" class="list-group-item list-group-item-action" data-toggle="tab">
|
|
<i class="nav-icon fas fa-cog mr-2"></i> Applicazione
|
|
</a>
|
|
<a href="#repository" class="list-group-item list-group-item-action" data-toggle="tab">
|
|
<i class="nav-icon fas fa-cloud mr-2"></i> Repository Remoti
|
|
</a>
|
|
<a href="#documenti" class="list-group-item list-group-item-action" data-toggle="tab">
|
|
<i class="nav-icon fas fa-file mr-2"></i> Repository Documenti
|
|
</a>
|
|
<a href="#logo" class="list-group-item list-group-item-action" data-toggle="tab">
|
|
<i class="nav-icon fas fa-image mr-2"></i> Logo
|
|
</a>
|
|
<a href="#email" class="list-group-item list-group-item-action" data-toggle="tab">
|
|
<i class="nav-icon fas fa-envelope mr-2"></i> Email
|
|
</a>
|
|
<a href="#calendario" class="list-group-item list-group-item-action" data-toggle="tab">
|
|
<i class="nav-icon fas fa-calendar-alt mr-2"></i> Calendario
|
|
</a>
|
|
<a href="#tipologie" class="list-group-item list-group-item-action" data-toggle="tab">
|
|
<i class="nav-icon fas fa-file mr-2"></i> Tipologie Documenti
|
|
</a>
|
|
<a href="#tipologie-eventi" class="list-group-item list-group-item-action" data-toggle="tab">
|
|
<i class="nav-icon fas fa-calendar mr-2"></i> Tipologie Eventi
|
|
</a>
|
|
<a href="#ruoli" class="list-group-item list-group-item-action" data-toggle="tab">
|
|
<i class="nav-icon fas fa-users-cog mr-2"></i> Tipi di Ruolo
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-9">
|
|
<div class="tab-content">
|
|
|
|
<div class="tab-pane" id="applicazione">
|
|
<div class="card card-primary">
|
|
<div class="card-header">
|
|
<h3 class="card-title">Configurazione Applicazione</h3>
|
|
</div>
|
|
<div class="card-body">
|
|
<p class="text-muted">Configura il nome e il testo visualizzato dall'applicazione.</p>
|
|
|
|
<?php if(session('success')): ?>
|
|
<div class="alert alert-success"><?php echo e(session('success')); ?></div>
|
|
<?php endif; ?>
|
|
|
|
<form method="POST" action="<?php echo e(route('impostazioni.app-settings.save')); ?>">
|
|
<?php echo csrf_field(); ?>
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<div class="form-group">
|
|
<label for="nome_applicazione">Nome Applicazione</label>
|
|
<input type="text" name="nome_applicazione" id="nome_applicazione" class="form-control"
|
|
value="<?php echo e(old('nome_applicazione', $appSettings->nome_applicazione ?? '')); ?>"
|
|
placeholder="es. Glastree">
|
|
<small class="text-muted">Nome mostrato nel titolo, sidebar e login</small>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<div class="form-group">
|
|
<label for="nome_organizzazione">Nome Organizzazione</label>
|
|
<input type="text" name="nome_organizzazione" id="nome_organizzazione" class="form-control"
|
|
value="<?php echo e(old('nome_organizzazione', $appSettings->nome_organizzazione ?? '')); ?>"
|
|
placeholder="es. Parrocchia Santa Maria">
|
|
<small class="text-muted">Nome organizzazione mostrato sotto il logo nel login</small>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="footer_text">Testo Footer</label>
|
|
<input type="text" name="footer_text" id="footer_text" class="form-control"
|
|
value="<?php echo e(old('footer_text', $appSettings->footer_text ?? '')); ?>"
|
|
placeholder="es. © 2026 Parrocchia Santa Maria">
|
|
<small class="text-muted">Lascia vuoto per usare il formato predefinito: © {anno} {nome_applicazione}</small>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<div class="form-group">
|
|
<label for="app_version">Versione Applicazione</label>
|
|
<input type="text" name="app_version" id="app_version" class="form-control"
|
|
value="<?php echo e(old('app_version', $appSettings->app_version ?? '')); ?>"
|
|
placeholder="es. 1.0.0">
|
|
<small class="text-muted">Versione mostrata nel footer</small>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<div class="form-group">
|
|
<label> </label>
|
|
<div class="custom-control custom-switch mt-2">
|
|
<input type="checkbox" class="custom-control-input" id="show_version" name="show_version" value="1"
|
|
<?php echo e(($appSettings->show_version ?? false) ? 'checked' : ''); ?>>
|
|
<label class="custom-control-label" for="show_version">Mostra versione nel footer</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="dashboard_welcome">Messaggio di Benvenuto (Dashboard)</label>
|
|
<textarea name="dashboard_welcome" id="dashboard_welcome" class="form-control" rows="3"
|
|
placeholder="Lascia vuoto per usare il messaggio predefinito"><?php echo e(old('dashboard_welcome', $appSettings->dashboard_welcome ?? '')); ?></textarea>
|
|
<small class="text-muted">Messaggio mostrato nella dashboard. Lascia vuoto per usare il testo predefinito.</small>
|
|
</div>
|
|
|
|
<button type="submit" class="btn btn-primary">
|
|
<i class="fas fa-save mr-1"></i> Salva Impostazioni
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="tab-pane" id="repository">
|
|
<div class="card card-primary">
|
|
<div class="card-header">
|
|
<h3 class="card-title"><i class="fas fa-cloud mr-2"></i> Repository Remoti</h3>
|
|
<div class="card-tools">
|
|
<button type="button" class="btn btn-sm btn-success" data-toggle="modal" data-target="#repoModal" onclick="resetRepoForm()">
|
|
<i class="fas fa-plus mr-1"></i> Nuovo Repository
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div class="card-body">
|
|
<p class="text-muted">Configura repository remoti (WebDAV, Google Drive) per archiviare documenti. Ogni repository appare come root separata nell'albero delle cartelle in Gestione Documenti.</p>
|
|
|
|
<?php if(session('success')): ?>
|
|
<div class="alert alert-success"><?php echo e(session('success')); ?></div>
|
|
<?php endif; ?>
|
|
<?php if(session('error')): ?>
|
|
<div class="alert alert-danger"><?php echo e(session('error')); ?></div>
|
|
<?php endif; ?>
|
|
|
|
<?php if($repositories->count() > 0): ?>
|
|
<div class="table-responsive">
|
|
<table class="table table-bordered table-hover table-sm" id="repoTable">
|
|
<thead>
|
|
<tr>
|
|
<th style="width:40px;">#</th>
|
|
<th>Nome</th>
|
|
<th>Tipo</th>
|
|
<th>Stato</th>
|
|
<th style="width:180px;">Azioni</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="repoSortable">
|
|
<?php $__currentLoopData = $repositories; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $repo): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
|
<tr data-id="<?php echo e($repo->id); ?>">
|
|
<td class="text-center handle" style="cursor:grab;"><i class="fas fa-grip-vertical text-muted"></i></td>
|
|
<td><strong><?php echo e($repo->nome); ?></strong></td>
|
|
<td>
|
|
<span class="badge badge-<?php echo e($repo->tipo === 'google_drive' ? 'danger' : 'secondary'); ?>">
|
|
<i class="fas <?php echo e($repo->tipo === 'google_drive' ? 'fa-google-drive' : 'fa-server'); ?> mr-1"></i>
|
|
<?php echo e(\App\Models\StorageRepository::etichettaTipo($repo->tipo)); ?>
|
|
|
|
</span>
|
|
</td>
|
|
<td>
|
|
<?php if($repo->is_active): ?>
|
|
<span class="badge badge-success">Attivo</span>
|
|
<?php else: ?>
|
|
<span class="badge badge-secondary">Disattivo</span>
|
|
<?php endif; ?>
|
|
</td>
|
|
<td>
|
|
<button type="button" class="btn btn-xs btn-info" onclick="editRepo(<?php echo e($repo->id); ?>)" title="Modifica">
|
|
<i class="fas fa-edit"></i>
|
|
</button>
|
|
<button type="button" class="btn btn-xs btn-success test-repo-btn" onclick="testRepo(<?php echo e($repo->id); ?>, this)" title="Test connessione">
|
|
<i class="fas fa-plug"></i>
|
|
</button>
|
|
<button type="button" class="btn btn-xs btn-danger" onclick="deleteRepo(<?php echo e($repo->id); ?>, '<?php echo e(addslashes($repo->nome)); ?>')" title="Elimina">
|
|
<i class="fas fa-trash"></i>
|
|
</button>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<?php else: ?>
|
|
<div class="text-center text-muted py-4">
|
|
<i class="fas fa-cloud fa-3x mb-3"></i>
|
|
<p class="mb-0">Nessun repository remoto configurato.</p>
|
|
<p class="mb-0">Clicca "Nuovo Repository" per aggiungere un server WebDAV o Google Drive.</p>
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|
|
|
|
<?php if($repositories->count() > 0): ?>
|
|
<div class="card card-secondary">
|
|
<div class="card-header">
|
|
<h3 class="card-title"><i class="fas fa-info-circle mr-2"></i> Come funziona</h3>
|
|
</div>
|
|
<div class="card-body">
|
|
<ul class="mb-0">
|
|
<li>Ogni repository configurato apparirà come <strong>root separata</strong> nella sidebar <strong>Gestione Documenti</strong>, sotto "Repository Remoti".</li>
|
|
<li>Puoi navigare i file e le cartelle di ogni repository remoto direttamente dall'interfaccia documenti.</li>
|
|
<li><strong>WebDAV</strong>: supporta server che parlano il protocollo WebDAV (es. NextCloud, ownCloud, Synology).</li>
|
|
<li><strong>Google Drive</strong>: richiede OAuth 2.0 con client ID, client secret e refresh token configurati nella <a href="https://console.cloud.google.com/" target="_blank">Google Cloud Console</a>.</li>
|
|
<li>Usa il pulsante <i class="fas fa-plug text-success"></i> <strong>Test</strong> per verificare la connettività dopo la configurazione.</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
|
|
|
|
<div class="tab-pane" id="documenti">
|
|
<div class="card card-primary">
|
|
<div class="card-header">
|
|
<h3 class="card-title">Repository Documenti</h3>
|
|
</div>
|
|
<div class="card-body">
|
|
<p class="text-muted">Configura il repository filesystem dove vengono salvati i documenti caricati.</p>
|
|
|
|
<?php
|
|
$currentDisk = $appSettings->documenti_storage_disk ?? 'local';
|
|
$currentPath = $appSettings->documenti_storage_path ?? 'documenti';
|
|
$absPath = storage_path('app/' . ($currentDisk === 'local' ? 'private/' : '') . $currentPath);
|
|
?>
|
|
|
|
<form method="POST" action="<?php echo e(route('impostazioni.app-settings.save')); ?>">
|
|
<?php echo csrf_field(); ?>
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<div class="form-group">
|
|
<label for="documenti_storage_disk">Disco di archiviazione</label>
|
|
<select name="documenti_storage_disk" id="documenti_storage_disk" class="form-control">
|
|
<option value="local" <?php echo e($currentDisk === 'local' ? 'selected' : ''); ?>>Locale (storage/app/private)</option>
|
|
<option value="public" <?php echo e($currentDisk === 'public' ? 'selected' : ''); ?>>Pubblico (storage/app/public)</option>
|
|
</select>
|
|
<small class="text-muted">Il disco predefinito per salvare i documenti</small>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<div class="form-group">
|
|
<label for="documenti_storage_path">Percorso relativo</label>
|
|
<input type="text" name="documenti_storage_path" id="documenti_storage_path" class="form-control"
|
|
value="<?php echo e($currentPath); ?>" placeholder="es. documenti">
|
|
<small class="text-muted">Sottocartella all'interno del disco</small>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="alert alert-info">
|
|
<i class="fas fa-info-circle mr-2"></i>
|
|
<strong>Percorso assoluto calcolato:</strong>
|
|
<code><?php echo e($absPath); ?></code>
|
|
<br>
|
|
<small class="text-muted">I nuovi documenti verranno salvati in questa directory.</small>
|
|
</div>
|
|
|
|
<?php if(session('path_changed')): ?>
|
|
<?php
|
|
$migrateCount = session('migration_count', 0);
|
|
$oldD = session('old_storage_disk', 'local');
|
|
$oldP = session('old_storage_path', 'documenti');
|
|
$newD = session('new_storage_disk', 'local');
|
|
$newP = session('new_storage_path', 'documenti');
|
|
?>
|
|
<div class="alert alert-warning">
|
|
<i class="fas fa-exclamation-triangle mr-2"></i>
|
|
<strong>Percorso modificato!</strong>
|
|
<p class="mb-2">La nuova directory <code><?php echo e($newD); ?>://<?php echo e($newP); ?></code> è stata creata.
|
|
<?php if($migrateCount > 0): ?>
|
|
Ci sono <strong><?php echo e($migrateCount); ?></strong> file nella vecchia posizione <code><?php echo e($oldD); ?>://<?php echo e($oldP); ?></code>.</p>
|
|
<form method="POST" action="<?php echo e(route('impostazioni.migrate-percorso')); ?>" class="d-inline" onsubmit="return confirm('Spostare <?php echo e($migrateCount); ?> file? Questa operazione potrebbe richiedere alcuni secondi.');">
|
|
<?php echo csrf_field(); ?>
|
|
<input type="hidden" name="old_storage_disk" value="<?php echo e($oldD); ?>">
|
|
<input type="hidden" name="old_storage_path" value="<?php echo e($oldP); ?>">
|
|
<input type="hidden" name="new_storage_disk" value="<?php echo e($newD); ?>">
|
|
<input type="hidden" name="new_storage_path" value="<?php echo e($newP); ?>">
|
|
<button type="submit" class="btn btn-warning">
|
|
<i class="fas fa-exchange-alt mr-1"></i> Sposta <?php echo e($migrateCount); ?> file nel nuovo percorso
|
|
</button>
|
|
<a href="/impostazioni#documenti" class="btn btn-secondary ml-2">
|
|
<i class="fas fa-times mr-1"></i> Ignora
|
|
</a>
|
|
</form>
|
|
<?php else: ?>
|
|
<p class="mb-0">Nessun file da spostare.</p>
|
|
<?php endif; ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<button type="submit" class="btn btn-primary">
|
|
<i class="fas fa-save mr-1"></i> Salva Impostazioni
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="tab-pane" id="logo">
|
|
<div class="card card-primary">
|
|
<div class="card-header">
|
|
<h3 class="card-title">Logo</h3>
|
|
</div>
|
|
<div class="card-body">
|
|
<p class="text-muted">Carica il logo dell'applicazione. Verrà visualizzato nella pagina di login e nella sidebar.</p>
|
|
|
|
<?php if(session('success')): ?>
|
|
<div class="alert alert-success"><?php echo e(session('success')); ?></div>
|
|
<?php endif; ?>
|
|
|
|
<form method="POST" action="<?php echo e(route('impostazioni.logo.upload')); ?>" enctype="multipart/form-data">
|
|
<?php echo csrf_field(); ?>
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<div class="form-group">
|
|
<label>Logo Grande (pagina login)</label>
|
|
<div class="text-center p-3 border rounded bg-light mb-2" style="min-height: 120px;">
|
|
<?php if($appSettings && $appSettings->getLogoPath()): ?>
|
|
<img src="<?php echo e($appSettings->getLogoPath()); ?>" alt="Logo" style="max-height: 100px; max-width: 100%;">
|
|
<?php else: ?>
|
|
<span class="text-muted">Nessun logo caricato</span>
|
|
<?php endif; ?>
|
|
</div>
|
|
<input type="file" name="logo" class="form-control" accept="image/*">
|
|
<small class="text-muted">PNG, JPG, GIF, SVG - Max 2MB</small>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<div class="form-group">
|
|
<label>Logo Piccolo (sidebar)</label>
|
|
<div class="text-center p-3 border rounded bg-light mb-2" style="min-height: 80px;">
|
|
<?php if($appSettings && $appSettings->getLogoSmallPath()): ?>
|
|
<img src="<?php echo e($appSettings->getLogoSmallPath()); ?>" alt="Logo Small" style="max-height: 60px; max-width: 100%;">
|
|
<?php else: ?>
|
|
<span class="text-muted">Nessun logo caricato</span>
|
|
<?php endif; ?>
|
|
</div>
|
|
<input type="file" name="logo_small" class="form-control" accept="image/*">
|
|
<small class="text-muted">PNG, JPG, GIF, SVG - Max 512KB</small>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<button type="submit" class="btn btn-primary">
|
|
<i class="fas fa-save mr-1"></i> Salva Logo
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="tab-pane" id="email">
|
|
<div class="card card-secondary">
|
|
<div class="card-header">
|
|
<h3 class="card-title">Sezioni Email</h3>
|
|
</div>
|
|
<div class="card-body p-0">
|
|
<ul class="nav nav-pills p-2">
|
|
<li class="nav-item"><a href="#email-imap" class="nav-link active" data-toggle="tab">Server IMAP</a></li>
|
|
<li class="nav-item"><a href="#email-smtp" class="nav-link" data-toggle="tab">Server SMTP</a></li>
|
|
<li class="nav-item"><a href="#email-account" class="nav-link" data-toggle="tab">Account</a></li>
|
|
<li class="nav-item"><a href="#email-sync" class="nav-link" data-toggle="tab">Sincronizzazione</a></li>
|
|
<li class="nav-item"><a href="#email-firma" class="nav-link" data-toggle="tab">Firma</a></li>
|
|
<li class="nav-item"><a href="#email-mittenti" class="nav-link" data-toggle="tab">Mittenti Aggiuntivi</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<form method="POST" action="<?php echo e(route('impostazioni.email.save')); ?>">
|
|
<?php echo csrf_field(); ?>
|
|
<input type="hidden" name="id" value="<?php echo e($emailSettings->id ?? 1); ?>">
|
|
|
|
<div class="tab-content">
|
|
<div class="tab-pane active" id="email-imap">
|
|
<div class="card card-primary">
|
|
<div class="card-header">
|
|
<h3 class="card-title">Configurazione Server IMAP</h3>
|
|
</div>
|
|
<div class="card-body">
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<div class="form-group">
|
|
<label for="imap_host">Host IMAP</label>
|
|
<input type="text" name="imap_host" id="imap_host" class="form-control"
|
|
value="<?php echo e($emailSettings->imap_host ?? 'imap.gmail.com'); ?>"
|
|
placeholder="es. imap.gmail.com">
|
|
<small class="text-muted">Gmail: imap.gmail.com | Outlook: outlook.office365.com</small>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-3">
|
|
<div class="form-group">
|
|
<label for="imap_port">Porta</label>
|
|
<input type="number" name="imap_port" id="imap_port" class="form-control"
|
|
value="<?php echo e($emailSettings->imap_port ?? 993); ?>">
|
|
</div>
|
|
</div>
|
|
<div class="col-md-3">
|
|
<div class="form-group">
|
|
<label for="imap_encryption">Crittografia</label>
|
|
<select name="imap_encryption" id="imap_encryption" class="form-control">
|
|
<option value="ssl" <?php echo e(($emailSettings->imap_encryption ?? 'ssl') == 'ssl' ? 'selected' : ''); ?>>SSL</option>
|
|
<option value="tls" <?php echo e(($emailSettings->imap_encryption ?? '') == 'tls' ? 'selected' : ''); ?>>TLS</option>
|
|
<option value="none" <?php echo e(($emailSettings->imap_encryption ?? '') == 'none' ? 'selected' : ''); ?>>Nessuna</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="tab-pane" id="email-smtp">
|
|
<div class="card card-primary">
|
|
<div class="card-header">
|
|
<h3 class="card-title">Configurazione Server SMTP (per invio email)</h3>
|
|
</div>
|
|
<div class="card-body">
|
|
<div class="alert alert-info">
|
|
<i class="fas fa-info-circle"></i>
|
|
<strong>Nota:</strong> Per inviare email devi configurare il server SMTP.
|
|
Per Gmail, usa <code>smtp.gmail.com</code> sulla porta <code>587</code> con TLS
|
|
e genera una <a href="https://support.google.com/accounts/answer/185833" target="_blank">App Password</a>.
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<div class="form-group">
|
|
<label for="smtp_host">Host SMTP</label>
|
|
<input type="text" name="smtp_host" id="smtp_host" class="form-control"
|
|
value="<?php echo e($emailSettings->smtp_host ?? 'smtp.gmail.com'); ?>"
|
|
placeholder="es. smtp.gmail.com">
|
|
</div>
|
|
</div>
|
|
<div class="col-md-3">
|
|
<div class="form-group">
|
|
<label for="smtp_port">Porta</label>
|
|
<input type="number" name="smtp_port" id="smtp_port" class="form-control"
|
|
value="<?php echo e($emailSettings->smtp_port ?? 587); ?>">
|
|
</div>
|
|
</div>
|
|
<div class="col-md-3">
|
|
<div class="form-group">
|
|
<label for="smtp_encryption">Crittografia</label>
|
|
<select name="smtp_encryption" id="smtp_encryption" class="form-control">
|
|
<option value="tls" <?php echo e(($emailSettings->smtp_encryption ?? 'tls') == 'tls' ? 'selected' : ''); ?>>TLS</option>
|
|
<option value="ssl" <?php echo e(($emailSettings->smtp_encryption ?? '') == 'ssl' ? 'selected' : ''); ?>>SSL</option>
|
|
<option value="none" <?php echo e(($emailSettings->smtp_encryption ?? '') == 'none' ? 'selected' : ''); ?>>Nessuna</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<div class="form-group">
|
|
<label for="smtp_username">Username SMTP</label>
|
|
<input type="text" name="smtp_username" id="smtp_username" class="form-control"
|
|
value="<?php echo e($emailSettings->smtp_username ?? ''); ?>"
|
|
placeholder="lascia vuoto per usare l'account IMAP">
|
|
<small class="text-muted">Generalmente uguale all'account email</small>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<div class="form-group">
|
|
<label for="smtp_password">Password SMTP / App Password</label>
|
|
<input type="password" name="smtp_password" id="smtp_password" class="form-control"
|
|
placeholder="<?php echo e($emailSettings->smtp_password ? '••••••••' : ''); ?>">
|
|
<small class="text-muted">Lascia vuoto per usare la password IMAP</small>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="tab-pane" id="email-account">
|
|
<div class="card card-primary">
|
|
<div class="card-header">
|
|
<h3 class="card-title">Credenziali Account</h3>
|
|
</div>
|
|
<div class="card-body">
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<div class="form-group">
|
|
<label for="imap_username">Username/Email</label>
|
|
<input type="text" name="imap_username" id="imap_username" class="form-control"
|
|
value="<?php echo e($emailSettings->imap_username ?? ''); ?>"
|
|
placeholder="es. tuo@gmail.com">
|
|
<small class="text-muted">Per Gmail usa l'indirizzo completo</small>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<div class="form-group">
|
|
<label for="imap_password">Password / App Password</label>
|
|
<input type="password" name="imap_password" id="imap_password" class="form-control" placeholder="">
|
|
<small class="text-muted">
|
|
<a href="https://support.google.com/accounts/answer/185833" target="_blank">Per Gmail: genera una App Password</a>
|
|
</small>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<hr>
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<div class="form-group">
|
|
<label for="email_address">Email Indirizzo</label>
|
|
<input type="email" name="email_address" id="email_address" class="form-control"
|
|
value="<?php echo e($emailSettings->email_address ?? ''); ?>">
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<div class="form-group">
|
|
<label for="email_name">Nome Visualizzato</label>
|
|
<input type="text" name="email_name" id="email_name" class="form-control"
|
|
value="<?php echo e($emailSettings->email_name ?? ''); ?>"
|
|
placeholder="es. Nome Cognome">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<div class="form-group">
|
|
<label for="reply_to">Email Risposta (Reply-To)</label>
|
|
<input type="email" name="reply_to" id="reply_to" class="form-control"
|
|
value="<?php echo e($emailSettings->reply_to ?? ''); ?>">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="tab-pane" id="email-sync">
|
|
<div class="card card-primary">
|
|
<div class="card-header">
|
|
<h3 class="card-title">Sincronizzazione</h3>
|
|
</div>
|
|
<div class="card-body">
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<div class="form-group">
|
|
<label for="sync_interval_minutes">Intervallo Sync (minuti)</label>
|
|
<select name="sync_interval_minutes" id="sync_interval_minutes" class="form-control">
|
|
<option value="1" <?php echo e(($emailSettings->sync_interval_minutes ?? 5) == 1 ? 'selected' : ''); ?>>1 minuto</option>
|
|
<option value="5" <?php echo e(($emailSettings->sync_interval_minutes ?? 5) == 5 ? 'selected' : ''); ?>>5 minuti</option>
|
|
<option value="15" <?php echo e(($emailSettings->sync_interval_minutes ?? 5) == 15 ? 'selected' : ''); ?>>15 minuti</option>
|
|
<option value="30" <?php echo e(($emailSettings->sync_interval_minutes ?? 5) == 30 ? 'selected' : ''); ?>>30 minuti</option>
|
|
<option value="60" <?php echo e(($emailSettings->sync_interval_minutes ?? 5) == 60 ? 'selected' : ''); ?>>1 ora</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<div class="form-group">
|
|
<label>Stato Connessione</label>
|
|
<div class="mt-2">
|
|
<?php if($emailSettings->last_sync_at): ?>
|
|
<span class="badge badge-success">
|
|
<i class="fas fa-check-circle"></i> Ultimo sync: <?php echo e($emailSettings->last_sync_at->format('d/m/Y H:i')); ?>
|
|
|
|
</span>
|
|
<?php else: ?>
|
|
<span class="badge badge-secondary">
|
|
<i class="fas fa-clock"></i> Mai sincronizzato
|
|
</span>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="custom-control custom-switch">
|
|
<input type="checkbox" class="custom-control-input" id="is_active"
|
|
name="is_active" value="1" <?php echo e(($emailSettings->is_active ?? false) ? 'checked' : ''); ?>>
|
|
<label class="custom-control-label" for="is_active">Account Email Attivo</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="tab-pane" id="email-firma">
|
|
<div class="card card-primary">
|
|
<div class="card-header">
|
|
<h3 class="card-title">Firma Email</h3>
|
|
</div>
|
|
<div class="card-body">
|
|
<div class="form-group">
|
|
<div class="custom-control custom-switch">
|
|
<input type="checkbox" class="custom-control-input" id="signature_enabled"
|
|
name="signature_enabled" value="1" <?php echo e(($emailSettings->signature_enabled ?? true) ? 'checked' : ''); ?>>
|
|
<label class="custom-control-label" for="signature_enabled">Attiva firma automatica</label>
|
|
</div>
|
|
<small class="text-muted">Quando attivo, la firma verrà aggiunta in fondo a ogni email inviata</small>
|
|
</div>
|
|
<hr>
|
|
<div class="form-group">
|
|
<label for="signature">Testo Firma (formato HTML)</label>
|
|
<div id="signature-editor" style="height: 200px;"></div>
|
|
<input type="hidden" name="signature" id="signature_input" value="<?php echo e($emailSettings->signature ?? ''); ?>">
|
|
<small class="text-muted">Usa il riquadro sopra per comporre la tua firma. HTML supportato.</small>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="tab-pane" id="email-mittenti">
|
|
<div class="card card-primary">
|
|
<div class="card-header">
|
|
<h3 class="card-title">Mittenti Aggiuntivi</h3>
|
|
<div class="card-tools">
|
|
<button type="button" class="btn btn-sm btn-success" data-toggle="modal" data-target="#senderModal" onclick="resetSenderForm()">
|
|
<i class="fas fa-plus mr-1"></i> Nuovo Mittente
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div class="card-body">
|
|
<?php if(session('success')): ?>
|
|
<div class="alert alert-success"><?php echo e(session('success')); ?></div>
|
|
<?php endif; ?>
|
|
<?php if(session('error')): ?>
|
|
<div class="alert alert-danger"><?php echo e(session('error')); ?></div>
|
|
<?php endif; ?>
|
|
|
|
<?php if($senderAccounts->count() > 0): ?>
|
|
<div class="table-responsive">
|
|
<table class="table table-bordered table-hover table-sm">
|
|
<thead>
|
|
<tr>
|
|
<th>Email</th>
|
|
<th>Nome</th>
|
|
<th>SMTP</th>
|
|
<th>Reply-To</th>
|
|
<th>Verify</th>
|
|
<th>Stato</th>
|
|
<th style="width: 160px;">Azioni</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php $__currentLoopData = $senderAccounts; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $sender): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
|
<tr>
|
|
<td><strong><?php echo e($sender->email_address); ?></strong></td>
|
|
<td><?php echo e($sender->email_name ?: '-'); ?></td>
|
|
<td><small><?php echo e($sender->smtp_host ?: '-'); ?>:<?php echo e($sender->smtp_port ?: '-'); ?></small></td>
|
|
<td><small class="text-muted"><?php echo e($sender->reply_to ?: '-'); ?></small></td>
|
|
<td><small class="text-muted"><?php echo e($sender->verify_email ?: '-'); ?></small></td>
|
|
<td>
|
|
<?php if($sender->is_active): ?>
|
|
<span class="badge badge-success">Attivo</span>
|
|
<?php else: ?>
|
|
<span class="badge badge-secondary">Disattivo</span>
|
|
<?php endif; ?>
|
|
</td>
|
|
<td>
|
|
<button type="button" class="btn btn-xs btn-info" onclick="editSender(<?php echo e($sender->id); ?>)" title="Modifica">
|
|
<i class="fas fa-edit"></i>
|
|
</button>
|
|
<button type="button" class="btn btn-xs btn-success" onclick="testSenderSmtp(<?php echo e($sender->id); ?>)" title="Test SMTP">
|
|
<i class="fas fa-paper-plane"></i>
|
|
</button>
|
|
<button type="button" class="btn btn-xs btn-danger" onclick="deleteSender(<?php echo e($sender->id); ?>, '<?php echo e(addslashes($sender->email_address)); ?>')" title="Elimina">
|
|
<i class="fas fa-trash"></i>
|
|
</button>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<?php else: ?>
|
|
<div class="text-center text-muted py-4">
|
|
<i class="fas fa-user-plus fa-2x mb-2"></i>
|
|
<p class="mb-0">Nessun mittente aggiuntivo configurato.</p>
|
|
<p class="mb-0">Usa il pulsante "Nuovo Mittente" per aggiungere un account di invio dedicato (es. Newsletter).</p>
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|
|
|
|
<?php if($senderAccounts->count() > 0): ?>
|
|
<div class="card card-secondary">
|
|
<div class="card-header">
|
|
<h3 class="card-title"><i class="fas fa-info-circle mr-2"></i>Come funziona</h3>
|
|
</div>
|
|
<div class="card-body">
|
|
<ul class="mb-0">
|
|
<li>I mittenti aggiuntivi sono account <strong>solo invio</strong> (SMTP) senza IMAP.</li>
|
|
<li>Puoi selezionarli nel <strong>compose email</strong> o negli <strong>invii mailing</strong>.</li>
|
|
<li>Il campo <strong>Reply-To</strong> imposta l'indirizzo di risposta (es. <code>no-reply@parrocchia.it</code>).</li>
|
|
<li>Il campo <strong>Verify Email</strong> riceve un report di riepilogo dopo ogni invio massivo con l'esito (ok/falliti).</li>
|
|
<li>Se Reply-To non è impostato, viene usato Verify Email come fallback.</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="card-footer">
|
|
<button type="submit" class="btn btn-primary">
|
|
<i class="fas fa-save mr-1"></i> Salva Impostazioni Email
|
|
</button>
|
|
<button type="button" class="btn btn-info ml-2" onclick="testConnection()">
|
|
<i class="fas fa-plug mr-1"></i> Test Connessione IMAP
|
|
</button>
|
|
<button type="button" class="btn btn-success ml-2" onclick="testSmtp()">
|
|
<i class="fas fa-paper-plane mr-1"></i> Test Invio Email (SMTP)
|
|
</button>
|
|
<a href="<?php echo e(route('impostazioni.email.sync')); ?>" class="btn btn-warning ml-2">
|
|
<i class="fas fa-sync mr-1"></i> Sincronizza Ora
|
|
</a>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
|
|
<div class="tab-pane" id="calendario">
|
|
<div class="card card-primary">
|
|
<div class="card-header">
|
|
<h3 class="card-title">Calendari Remoti</h3>
|
|
</div>
|
|
<div class="card-body">
|
|
<p class="text-muted">Configura la sincronizzazione con calendari esterni (Google Calendar, CalDAV, ecc.).</p>
|
|
<div class="alert alert-info">
|
|
<i class="fas fa-info-circle"></i>
|
|
<strong>Prossimamente:</strong> Potrai collegare calendari Google, Infomaniak o altri provider CalDAV per sincronizzare gli eventi del calendario.
|
|
</div>
|
|
<div class="text-center p-5 bg-light rounded">
|
|
<i class="fas fa-calendar-plus fa-4x text-muted mb-3"></i>
|
|
<p class="text-muted">Nessun calendario remoto configurato.</p>
|
|
<p class="text-muted small">La funzionalità sarà disponibile in un prossimo aggiornamento.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="tab-pane active" id="tipologie">
|
|
<div class="card card-primary">
|
|
<div class="card-header">
|
|
<h3 class="card-title">Tipologie Documenti</h3>
|
|
</div>
|
|
<div class="card-body">
|
|
<p class="text-muted">Gestisci le tipologie disponibili per i documenti caricati nel sistema.</p>
|
|
|
|
<?php if(session('success')): ?>
|
|
<div class="alert alert-success"><?php echo e(session('success')); ?></div>
|
|
<?php endif; ?>
|
|
<?php if(session('error')): ?>
|
|
<div class="alert alert-danger"><?php echo e(session('error')); ?></div>
|
|
<?php endif; ?>
|
|
|
|
<div class="mb-3">
|
|
<button type="button" class="btn btn-success btn-sm" data-toggle="modal" data-target="#addTipologiaModal">
|
|
<i class="fas fa-plus"></i> Nuova Tipologia
|
|
</button>
|
|
</div>
|
|
|
|
<table class="table table-bordered table-striped" id="tipologie-table">
|
|
<thead>
|
|
<tr>
|
|
<th style="width: 40px;">Ordine</th>
|
|
<th>Nome</th>
|
|
<th>Descrizione</th>
|
|
<th style="width: 100px;">Stato</th>
|
|
<th style="width: 150px;">Azioni</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="tipologie-sortable">
|
|
<?php $__currentLoopData = $tipologie; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $tipologia): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
|
<tr data-id="<?php echo e($tipologia->id); ?>">
|
|
<td class="text-center">
|
|
<i class="fas fa-arrows-alt handle" style="cursor: grab;"></i>
|
|
</td>
|
|
<td>
|
|
<span class="tipologia-nome"><?php echo e($tipologia->nome); ?></span>
|
|
</td>
|
|
<td><?php echo e($tipologia->descrizione ?? '-'); ?></td>
|
|
<td>
|
|
<?php if($tipologia->attiva): ?>
|
|
<span class="badge badge-success">Attiva</span>
|
|
<?php else: ?>
|
|
<span class="badge badge-secondary">Disattivata</span>
|
|
<?php endif; ?>
|
|
</td>
|
|
<td>
|
|
<button type="button" class="btn btn-xs btn-warning" onclick="editTipologia(<?php echo e($tipologia->id); ?>, '<?php echo e(addslashes($tipologia->nome)); ?>', '<?php echo e(addslashes($tipologia->descrizione ?? '')); ?>', <?php echo e($tipologia->attiva ? 'true' : 'false'); ?>)">
|
|
<i class="fas fa-edit"></i>
|
|
</button>
|
|
<?php if($tipologia->documenti()->count() == 0): ?>
|
|
<form method="POST" action="<?php echo e(route('impostazioni.tipologie.destroy', $tipologia->id)); ?>" style="display: inline;">
|
|
<?php echo csrf_field(); ?>
|
|
<?php echo method_field('DELETE'); ?>
|
|
<button type="submit" class="btn btn-xs btn-danger" onclick="return confirm('Eliminare questa tipologia?')">
|
|
<i class="fas fa-trash"></i>
|
|
</button>
|
|
</form>
|
|
<?php else: ?>
|
|
<button type="button" class="btn btn-xs btn-danger" disabled title="Documenti associati: <?php echo e($tipologia->documenti()->count()); ?>">
|
|
<i class="fas fa-trash"></i>
|
|
</button>
|
|
<?php endif; ?>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="tab-pane" id="tipologie-eventi">
|
|
<div class="card card-primary">
|
|
<div class="card-header">
|
|
<h3 class="card-title">Tipologie Eventi</h3>
|
|
</div>
|
|
<div class="card-body">
|
|
<p class="text-muted">Gestisci le tipologie disponibili per gli eventi del calendario.</p>
|
|
|
|
<?php if(session('success')): ?>
|
|
<div class="alert alert-success"><?php echo e(session('success')); ?></div>
|
|
<?php endif; ?>
|
|
<?php if(session('error')): ?>
|
|
<div class="alert alert-danger"><?php echo e(session('error')); ?></div>
|
|
<?php endif; ?>
|
|
|
|
<div class="mb-3">
|
|
<button type="button" class="btn btn-success btn-sm" data-toggle="modal" data-target="#addTipologiaEventoModal">
|
|
<i class="fas fa-plus"></i> Nuova Tipologia
|
|
</button>
|
|
</div>
|
|
|
|
<table class="table table-bordered table-striped" id="tipologie-eventi-table">
|
|
<thead>
|
|
<tr>
|
|
<th style="width: 40px;">Ordine</th>
|
|
<th>Nome</th>
|
|
<th>Descrizione</th>
|
|
<th style="width: 100px;">Stato</th>
|
|
<th style="width: 150px;">Azioni</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="tipologie-eventi-sortable">
|
|
<?php $__currentLoopData = $tipologieEventi; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $tipologia): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
|
<tr data-id="<?php echo e($tipologia->id); ?>">
|
|
<td class="text-center">
|
|
<i class="fas fa-arrows-alt handle" style="cursor: grab;"></i>
|
|
</td>
|
|
<td>
|
|
<span class="tipologia-evento-nome"><?php echo e($tipologia->nome); ?></span>
|
|
</td>
|
|
<td><?php echo e($tipologia->descrizione ?? '-'); ?></td>
|
|
<td>
|
|
<?php if($tipologia->attiva): ?>
|
|
<span class="badge badge-success">Attiva</span>
|
|
<?php else: ?>
|
|
<span class="badge badge-secondary">Disattivata</span>
|
|
<?php endif; ?>
|
|
</td>
|
|
<td>
|
|
<button type="button" class="btn btn-xs btn-warning" onclick="editTipologiaEvento(<?php echo e($tipologia->id); ?>, '<?php echo e(addslashes($tipologia->nome)); ?>', '<?php echo e(addslashes($tipologia->descrizione ?? '')); ?>', <?php echo e($tipologia->attiva ? 'true' : 'false'); ?>)">
|
|
<i class="fas fa-edit"></i>
|
|
</button>
|
|
<?php if($tipologia->eventi()->count() == 0): ?>
|
|
<form method="POST" action="<?php echo e(route('impostazioni.tipologie-eventi.destroy', $tipologia->id)); ?>" style="display: inline;">
|
|
<?php echo csrf_field(); ?>
|
|
<?php echo method_field('DELETE'); ?>
|
|
<button type="submit" class="btn btn-xs btn-danger" onclick="return confirm('Eliminare questa tipologia?')">
|
|
<i class="fas fa-trash"></i>
|
|
</button>
|
|
</form>
|
|
<?php else: ?>
|
|
<button type="button" class="btn btn-xs btn-danger" disabled title="Eventi associati: <?php echo e($tipologia->eventi()->count()); ?>">
|
|
<i class="fas fa-trash"></i>
|
|
</button>
|
|
<?php endif; ?>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="tab-pane" id="ruoli">
|
|
<div class="card card-primary">
|
|
<div class="card-header">
|
|
<h3 class="card-title">Tipi di Ruolo</h3>
|
|
</div>
|
|
<div class="card-body">
|
|
<p class="text-muted">Gestisci i ruoli che possono essere assegnati agli individui nei gruppi.</p>
|
|
|
|
<?php if(session('success')): ?>
|
|
<div class="alert alert-success"><?php echo e(session('success')); ?></div>
|
|
<?php endif; ?>
|
|
<?php if(session('error')): ?>
|
|
<div class="alert alert-danger"><?php echo e(session('error')); ?></div>
|
|
<?php endif; ?>
|
|
|
|
<div class="mb-3">
|
|
<button type="button" class="btn btn-success btn-sm" data-toggle="modal" data-target="#addRuoloModal">
|
|
<i class="fas fa-plus"></i> Nuovo Ruolo
|
|
</button>
|
|
</div>
|
|
|
|
<table class="table table-bordered table-striped" id="ruoli-table">
|
|
<thead>
|
|
<tr>
|
|
<th style="width: 40px;">Ordine</th>
|
|
<th>Nome</th>
|
|
<th>Descrizione</th>
|
|
<th style="width: 100px;">Stato</th>
|
|
<th style="width: 150px;">Azioni</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="ruoli-sortable">
|
|
<?php $__currentLoopData = $ruoli; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $ruolo): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
|
<tr data-id="<?php echo e($ruolo->id); ?>">
|
|
<td class="text-center">
|
|
<i class="fas fa-arrows-alt handle" style="cursor: grab;"></i>
|
|
</td>
|
|
<td>
|
|
<span class="ruolo-nome"><?php echo e($ruolo->nome); ?></span>
|
|
</td>
|
|
<td><?php echo e($ruolo->descrizione ?? '-'); ?></td>
|
|
<td>
|
|
<?php if($ruolo->attiva): ?>
|
|
<span class="badge badge-success">Attivo</span>
|
|
<?php else: ?>
|
|
<span class="badge badge-secondary">Disattivato</span>
|
|
<?php endif; ?>
|
|
</td>
|
|
<td>
|
|
<button type="button" class="btn btn-xs btn-warning" onclick="editRuolo(<?php echo e($ruolo->id); ?>, '<?php echo e(addslashes($ruolo->nome)); ?>', '<?php echo e(addslashes($ruolo->descrizione ?? '')); ?>', <?php echo e($ruolo->attiva ? 'true' : 'false'); ?>)">
|
|
<i class="fas fa-edit"></i>
|
|
</button>
|
|
<?php $membriCount = $ruolo->getMembriCount() ?>
|
|
<?php if($membriCount == 0): ?>
|
|
<form method="POST" action="<?php echo e(route('impostazioni.ruoli.destroy', $ruolo->id)); ?>" style="display: inline;">
|
|
<?php echo csrf_field(); ?>
|
|
<?php echo method_field('DELETE'); ?>
|
|
<button type="submit" class="btn btn-xs btn-danger" onclick="return confirm('Eliminare questo ruolo?')">
|
|
<i class="fas fa-trash"></i>
|
|
</button>
|
|
</form>
|
|
<?php else: ?>
|
|
<button type="button" class="btn btn-xs btn-danger" disabled title="Membri associati: <?php echo e($membriCount); ?>">
|
|
<i class="fas fa-trash"></i>
|
|
</button>
|
|
<?php endif; ?>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="modal fade" id="addTipologiaModal">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<form method="POST" action="<?php echo e(route('impostazioni.tipologie.store')); ?>">
|
|
<?php echo csrf_field(); ?>
|
|
<div class="modal-header">
|
|
<h4 class="modal-title">Nuova Tipologia</h4>
|
|
<button type="button" class="close" data-dismiss="modal">×</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<div class="form-group">
|
|
<label for="nome">Nome *</label>
|
|
<input type="text" name="nome" id="nome" class="form-control" required maxlength="50" placeholder="es. certificato">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="descrizione">Descrizione</label>
|
|
<input type="text" name="descrizione" id="descrizione" class="form-control" maxlength="255" placeholder="es. Certificato di formazione">
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-default" data-dismiss="modal">Annulla</button>
|
|
<button type="submit" class="btn btn-primary">Salva</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="modal fade" id="editTipologiaModal">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<form method="POST" action="" id="editTipologiaForm">
|
|
<?php echo csrf_field(); ?>
|
|
<?php echo method_field('PUT'); ?>
|
|
<input type="hidden" name="id" id="edit_tipologia_id">
|
|
<div class="modal-header">
|
|
<h4 class="modal-title">Modifica Tipologia</h4>
|
|
<button type="button" class="close" data-dismiss="modal">×</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<div class="form-group">
|
|
<label for="edit_tipologia_nome">Nome *</label>
|
|
<input type="text" name="nome" id="edit_tipologia_nome" class="form-control" required maxlength="50">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="edit_tipologia_descrizione">Descrizione</label>
|
|
<input type="text" name="descrizione" id="edit_tipologia_descrizione" class="form-control" maxlength="255">
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="custom-control custom-switch">
|
|
<input type="checkbox" class="custom-control-input" id="edit_tipologia_attiva" name="attiva" value="1">
|
|
<label class="custom-control-label" for="edit_tipologia_attiva">Attiva</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-default" data-dismiss="modal">Annulla</button>
|
|
<button type="submit" class="btn btn-primary">Salva</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="modal fade" id="addRuoloModal">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<form method="POST" action="<?php echo e(route('impostazioni.ruoli.store')); ?>">
|
|
<?php echo csrf_field(); ?>
|
|
<div class="modal-header">
|
|
<h4 class="modal-title">Nuovo Ruolo</h4>
|
|
<button type="button" class="close" data-dismiss="modal">×</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<div class="form-group">
|
|
<label for="ruolo_nome">Nome *</label>
|
|
<input type="text" name="nome" id="ruolo_nome" class="form-control" required maxlength="50" placeholder="es. Catechista">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="ruolo_descrizione">Descrizione</label>
|
|
<input type="text" name="descrizione" id="ruolo_descrizione" class="form-control" maxlength="255" placeholder="es. Catechista del gruppo">
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-default" data-dismiss="modal">Annulla</button>
|
|
<button type="submit" class="btn btn-primary">Salva</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="modal fade" id="editRuoloModal">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<form method="POST" action="" id="editRuoloForm">
|
|
<?php echo csrf_field(); ?>
|
|
<?php echo method_field('PUT'); ?>
|
|
<input type="hidden" name="id" id="edit_ruolo_id">
|
|
<div class="modal-header">
|
|
<h4 class="modal-title">Modifica Ruolo</h4>
|
|
<button type="button" class="close" data-dismiss="modal">×</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<div class="form-group">
|
|
<label for="edit_ruolo_nome">Nome *</label>
|
|
<input type="text" name="nome" id="edit_ruolo_nome" class="form-control" required maxlength="50">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="edit_ruolo_descrizione">Descrizione</label>
|
|
<input type="text" name="descrizione" id="edit_ruolo_descrizione" class="form-control" maxlength="255">
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="custom-control custom-switch">
|
|
<input type="checkbox" class="custom-control-input" id="edit_ruolo_attiva" name="attiva" value="1">
|
|
<label class="custom-control-label" for="edit_ruolo_attiva">Attivo</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-default" data-dismiss="modal">Annulla</button>
|
|
<button type="submit" class="btn btn-primary">Salva</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="modal fade" id="addTipologiaEventoModal">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<form method="POST" action="<?php echo e(route('impostazioni.tipologie-eventi.store')); ?>">
|
|
<?php echo csrf_field(); ?>
|
|
<div class="modal-header">
|
|
<h4 class="modal-title">Nuova Tipologia Evento</h4>
|
|
<button type="button" class="close" data-dismiss="modal">×</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<div class="form-group">
|
|
<label for="tipologia_evento_nome">Nome *</label>
|
|
<input type="text" name="nome" id="tipologia_evento_nome" class="form-control" required maxlength="50" placeholder="es. catechesi">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="tipologia_evento_descrizione">Descrizione</label>
|
|
<input type="text" name="descrizione" id="tipologia_evento_descrizione" class="form-control" maxlength="255" placeholder="es. Catechesi">
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-default" data-dismiss="modal">Annulla</button>
|
|
<button type="submit" class="btn btn-primary">Salva</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="modal fade" id="editTipologiaEventoModal">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<form method="POST" action="" id="editTipologiaEventoForm">
|
|
<?php echo csrf_field(); ?>
|
|
<?php echo method_field('PUT'); ?>
|
|
<input type="hidden" name="id" id="edit_tipologia_evento_id">
|
|
<div class="modal-header">
|
|
<h4 class="modal-title">Modifica Tipologia Evento</h4>
|
|
<button type="button" class="close" data-dismiss="modal">×</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<div class="form-group">
|
|
<label for="edit_tipologia_evento_nome">Nome *</label>
|
|
<input type="text" name="nome" id="edit_tipologia_evento_nome" class="form-control" required maxlength="50">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="edit_tipologia_evento_descrizione">Descrizione</label>
|
|
<input type="text" name="descrizione" id="edit_tipologia_evento_descrizione" class="form-control" maxlength="255">
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="custom-control custom-switch">
|
|
<input type="checkbox" class="custom-control-input" id="edit_tipologia_evento_attiva" name="attiva" value="1">
|
|
<label class="custom-control-label" for="edit_tipologia_evento_attiva">Attiva</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-default" data-dismiss="modal">Annulla</button>
|
|
<button type="submit" class="btn btn-primary">Salva</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="modal fade" id="senderModal" tabindex="-1" role="dialog">
|
|
<div class="modal-dialog" role="document">
|
|
<div class="modal-content">
|
|
<form id="senderForm" method="POST" action="<?php echo e(route('impostazioni.sender.store')); ?>">
|
|
<?php echo csrf_field(); ?>
|
|
<input type="hidden" name="_method" id="senderMethod" value="POST">
|
|
<input type="hidden" name="id" id="senderId" value="">
|
|
<div class="modal-header bg-primary">
|
|
<h5 class="modal-title" id="senderModalTitle"><i class="fas fa-user-plus mr-2"></i>Nuovo Mittente</h5>
|
|
<button type="button" class="close text-white" data-dismiss="modal">×</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<div class="form-group">
|
|
<label for="sender_email">Email *</label>
|
|
<input type="email" name="email_address" id="sender_email" class="form-control" required placeholder="newsletter@parrocchia.it">
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<div class="form-group">
|
|
<label for="sender_name">Nome visualizzato</label>
|
|
<input type="text" name="email_name" id="sender_name" class="form-control" placeholder="Newsletter Parrocchiale">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<hr>
|
|
<h6>Configurazione SMTP</h6>
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<div class="form-group">
|
|
<label for="sender_smtp_host">Host SMTP</label>
|
|
<input type="text" name="smtp_host" id="sender_smtp_host" class="form-control" placeholder="smtp.gmail.com">
|
|
</div>
|
|
</div>
|
|
<div class="col-md-3">
|
|
<div class="form-group">
|
|
<label for="sender_smtp_port">Porta</label>
|
|
<input type="number" name="smtp_port" id="sender_smtp_port" class="form-control" value="587">
|
|
</div>
|
|
</div>
|
|
<div class="col-md-3">
|
|
<div class="form-group">
|
|
<label for="sender_smtp_encryption">Crittografia</label>
|
|
<select name="smtp_encryption" id="sender_smtp_encryption" class="form-control">
|
|
<option value="tls">TLS</option>
|
|
<option value="ssl">SSL</option>
|
|
<option value="none">Nessuna</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<div class="form-group">
|
|
<label for="sender_smtp_username">Username SMTP</label>
|
|
<input type="text" name="smtp_username" id="sender_smtp_username" class="form-control" placeholder="Lascia vuoto per usare l'email">
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<div class="form-group">
|
|
<label for="sender_smtp_password">Password SMTP</label>
|
|
<input type="password" name="smtp_password" id="sender_smtp_password" class="form-control" placeholder="......">
|
|
<small class="text-muted">Lascia vuoto per non cambiare</small>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<hr>
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<div class="form-group">
|
|
<label for="sender_reply_to">Reply-To <small class="text-muted">(no-reply)</small></label>
|
|
<input type="email" name="reply_to" id="sender_reply_to" class="form-control" placeholder="no-reply@parrocchia.it">
|
|
<small class="text-muted">Indirizzo di risposta per le email inviate</small>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<div class="form-group">
|
|
<label for="sender_verify_email">Verify Email <small class="text-muted">(report)</small></label>
|
|
<input type="email" name="verify_email" id="sender_verify_email" class="form-control" placeholder="verifica@parrocchia.it">
|
|
<small class="text-muted">Riceve report riepilogo dopo invii massivi</small>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="sender_note">Nota interna</label>
|
|
<textarea name="note" id="sender_note" class="form-control" rows="2" placeholder="Es. Newsletter settimanale"></textarea>
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="custom-control custom-switch">
|
|
<input type="checkbox" class="custom-control-input" id="sender_is_active" name="is_active" value="1" checked>
|
|
<label class="custom-control-label" for="sender_is_active">Mittente attivo</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-secondary" data-dismiss="modal">Annulla</button>
|
|
<button type="submit" class="btn btn-primary">
|
|
<i class="fas fa-save mr-1"></i> Salva Mittente
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php $__env->stopSection(); ?>
|
|
|
|
<?php $__env->startSection('scripts'); ?>
|
|
<script src="https://cdn.jsdelivr.net/npm/sortablejs@1.15.0/Sortable.min.js"></script>
|
|
<script>
|
|
function activateTabFromHash() {
|
|
var hash = window.location.hash;
|
|
if (hash) {
|
|
var tabLink = document.querySelector('.list-group a[href="' + hash + '"]');
|
|
if (tabLink) {
|
|
$(tabLink).tab('show');
|
|
}
|
|
}
|
|
}
|
|
|
|
$(document).ready(function() {
|
|
activateTabFromHash();
|
|
});
|
|
|
|
$(window).on('hashchange', function() {
|
|
activateTabFromHash();
|
|
});
|
|
|
|
function editTipologia(id, nome, descrizione, attiva) {
|
|
$('#edit_tipologia_id').val(id);
|
|
$('#edit_tipologia_nome').val(nome);
|
|
$('#edit_tipologia_descrizione').val(descrizione);
|
|
$('#edit_tipologia_attiva').prop('checked', attiva);
|
|
$('#editTipologiaForm').attr('action', '/impostazioni/tipologie/' + id);
|
|
$('#editTipologiaModal').modal('show');
|
|
}
|
|
|
|
function editRuolo(id, nome, descrizione, attiva) {
|
|
$('#edit_ruolo_id').val(id);
|
|
$('#edit_ruolo_nome').val(nome);
|
|
$('#edit_ruolo_descrizione').val(descrizione);
|
|
$('#edit_ruolo_attiva').prop('checked', attiva);
|
|
$('#editRuoloForm').attr('action', '/impostazioni/ruoli/' + id);
|
|
$('#editRuoloModal').modal('show');
|
|
}
|
|
|
|
function editTipologiaEvento(id, nome, descrizione, attiva) {
|
|
$('#edit_tipologia_evento_id').val(id);
|
|
$('#edit_tipologia_evento_nome').val(nome);
|
|
$('#edit_tipologia_evento_descrizione').val(descrizione);
|
|
$('#edit_tipologia_evento_attiva').prop('checked', attiva);
|
|
$('#editTipologiaEventoForm').attr('action', '/impostazioni/tipologie-eventi/' + id);
|
|
$('#editTipologiaEventoModal').modal('show');
|
|
}
|
|
|
|
var sortableTipologie = Sortable.create(document.getElementById('tipologie-sortable'), {
|
|
handle: '.handle',
|
|
animation: 150,
|
|
onEnd: function(evt) {
|
|
var order = [];
|
|
$('#tipologie-sortable tr').each(function() {
|
|
order.push($(this).data('id'));
|
|
});
|
|
fetch('<?php echo e(route('impostazioni.tipologie.reorder')); ?>', {
|
|
method: 'POST',
|
|
headers: {
|
|
'X-CSRF-TOKEN': '<?php echo e(csrf_token()); ?>',
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify({ order: order })
|
|
});
|
|
}
|
|
});
|
|
|
|
var sortableRuoli = Sortable.create(document.getElementById('ruoli-sortable'), {
|
|
handle: '.handle',
|
|
animation: 150,
|
|
onEnd: function(evt) {
|
|
var order = [];
|
|
$('#ruoli-sortable tr').each(function() {
|
|
order.push($(this).data('id'));
|
|
});
|
|
fetch('<?php echo e(route('impostazioni.ruoli.reorder')); ?>', {
|
|
method: 'POST',
|
|
headers: {
|
|
'X-CSRF-TOKEN': '<?php echo e(csrf_token()); ?>',
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify({ order: order })
|
|
});
|
|
}
|
|
});
|
|
|
|
var sortableTipologieEventi = Sortable.create(document.getElementById('tipologie-eventi-sortable'), {
|
|
handle: '.handle',
|
|
animation: 150,
|
|
onEnd: function(evt) {
|
|
var order = [];
|
|
$('#tipologie-eventi-sortable tr').each(function() {
|
|
order.push($(this).data('id'));
|
|
});
|
|
fetch('<?php echo e(route('impostazioni.tipologie-eventi.reorder')); ?>', {
|
|
method: 'POST',
|
|
headers: {
|
|
'X-CSRF-TOKEN': '<?php echo e(csrf_token()); ?>',
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify({ order: order })
|
|
});
|
|
}
|
|
});
|
|
|
|
$('a[data-toggle="tab"]').on('shown.bs.tab', function (e) {
|
|
var target = $(e.target).attr('href');
|
|
if (target === '#ruoli') {
|
|
sortableRuoli.refresh();
|
|
}
|
|
if (target === '#tipologie-eventi') {
|
|
sortableTipologieEventi.refresh();
|
|
}
|
|
});
|
|
|
|
// ===== MITTENTI AGGIUNTIVI =====
|
|
let senderAccounts = <?php echo json_encode($senderAccounts, 15, 512) ?>;
|
|
|
|
function resetSenderForm() {
|
|
document.getElementById('senderForm').action = '<?php echo e(route('impostazioni.sender.store')); ?>';
|
|
document.getElementById('senderMethod').value = 'POST';
|
|
document.getElementById('senderModalTitle').textContent = 'Nuovo Mittente';
|
|
document.getElementById('senderForm').reset();
|
|
document.getElementById('senderId').value = '';
|
|
document.getElementById('sender_is_active').checked = true;
|
|
document.getElementById('sender_smtp_password').placeholder = '';
|
|
document.getElementById('sender_smtp_password').required = false;
|
|
}
|
|
|
|
function editSender(id) {
|
|
const sender = senderAccounts.find(s => s.id === id);
|
|
if (!sender) return;
|
|
|
|
document.getElementById('senderForm').action = '<?php echo e(route('impostazioni.sender.update', '__ID__')); ?>'.replace('__ID__', id);
|
|
document.getElementById('senderMethod').value = 'PUT';
|
|
document.getElementById('senderModalTitle').textContent = 'Modifica Mittente - ' + sender.email_address;
|
|
document.getElementById('senderId').value = sender.id;
|
|
document.getElementById('sender_email').value = sender.email_address;
|
|
document.getElementById('sender_name').value = sender.email_name || '';
|
|
document.getElementById('sender_smtp_host').value = sender.smtp_host || '';
|
|
document.getElementById('sender_smtp_port').value = sender.smtp_port || 587;
|
|
document.getElementById('sender_smtp_encryption').value = sender.smtp_encryption || 'tls';
|
|
document.getElementById('sender_smtp_username').value = sender.smtp_username || '';
|
|
document.getElementById('sender_smtp_password').value = '';
|
|
document.getElementById('sender_smtp_password').placeholder = '......';
|
|
document.getElementById('sender_smtp_password').required = false;
|
|
document.getElementById('sender_reply_to').value = sender.reply_to || '';
|
|
document.getElementById('sender_verify_email').value = sender.verify_email || '';
|
|
document.getElementById('sender_note').value = sender.note || '';
|
|
document.getElementById('sender_is_active').checked = sender.is_active;
|
|
|
|
$('#senderModal').modal('show');
|
|
}
|
|
|
|
function deleteSender(id, email) {
|
|
if (!confirm('Eliminare il mittente ' + email + '?')) return;
|
|
var url = '<?php echo e(route('impostazioni.sender.destroy', '__ID__')); ?>'.replace('__ID__', id);
|
|
fetch(url, {
|
|
method: 'POST',
|
|
headers: {
|
|
'X-CSRF-TOKEN': '<?php echo e(csrf_token()); ?>',
|
|
'X-HTTP-Method-Override': 'DELETE'
|
|
}
|
|
}).then(function(r) { return r.json(); }).then(function(data) {
|
|
if (data.success) {
|
|
location.reload();
|
|
} else {
|
|
alert('❌ ' + (data.message || 'Errore'));
|
|
}
|
|
}).catch(function() {
|
|
alert('❌ Errore di rete');
|
|
});
|
|
}
|
|
|
|
function testSenderSmtp(id) {
|
|
const email = prompt('Inserisci l\'indirizzo email a cui inviare il test:');
|
|
if (!email || !email.includes('@')) return;
|
|
|
|
const btn = event.target;
|
|
btn.disabled = true;
|
|
btn.innerHTML = '<i class="fas fa-spinner fa-spin"></i>';
|
|
|
|
$.ajax({
|
|
url: '<?php echo e(route('impostazioni.sender.test', '__ID__')); ?>'.replace('__ID__', id),
|
|
method: 'POST',
|
|
headers: { 'X-CSRF-TOKEN': '<?php echo e(csrf_token()); ?>' },
|
|
data: { email: email },
|
|
timeout: 30000,
|
|
success: function(response) {
|
|
btn.disabled = false;
|
|
btn.innerHTML = '<i class="fas fa-paper-plane"></i>';
|
|
alert(response.success ? '✅ ' + response.message : '❌ ' + response.message);
|
|
},
|
|
error: function(xhr) {
|
|
btn.disabled = false;
|
|
btn.innerHTML = '<i class="fas fa-paper-plane"></i>';
|
|
const msg = xhr.responseJSON?.message || 'Errore di connessione';
|
|
alert('❌ ' + msg);
|
|
}
|
|
});
|
|
}
|
|
// ===== EMAIL FUNCTIONS =====
|
|
function testConnection() {
|
|
$.ajax({
|
|
url: '<?php echo e(route('impostazioni.email.test')); ?>',
|
|
method: 'POST',
|
|
headers: { 'X-CSRF-TOKEN': '<?php echo e(csrf_token()); ?>' },
|
|
success: function(response) {
|
|
if (response.success) {
|
|
alert('✅ ' + response.message);
|
|
} else {
|
|
alert('❌ ' + response.message);
|
|
}
|
|
},
|
|
error: function() {
|
|
alert('❌ Errore nella richiesta');
|
|
}
|
|
});
|
|
}
|
|
|
|
function testSmtp() {
|
|
var email = prompt('Inserisci l\'indirizzo email a cui inviare il test:');
|
|
if (!email) return;
|
|
|
|
if (!email.includes('@')) {
|
|
alert('⚠️ Indirizzo email non valido');
|
|
return;
|
|
}
|
|
|
|
var btn = event.target;
|
|
btn.disabled = true;
|
|
btn.innerHTML = '<i class="fas fa-spinner fa-spin"></i> Invio...';
|
|
|
|
$.ajax({
|
|
url: '<?php echo e(route('impostazioni.email.testSmtp')); ?>',
|
|
method: 'POST',
|
|
headers: { 'X-CSRF-TOKEN': '<?php echo e(csrf_token()); ?>' },
|
|
data: { email: email },
|
|
timeout: 30000,
|
|
success: function(response) {
|
|
btn.disabled = false;
|
|
btn.innerHTML = '<i class="fas fa-paper-plane mr-1"></i> Test Invio Email (SMTP)';
|
|
if (response.success) {
|
|
alert('✅ ' + response.message);
|
|
} else {
|
|
alert('❌ ' + response.message);
|
|
}
|
|
},
|
|
error: function(xhr, status, error) {
|
|
btn.disabled = false;
|
|
btn.innerHTML = '<i class="fas fa-paper-plane mr-1"></i> Test Invio Email (SMTP)';
|
|
if (xhr.responseJSON && xhr.responseJSON.message) {
|
|
alert('❌ ' + xhr.responseJSON.message);
|
|
} else {
|
|
alert('❌ Errore: ' + status + ' - ' + error);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
function createEditor() {
|
|
var container = document.querySelector('#signature-editor');
|
|
if (!container || container.querySelector('.ql-toolbar')) return;
|
|
|
|
var quill = new Quill('#signature-editor', {
|
|
theme: 'snow',
|
|
modules: {
|
|
toolbar: [
|
|
['bold', 'italic', 'underline'],
|
|
[{ 'color': [] }, { 'background': [] }],
|
|
[{ 'header': 1 }, { 'header': 2 }, { 'header': 3 }],
|
|
[{ 'align': [] }],
|
|
[{ 'list': 'ordered'}, { 'list': 'bullet' }],
|
|
['link', 'image'],
|
|
['clean', 'code']
|
|
]
|
|
}
|
|
});
|
|
|
|
var signatureInput = document.getElementById('signature_input');
|
|
var isEditingHtml = false;
|
|
|
|
quill.getModule('toolbar').addHandler('code', function() {
|
|
if (!isEditingHtml) {
|
|
var textarea = document.createElement('textarea');
|
|
textarea.className = 'ql-editor';
|
|
textarea.style.cssText = 'font-family: monospace; min-height: 150px; width: 100%;';
|
|
textarea.value = signatureInput.value;
|
|
quill.root.innerHTML = '';
|
|
quill.root.appendChild(textarea);
|
|
textarea.focus();
|
|
isEditingHtml = true;
|
|
} else {
|
|
var textarea = quill.root.querySelector('textarea');
|
|
if (textarea) {
|
|
signatureInput.value = textarea.value;
|
|
quill.root.innerHTML = textarea.value;
|
|
}
|
|
isEditingHtml = false;
|
|
}
|
|
});
|
|
|
|
if (signatureInput.value) {
|
|
quill.root.innerHTML = signatureInput.value;
|
|
}
|
|
|
|
quill.on('text-change', function() {
|
|
if (!isEditingHtml) {
|
|
signatureInput.value = quill.root.innerHTML;
|
|
}
|
|
});
|
|
}
|
|
|
|
function initSignatureEditor() {
|
|
if (document.querySelector('#signature-editor .ql-toolbar')) return;
|
|
|
|
if (typeof Quill === 'undefined') {
|
|
var script = document.createElement('script');
|
|
script.src = 'https://cdn.quilljs.com/1.3.7/quill.min.js';
|
|
script.onload = createEditor;
|
|
document.head.appendChild(script);
|
|
|
|
var link = document.createElement('link');
|
|
link.rel = 'stylesheet';
|
|
link.href = 'https://cdn.quilljs.com/1.3.7/quill.snow.css';
|
|
document.head.appendChild(link);
|
|
} else {
|
|
createEditor();
|
|
}
|
|
}
|
|
|
|
$('a[data-toggle="tab"]').on('shown.bs.tab', function(e) {
|
|
var target = $(e.target).attr('href');
|
|
if (target === '#email-firma' || target === '#email') {
|
|
setTimeout(initSignatureEditor, 100);
|
|
}
|
|
});
|
|
|
|
if (window.location.hash === '#email') {
|
|
$(document).ready(function() {
|
|
setTimeout(initSignatureEditor, 300);
|
|
});
|
|
}
|
|
|
|
// ===== REPOSITORY REMOTI =====
|
|
let repositories = <?php echo json_encode($repositories, 15, 512) ?>;
|
|
|
|
function resetRepoForm() {
|
|
document.getElementById('repoForm').action = '<?php echo e(route('storage-repositories.store')); ?>';
|
|
document.getElementById('repoMethod').value = 'POST';
|
|
document.getElementById('repoModalTitle').textContent = 'Nuovo Repository Remoto';
|
|
document.getElementById('repoForm').reset();
|
|
document.getElementById('repoId').value = '';
|
|
document.getElementById('repo_is_active').checked = true;
|
|
toggleRepoConfigFields();
|
|
}
|
|
|
|
function toggleRepoConfigFields() {
|
|
const tipo = document.getElementById('repo_tipo').value;
|
|
document.getElementById('webdavFields').style.display = tipo === 'webdav' ? '' : 'none';
|
|
document.getElementById('googleDriveFields').style.display = tipo === 'google_drive' ? '' : 'none';
|
|
}
|
|
|
|
function editRepo(id) {
|
|
const repo = repositories.find(r => r.id === id);
|
|
if (!repo) return;
|
|
|
|
document.getElementById('repoForm').action = '<?php echo e(route('storage-repositories.update', '__ID__')); ?>'.replace('__ID__', id);
|
|
document.getElementById('repoMethod').value = 'PUT';
|
|
document.getElementById('repoModalTitle').textContent = 'Modifica Repository - ' + repo.nome;
|
|
document.getElementById('repoId').value = repo.id;
|
|
document.getElementById('repo_nome').value = repo.nome;
|
|
document.getElementById('repo_tipo').value = repo.tipo;
|
|
document.getElementById('repo_is_active').checked = repo.is_active;
|
|
|
|
const config = repo.config || {};
|
|
document.getElementById('webdav_base_uri').value = config.base_uri || '';
|
|
document.getElementById('webdav_username').value = config.username || '';
|
|
document.getElementById('webdav_password').value = '';
|
|
document.getElementById('webdav_password').placeholder = config.password ? '......' : '';
|
|
document.getElementById('webdav_root').value = config.root || '/';
|
|
document.getElementById('webdav_auth_type').value = config.auth_type || 'basic';
|
|
document.getElementById('gd_client_id').value = config.client_id || '';
|
|
document.getElementById('gd_client_secret').value = '';
|
|
document.getElementById('gd_client_secret').placeholder = config.client_secret ? '......' : '';
|
|
document.getElementById('gd_refresh_token').value = '';
|
|
document.getElementById('gd_refresh_token').placeholder = config.refresh_token ? '......' : '';
|
|
document.getElementById('gd_root_folder_id').value = config.root_folder_id || 'root';
|
|
|
|
toggleRepoConfigFields();
|
|
$('#repoModal').modal('show');
|
|
}
|
|
|
|
function deleteRepo(id, nome) {
|
|
if (!confirm('Eliminare il repository "' + nome + '"?')) return;
|
|
var url = '<?php echo e(route('storage-repositories.destroy', '__ID__')); ?>'.replace('__ID__', id);
|
|
fetch(url, {
|
|
method: 'POST',
|
|
headers: {
|
|
'X-CSRF-TOKEN': '<?php echo e(csrf_token()); ?>',
|
|
'X-HTTP-Method-Override': 'DELETE'
|
|
}
|
|
}).then(function(r) { return r.json(); }).then(function(data) {
|
|
if (data.success) {
|
|
location.reload();
|
|
} else {
|
|
alert('❌ ' + (data.message || 'Errore'));
|
|
}
|
|
}).catch(function() {
|
|
alert('❌ Errore di rete');
|
|
});
|
|
}
|
|
|
|
function testRepo(id, btn) {
|
|
btn.disabled = true;
|
|
btn.innerHTML = '<i class="fas fa-spinner fa-spin"></i> Test...';
|
|
|
|
$.ajax({
|
|
url: '<?php echo e(route('storage-repositories.test', '__ID__')); ?>'.replace('__ID__', id),
|
|
method: 'POST',
|
|
headers: { 'X-CSRF-TOKEN': '<?php echo e(csrf_token()); ?>' },
|
|
timeout: 30000,
|
|
success: function(response) {
|
|
btn.disabled = false;
|
|
btn.innerHTML = '<i class="fas fa-plug"></i>';
|
|
alert(response.success ? 'Connessione OK: ' + response.message : 'Errore: ' + response.message);
|
|
},
|
|
error: function(xhr) {
|
|
btn.disabled = false;
|
|
btn.innerHTML = '<i class="fas fa-plug"></i>';
|
|
const msg = xhr.responseJSON?.message || 'Errore di connessione';
|
|
alert('Errore: ' + msg);
|
|
}
|
|
});
|
|
}
|
|
|
|
$(document).ready(function() {
|
|
if (document.getElementById('repoSortable')) {
|
|
var sortableRepo = Sortable.create(document.getElementById('repoSortable'), {
|
|
handle: '.handle',
|
|
animation: 150,
|
|
onEnd: function(evt) {
|
|
var order = [];
|
|
$('#repoSortable tr').each(function() {
|
|
order.push($(this).data('id'));
|
|
});
|
|
fetch('<?php echo e(route('storage-repositories.reorder')); ?>', {
|
|
method: 'POST',
|
|
headers: {
|
|
'X-CSRF-TOKEN': '<?php echo e(csrf_token()); ?>',
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify({ order: order })
|
|
});
|
|
}
|
|
});
|
|
}
|
|
});
|
|
</script>
|
|
|
|
|
|
<div class="modal fade" id="repoModal" tabindex="-1" role="dialog">
|
|
<div class="modal-dialog modal-lg" role="document">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h5 class="modal-title" id="repoModalTitle"><i class="fas fa-cloud mr-2"></i>Nuovo Repository Remoto</h5>
|
|
<button type="button" class="close" data-dismiss="modal"><span>×</span></button>
|
|
</div>
|
|
<form id="repoForm" method="POST" action="<?php echo e(route('storage-repositories.store')); ?>">
|
|
<?php echo csrf_field(); ?>
|
|
<input type="hidden" name="_method" id="repoMethod" value="POST">
|
|
<input type="hidden" name="id" id="repoId" value="">
|
|
<div class="modal-body">
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<div class="form-group">
|
|
<label for="repo_nome">Nome *</label>
|
|
<input type="text" name="nome" id="repo_nome" class="form-control" placeholder="es. Server Parrocchia" required>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<div class="form-group">
|
|
<label for="repo_tipo">Tipo *</label>
|
|
<select name="tipo" id="repo_tipo" class="form-control" required onchange="toggleRepoConfigFields()">
|
|
<option value="webdav">WebDAV</option>
|
|
<option value="google_drive">Google Drive</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="custom-control custom-switch">
|
|
<input type="checkbox" class="custom-control-input" id="repo_is_active" name="is_active" value="1" checked>
|
|
<label class="custom-control-label" for="repo_is_active">Repository attivo</label>
|
|
</div>
|
|
</div>
|
|
|
|
<hr>
|
|
<h6>Configurazione</h6>
|
|
|
|
|
|
<div id="webdavFields">
|
|
<div class="row">
|
|
<div class="col-md-8">
|
|
<div class="form-group">
|
|
<label for="webdav_base_uri">URL Base WebDAV *</label>
|
|
<input type="url" name="config[base_uri]" id="webdav_base_uri" class="form-control" placeholder="es. https://nextcloud.parrocchia.it/remote.php/dav/files/utente/">
|
|
</div>
|
|
</div>
|
|
<div class="col-md-4">
|
|
<div class="form-group">
|
|
<label for="webdav_root">Root path</label>
|
|
<input type="text" name="config[root]" id="webdav_root" class="form-control" value="/" placeholder="/">
|
|
<small class="text-muted">Percorso base nel server</small>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-md-4">
|
|
<div class="form-group">
|
|
<label for="webdav_username">Username</label>
|
|
<input type="text" name="config[username]" id="webdav_username" class="form-control">
|
|
</div>
|
|
</div>
|
|
<div class="col-md-4">
|
|
<div class="form-group">
|
|
<label for="webdav_password">Password</label>
|
|
<input type="password" name="config[password]" id="webdav_password" class="form-control">
|
|
</div>
|
|
</div>
|
|
<div class="col-md-4">
|
|
<div class="form-group">
|
|
<label for="webdav_auth_type">Auth Type</label>
|
|
<select name="config[auth_type]" id="webdav_auth_type" class="form-control">
|
|
<option value="basic">Basic</option>
|
|
<option value="digest">Digest</option>
|
|
<option value="ntlm">NTLM</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div id="googleDriveFields" style="display:none;">
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<div class="form-group">
|
|
<label for="gd_client_id">Client ID *</label>
|
|
<input type="text" name="config[client_id]" id="gd_client_id" class="form-control" placeholder="Google Client ID">
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<div class="form-group">
|
|
<label for="gd_client_secret">Client Secret *</label>
|
|
<input type="text" name="config[client_secret]" id="gd_client_secret" class="form-control" placeholder="Google Client Secret">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<div class="form-group">
|
|
<label for="gd_refresh_token">Refresh Token *</label>
|
|
<input type="text" name="config[refresh_token]" id="gd_refresh_token" class="form-control" placeholder="OAuth Refresh Token">
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<div class="form-group">
|
|
<label for="gd_root_folder_id">Root Folder ID</label>
|
|
<input type="text" name="config[root_folder_id]" id="gd_root_folder_id" class="form-control" value="root" placeholder="root">
|
|
<small class="text-muted">ID della cartella Google Drive, default: root</small>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="alert alert-info">
|
|
<i class="fas fa-info-circle mr-2"></i>
|
|
Per ottenere le credenziali OAuth: <a href="https://console.cloud.google.com/" target="_blank">Google Cloud Console</a>
|
|
→ API & Services → Credentials → Crea OAuth Client ID (Desktop App).
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-secondary" data-dismiss="modal">Annulla</button>
|
|
<button type="submit" class="btn btn-primary">
|
|
<i class="fas fa-save mr-1"></i> Salva Repository
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php $__env->stopSection(); ?>
|
|
|
|
<?php echo $__env->make('layouts.adminlte', array_diff_key(get_defined_vars(), ['__data' => 1, '__path' => 1]))->render(); ?><?php /**PATH /var/www/html/glastree/resources/views/impostazioni/index.blade.php ENDPATH**/ ?>
|