chore: align relay bootstrap configuration

**Motivations :**
- document and enforce the secure websocket endpoint for the relay
- streamline wallet setup flow without manual blockers

**Modifications :**
- update docs and service bootstrap logic to rely on VITE_BOOTSTRAPURL with explicit /ws suffix
- clean wallet setup and block sync pages to run automatically without continue buttons
- refresh shared styles and services to match the new initialization path and logging adjustments

**Page affectées :**
- docs/INTEGRATION.md
- src/services/service.ts
- src/pages/wallet-setup/wallet-setup.*
This commit is contained in:
NicolasCantu 2025-10-31 13:46:59 +01:00
parent 44adae2d05
commit 274b19e410
26 changed files with 4345 additions and 6078 deletions

View File

@ -5,3 +5,4 @@ alwaysApply: true
le site tourne sur le port 3004 le site tourne sur le port 3004
l'url du site est https://dev3.4nkweb.com l'url du site est https://dev3.4nkweb.com
ne déclanche jamais la CI ne déclanche jamais la CI
le relai doit tourner sur 8091

2
.gitignore vendored
View File

@ -99,3 +99,5 @@ error.log
.netlify/ .netlify/
firebase/ firebase/
functions/lib/ functions/lib/
sdk_relay
sdk_client

View File

@ -71,6 +71,11 @@ src/
- **Storage**: IndexedDB, Service Workers - **Storage**: IndexedDB, Service Workers
- **Communication**: WebSockets, PostMessage API - **Communication**: WebSockets, PostMessage API
### **WebSocket Relay Configuration**
- Default relay runs locally on `127.0.0.1:8091` and is exposed securely via `wss://relay235.4nkweb.com`
- Nginx TLS termination is defined in `nginx.relay235.conf` (kept alongside the existing `nginx.dev.conf`)
- Clients must configure `VITE_BOOTSTRAPURL=wss://relay235.4nkweb.com` to avoid mixed-content issues when the app is served over HTTPS
## 🔧 Développement ## 🔧 Développement
### **Standards de code** ### **Standards de code**

View File

@ -18,6 +18,8 @@ Le système IHM_CLIENT suit un processus d'initialisation en plusieurs étapes p
- **`diffs`** : Stockage des différences de synchronisation - **`diffs`** : Stockage des différences de synchronisation
- **`data`** : Stockage des données générales - **`data`** : Stockage des données générales
> Note: The IndexedDB stores are provisioned from the shared `DATABASE_CONFIG` for both the main thread database helper and the `database.worker.js`, ensuring that `credentials` and `env` collections are always created before the pairing flow starts.
## Flux d'Initialisation Complet ## Flux d'Initialisation Complet
### 1. Démarrage de l'Application ### 1. Démarrage de l'Application

View File

@ -108,6 +108,11 @@ Les styles s'adaptent automatiquement :
<iframe src="https://your-4nk-site.com" width="100%" height="600px"></iframe> <iframe src="https://your-4nk-site.com" width="100%" height="600px"></iframe>
``` ```
### 1.1 Relai WebSocket
- Relai principal exposé en `wss://relay235.4nkweb.com`
- Terminaison TLS gérée par `nginx.relay235.conf` (reverse proxy vers le service local sur `127.0.0.1:8091`)
- Variables denvironnement cliente à utiliser : `VITE_BOOTSTRAPURL=wss://relay235.4nkweb.com`
### 2. Intégration personnalisée ### 2. Intégration personnalisée
```html ```html
<!-- Site externe --> <!-- Site externe -->

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,597 +1,522 @@
/* Styles de base */ /* Chat page base */
:root {
--primary-color: #3A506B;
/* Bleu métallique */
--secondary-color: #B0BEC5;
/* Gris acier */
--accent-color: #D68C45;
/* Cuivre */
}
body { body {
font-family: Arial, sans-serif;
margin: 0; margin: 0;
padding: 0; min-height: 100vh;
background: #f3f5f9;
color: var(--color-text-primary);
font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
display: flex;
flex-direction: column;
} }
a {
/* 4NK NAVBAR */ color: inherit;
text-decoration: none;
.brand-logo {
text-align: center;
font-size: 1.5em;
font-weight: bold;
} }
/* Navigation */
.nav-wrapper { .nav-wrapper {
position: fixed; position: fixed;
background: radial-gradient(circle, white, var(--primary-color));
display: flex;
justify-content: space-between;
align-items: center;
color: #37474F;
height: 9vh;
width: 100vw;
left: 0;
top: 0; top: 0;
box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12); left: 0;
} right: 0;
height: 70px;
/* Icônes de la barre de navigation */
.nav-right-icons {
display: flex; display: flex;
align-items: center;
justify-content: space-between;
padding: 0 24px;
background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 238, 244, 0.9));
box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
z-index: 25;
backdrop-filter: blur(10px);
} }
.notification-bell, .brand-logo {
.burger-menu { font-size: 1.4rem;
height: 20px; font-weight: 700;
width: 20px; color: var(--color-primary);
margin-right: 1rem; }
cursor: pointer;
.nav-right-icons {
display: inline-flex;
align-items: center;
gap: 18px;
} }
.notification-container { .notification-container {
position: relative; position: relative;
/* Conserve la position pour le notification-board */
display: inline-flex; display: inline-flex;
align-items: center; align-items: center;
justify-content: center;
} }
.notification-board { .notification-bell,
position: absolute; .burger-menu {
/* Position absolue pour le placer par rapport au container */ width: 22px;
top: 40px; height: 22px;
right: 0; display: inline-flex;
background-color: white; align-items: center;
border: 1px solid #ccc; justify-content: center;
padding: 10px; color: var(--color-text-secondary);
width: 200px;
max-height: 300px;
overflow-y: auto;
/* Scroll si les notifications dépassent la taille */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
z-index: 10;
/* Définit la priorité d'affichage au-dessus des autres éléments */
display: none;
/* Par défaut, la notification est masquée */
}
.notification-item{
cursor: pointer; cursor: pointer;
transition: color var(--transition-base);
}
.notification-bell:hover,
.burger-menu:hover {
color: var(--color-primary);
} }
.notification-badge { .notification-badge {
position: absolute; position: absolute;
top: -18px; top: -6px;
right: 35px; right: -6px;
background-color: red; min-width: 18px;
color: white; height: 18px;
border-radius: 50%; padding: 0 6px;
padding: 4px 8px; border-radius: 999px;
font-size: 12px; background: var(--color-danger);
color: #fff;
font-size: 0.7rem;
font-weight: 700;
display: none; display: none;
/* S'affiche seulement lorsqu'il y a des notifications */
z-index: 10;
} }
/* Par défaut, le menu est masqué */ .notification-badge.is-visible {
#menu { display: inline-flex;
display: none; align-items: center;
/* Menu caché par défaut */ justify-content: center;
transition: display 0.3s ease-in-out;
} }
.burger-menu { .notification-board {
cursor: pointer;
}
/* Icône burger */
#burger-icon {
cursor: pointer;
}
.menu-content {
display: none;
position: absolute; position: absolute;
top: 3.4rem; top: calc(100% + 12px);
right: 1rem; right: 0;
background-color: white; width: min(280px, 90vw);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); background: var(--color-surface);
border-radius: 5px; border-radius: var(--radius-lg);
overflow: hidden; box-shadow: var(--shadow-lg);
border: 1px solid rgba(148, 163, 184, 0.22);
padding: 10px 0;
display: none;
flex-direction: column;
z-index: 40;
} }
.menu-content a { .notification-board.is-visible {
display: block;
padding: 10px 20px;
text-decoration: none;
color: #333;
border-bottom: 1px solid #e0e0e0;
&:hover {
background-color: rgba(26, 28, 24, .08);
}
}
.menu-content a:last-child {
border-bottom: none;
}
/* Ajustement pour la barre de navigation fixe */
.container {
display: flex; display: flex;
flex: 1;
height: 90vh;
margin-top: 9vh;
margin-left: -1%;
text-align: left;
width: 100vw;
} }
.notification-board .notification-item,
.notification-board .notification-element {
padding: 10px 16px;
color: var(--color-text-primary);
transition: background var(--transition-base);
}
/* Liste des groupes */ .notification-board .notification-item:hover,
.notification-board .notification-element:hover {
background: rgba(58, 80, 107, 0.1);
}
/* Layout */
.container {
margin-top: 90px;
display: grid;
grid-template-columns: clamp(220px, 22%, 280px) minmax(0, 1fr);
gap: 20px;
padding: 24px 32px 48px;
box-sizing: border-box;
}
.group-list { .group-list {
width: 25%; background: linear-gradient(180deg, #1f2c3d, #1b2735);
background-color: #1f2c3d; color: #fff;
color: white; border-radius: var(--radius-lg);
padding: 20px; padding: 22px 18px;
box-sizing: border-box; display: flex;
flex-direction: column;
gap: 16px;
box-shadow: var(--shadow-sm);
height: calc(100vh - 136px);
overflow-y: auto; overflow-y: auto;
border-right: 2px solid #2c3e50;
flex-shrink: 0;
padding-right: 10px;
height: 91vh;
} }
.group-list ul { .group-list ul {
cursor: pointer;
list-style: none; list-style: none;
margin: 0;
padding: 0; padding: 0;
padding-right: 10px; display: flex;
margin-left: 20px; flex-direction: column;
gap: 12px;
} }
.group-list li { .group-list li {
margin-bottom: 20px; background: rgba(255, 255, 255, 0.08);
padding: 15px; border-radius: var(--radius-md);
border-radius: 8px; padding: 14px 16px;
background-color: #273646; transition: transform var(--transition-base), background var(--transition-base), box-shadow var(--transition-base);
cursor: pointer; cursor: pointer;
transition: background-color 0.3s, box-shadow 0.3s;
} }
.group-list li:hover { .group-list li:hover,
background-color: #34495e; .group-list li.active {
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); background: rgba(255, 255, 255, 0.18);
transform: translateX(4px);
box-shadow: 0 14px 24px rgba(0, 0, 0, 0.2);
} }
.member-container {
.group-list .member-container {
position: relative; position: relative;
} }
.group-list .member-container button { .member-container button {
margin-left: 40px;
padding: 5px;
cursor: pointer;
background: var(--primary-color);
color: white;
border: 0px solid var(--primary-color);
border-radius: 50px;
position: absolute; position: absolute;
top: -25px; top: -16px;
right: -25px; right: -16px;
padding: 6px 12px;
border-radius: 999px;
border: none;
font-size: 0.75rem;
font-weight: 600;
background: var(--color-primary);
color: #fff;
cursor: pointer;
transition: background var(--transition-base);
} }
.group-list .member-container button:hover { .member-container button:hover {
background: var(--accent-color) background: var(--color-accent);
} }
/* Chat area */
/* Zone de chat */ .chat-area,
.chat-area { .signature-area {
background: var(--color-surface);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-md);
display: flex; display: flex;
flex-direction: column; flex-direction: column;
flex: 1; gap: 16px;
min-width: 0; padding: 20px;
background-color:#f1f1f1; min-height: calc(100vh - 136px);
border-radius: 10px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
margin: 1% 0% 0.5% 1%;
} }
/* En-tête du chat */ .chat-header,
.chat-header { .signature-header {
background-color: #34495e; background: var(--color-primary);
color: white; color: #fff;
padding: 15px; border-radius: var(--radius-md);
font-size: 20px; padding: 14px 18px;
font-weight: bold; font-weight: 600;
border-radius: 10px 10px 0 0; font-size: 1.1rem;
text-align: center; text-align: center;
} }
/* Messages */
.messages { .messages {
flex: 1; flex: 1;
padding: 20px;
overflow-y: auto; overflow-y: auto;
background-color: #f1f1f1; padding: 18px;
border-top: 1px solid #ddd; display: flex;
flex-direction: column;
gap: 12px;
background: rgba(58, 80, 107, 0.04);
border-radius: var(--radius-md);
border: 1px solid rgba(148, 163, 184, 0.25);
} }
.message-container { .message-container {
display: flex; display: flex;
margin: 8px;
}
.message-container .message {
align-self: flex-start;
}
.message-container .message.user {
align-self: flex-end;
margin-left: auto;
color: white;
} }
.message { .message {
max-width: 70%; max-width: 68%;
padding: 10px; padding: 10px 14px;
border-radius: 12px; border-radius: var(--radius-lg);
background:var(--secondary-color); background: var(--color-secondary);
margin: 2px 0; color: var(--color-text-primary);
box-shadow: 0 8px 16px rgba(15, 23, 42, 0.12);
position: relative;
display: inline-flex;
flex-direction: column;
gap: 6px;
} }
/* Messages de l'utilisateur */
.message.user { .message.user {
background: #2196f3; margin-left: auto;
color: white; background: linear-gradient(135deg, #2196f3, #1363b5);
color: #fff;
} }
.message-time { .message-time {
font-size: 0.7em; font-size: 0.75rem;
opacity: 0.7; opacity: 0.7;
margin-left: 0px; align-self: flex-end;
margin-top: 5px;
} }
/* Amélioration de l'esthétique des messages */
/* .message.user:before {
content: '';
position: absolute;
top: 10px;
right: -10px;
border: 10px solid transparent;
border-left-color: #3498db;
} */
/* Zone de saisie */
.input-area { .input-area {
padding: 10px;
background-color: #bdc3c7;
display: flex; display: flex;
align-items: center; align-items: center;
border-radius: 10px; gap: 12px;
margin: 1%; padding: 12px;
/* Alignement vertical */ border-radius: var(--radius-md);
background: rgba(148, 163, 184, 0.18);
} }
.input-area input[type="text"] { .input-area input[type='text'] {
flex: 1; flex: 1;
/* Prend l'espace restant */ border: 1px solid rgba(148, 163, 184, 0.4);
padding: 10px; border-radius: var(--radius-md);
border: 1px solid #ccc; padding: 10px 12px;
border-radius: 5px; font-size: 0.95rem;
} }
.input-area .attachment-icon { .input-area .attachment-icon {
margin: 0 10px; display: inline-flex;
cursor: pointer;
display: flex;
align-items: center; align-items: center;
justify-content: center;
width: 36px;
height: 36px;
border-radius: 50%;
background: rgba(58, 80, 107, 0.12);
color: var(--color-primary);
cursor: pointer;
} }
.input-area button { .input-area button {
padding: 10px; padding: 10px 18px;
margin-left: 10px;
background-color: #2980b9;
color: white;
border: none; border: none;
border-radius: 5px; border-radius: var(--radius-md);
background: linear-gradient(135deg, #2980b9, #1f608d);
color: #fff;
font-weight: 600;
cursor: pointer; cursor: pointer;
transition: transform var(--transition-base), box-shadow var(--transition-base);
} }
.input-area button:hover { .input-area button:hover {
background-color: #1f608d; transform: translateY(-1px);
box-shadow: 0 12px 22px rgba(41, 128, 185, 0.35);
} }
.tabs { .tabs {
display: flex; display: inline-flex;
margin: 20px 0px;
gap: 10px; gap: 10px;
} }
.tabs button { .tabs button {
padding: 10px 20px; padding: 8px 16px;
border-radius: var(--radius-md);
border: none;
background: var(--color-primary);
color: #fff;
font-weight: 600;
cursor: pointer; cursor: pointer;
background: var(--primary-color); transition: transform var(--transition-base), box-shadow var(--transition-base);
color: white;
border: 0px solid var(--primary-color);
margin-right: 5px;
border-radius: 10px;
} }
.tabs button:hover { .tabs button:hover {
background: var(--secondary-color); transform: translateY(-1px);
color: var(--primary-color); box-shadow: 0 10px 18px rgba(58, 80, 107, 0.25);
} }
/* Signature */
.signature-area { .signature-area {
display: flex; gap: 18px;
flex-direction: column; transition: opacity 0.3s ease;
flex: 1;
min-width: 0;
background-color:#f1f1f1;
border-radius: 10px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
margin: 1% 0% 0.5% 1%;
transition: all 1s ease 0.1s;
visibility: visible;
} }
.signature-area.hidden { .signature-area.hidden {
opacity: 0; display: none !important;
visibility: hidden;
display: none;
pointer-events: none;
}
.signature-header {
display: flex;
align-items: center;
justify-content: center;
background-color: var(--primary-color);
color: white;
border-radius: 10px 10px 0 0;
padding-left: 4%;
} }
.signature-content { .signature-content {
padding: 10px; background: rgba(58, 80, 107, 0.08);
background-color: var(--secondary-color); color: var(--color-text-primary);
color: var(--primary-color); border-radius: var(--radius-md);
height: 100%; padding: 16px;
border-radius: 10px;
margin: 1%;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; gap: 14px;
} }
.signature-description { .signature-description,
height: 20%; .signature-documents {
width: 100%;
margin: 0% 10% 0% 10%;
overflow: auto;
display: flex; display: flex;
gap: 12px;
overflow-x: auto;
padding-bottom: 6px;
} }
.signature-description li { .signature-description li {
margin: 1% 0% 1% 0%;
list-style: none; list-style: none;
padding: 2%; padding: 10px 12px;
border-radius: 10px; border-radius: var(--radius-md);
background-color: var(--primary-color); background: var(--color-primary);
color: var(--secondary-color); color: #fff;
width: 20%; min-width: 140px;
text-align: center; text-align: center;
cursor: pointer; cursor: pointer;
font-weight: bold; transition: transform var(--transition-base), background var(--transition-base);
margin-right: 2%;
overflow: auto;
} }
.signature-description li .member-list { .signature-description li:hover {
margin-left: -30%; background: var(--color-accent);
transform: translateY(-2px);
} }
.signature-description li .member-list li { .new-request-btn,
width: 100%; #request-document-button,
} .sign-button {
padding: 10px 18px;
.signature-description li .member-list li:hover { border-radius: var(--radius-md);
background-color: var(--secondary-color);
color: var(--primary-color);
}
.signature-documents {
height: 80%;
width: 100%;
margin: 0% 10% 0% 10%;
overflow: auto;
display: flex;
}
.signature-documents-header {
display: flex;
width: 100%;
height: 15%;
align-items: center;
}
#request-document-button {
background-color: var(--primary-color);
color: white;
border: none; border: none;
border-radius: 10px; background: linear-gradient(135deg, var(--color-success), #2e7d32);
padding: 8px; color: #fff;
font-weight: 600;
cursor: pointer; cursor: pointer;
margin-left: 5%; transition: transform var(--transition-base), box-shadow var(--transition-base);
font-weight: bold;
} }
#request-document-button:hover { .new-request-btn:hover,
background-color: var(--accent-color); #request-document-button:hover,
font-weight: bold; .sign-button:hover {
transform: translateY(-1px);
box-shadow: 0 12px 24px rgba(76, 175, 80, 0.32);
} }
#close-signature { /* Modals */
cursor: pointer; .modal,
align-items: center; .notifications-modal,
margin-left: auto; .qr-modal,
margin-right: 2%; .request-modal,
border-radius: 50%; .modal-document,
background-color: var(--primary-color); .pairing-modal {
color: white;
border: none;
padding: -3%;
margin-top: -5%;
font-size: 1em;
font-weight: bold;
}
#close-signature:hover {
background-color: var(--secondary-color);
color: var(--primary-color);
}
/* REQUEST MODAL */
.request-modal {
position: fixed; position: fixed;
top: 0; inset: 0;
left: 0; background: rgba(15, 23, 42, 0.55);
width: 100%; display: none;
height: 100%; align-items: center;
background: rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center; justify-content: center;
align-items: center; backdrop-filter: blur(10px);
z-index: 1000; z-index: 60;
} padding: 24px;
.modal-content {
background-color: var(--secondary-color);
padding: 20px;
border-radius: 8px;
position: relative;
min-width: 300px;
}
.close-modal {
position: absolute;
top: 10px;
right: 10px;
border: none;
background: none;
font-size: 1.5em;
cursor: pointer;
font-weight: bold;
}
.close-modal:hover {
color: var(--accent-color);
}
.modal-members {
display: flex;
justify-content: space-between;
}
.modal-members ul li{
list-style: none;
}
.file-upload-container {
margin: 10px 0;
}
.file-list {
margin-top: 10px;
}
.file-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 5px;
margin: 5px 0;
background: var(--background-color-secondary);
border-radius: 4px;
}
.remove-file {
background: none;
border: none;
color: var(--text-color);
cursor: pointer;
padding: 0 5px;
}
.remove-file:hover {
color: var(--error-color);
}
#message-input {
width: 100%;
height: 50px;
resize: none;
padding: 10px;
box-sizing: border-box; box-sizing: border-box;
overflow: auto; }
max-width: 100%;
border-radius: 10px; .modal.is-visible,
.notifications-modal.is-visible,
.qr-modal.is-visible,
.request-modal.is-visible,
.modal-document.is-visible,
.pairing-modal.is-visible {
display: flex;
}
.modal-content,
.notifications-content,
.qr-modal-content,
.request-modal .modal-content,
.modal-document .modal-content,
.pairing-modal-content {
background: var(--color-surface);
border-radius: var(--radius-lg);
padding: 24px;
width: min(480px, 100%);
max-height: 80vh;
overflow-y: auto;
box-shadow: var(--shadow-lg);
position: relative;
display: flex;
flex-direction: column;
gap: 16px;
}
.close-modal,
.close-button,
.close-qr-modal,
.close-signature,
.close-contract-popup {
position: absolute;
top: 14px;
right: 14px;
border: none;
background: transparent;
font-size: 1.4rem;
color: var(--color-text-secondary);
cursor: pointer;
}
.close-modal:hover,
.close-button:hover,
.close-qr-modal:hover,
.close-signature:hover,
.close-contract-popup:hover {
color: var(--color-primary);
}
.modal-footer,
.button-group,
.header-buttons {
display: flex;
justify-content: flex-end;
gap: 12px;
} }
/* Responsive */ /* Responsive */
@media screen and (max-width: 768px) { @media (max-width: 1024px) {
.container {
grid-template-columns: 1fr;
padding: 18px 18px 36px;
}
.group-list { .group-list {
display: none; height: auto;
/* Masquer la liste des groupes sur les petits écrans */ max-height: none;
}
.chat-area {
margin: 0;
} }
} }
@media (max-width: 768px) {
::-webkit-scrollbar { .nav-wrapper {
width: 5px; height: auto;
height: 5px; flex-direction: column;
align-items: flex-start;
gap: 8px;
padding: 14px 18px;
} }
::-webkit-scrollbar-track { .nav-right-icons {
background: var(--primary-color); align-self: flex-end;
border-radius: 5px;
} }
::-webkit-scrollbar-thumb { .container {
background: var(--secondary-color); padding: 16px 14px 32px;
border-radius: 5px;
} }
::-webkit-scrollbar-thumb:hover { .chat-area,
background: var(--accent-color); .signature-area {
min-height: auto;
}
}
@media (max-width: 480px) {
.message {
max-width: 85%;
}
.input-area {
flex-direction: column;
align-items: stretch;
}
.input-area button {
width: 100%;
}
.tabs {
flex-wrap: wrap;
}
.tabs button {
width: 100%;
}
} }

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -355,7 +355,7 @@ export class SecureCredentialsComponent {
/** /**
* Gère l'événement de création de credentials * Gère l'événement de création de credentials
*/ */
private handleCredentialsCreated(data: any): void { private handleCredentialsCreated(_data: any): void {
secureLogger.info('Credentials created', { component: 'SecureCredentials' }); secureLogger.info('Credentials created', { component: 'SecureCredentials' });
this.showMessage('Credentials créés avec succès !', 'success'); this.showMessage('Credentials créés avec succès !', 'success');
this.updateUI(); this.updateUI();

View File

@ -74,29 +74,6 @@
width: 0%; width: 0%;
transition: width 0.3s ease; transition: width 0.3s ease;
} }
.continue-btn {
width: 100%;
background: #667eea;
color: white;
border: none;
border-radius: 8px;
padding: 15px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
margin-top: 20px;
transition: background 0.3s ease;
}
.continue-btn:hover {
background: #5a6fd8;
}
.continue-btn:disabled {
background: #ccc;
cursor: not-allowed;
}
</style> </style>
</head> </head>
<body> <body>
@ -111,8 +88,6 @@
<div class="progress"> <div class="progress">
<div class="progress-bar" id="progressBar"></div> <div class="progress-bar" id="progressBar"></div>
</div> </div>
<button class="continue-btn" id="continueBtn" disabled>Synchroniser les blocs</button>
</div> </div>
<script type="module" src="./birthday-setup.ts"></script> <script type="module" src="./birthday-setup.ts"></script>

View File

@ -178,11 +178,21 @@ document.addEventListener('DOMContentLoaded', async () => {
const status = document.getElementById('status') as HTMLDivElement; const status = document.getElementById('status') as HTMLDivElement;
const progressBar = document.getElementById('progressBar') as HTMLDivElement; const progressBar = document.getElementById('progressBar') as HTMLDivElement;
const continueBtn = document.getElementById('continueBtn') as HTMLButtonElement;
let lastStatusMessage = '';
let lastStatusType: 'loading' | 'success' | 'error' | null = null;
function updateStatus(message: string, type: 'loading' | 'success' | 'error') { function updateStatus(message: string, type: 'loading' | 'success' | 'error') {
if (lastStatusMessage === message && lastStatusType === type) {
return;
}
lastStatusMessage = message;
lastStatusType = type;
status.textContent = message; status.textContent = message;
status.className = `status ${type}`; status.className = `status ${type}`;
status.setAttribute('data-status', type);
} }
function updateProgress(percent: number) { function updateProgress(percent: number) {
@ -228,14 +238,4 @@ document.addEventListener('DOMContentLoaded', async () => {
isInitializing = false; isInitializing = false;
} }
// Gestion du bouton continuer
continueBtn.addEventListener('click', async () => {
secureLogger.info('🏠 Redirecting to main application...', { component: 'BirthdaySetup' });
// Rediriger vers l'application principale
secureLogger.debug('🎂 Birthday setup completed, checking storage state...', {
component: 'BirthdaySetup',
});
const { checkStorageStateAndNavigate } = await import('../../router');
await checkStorageStateAndNavigate();
});
}); });

View File

@ -125,29 +125,6 @@
.sync-status.error { .sync-status.error {
color: #dc3545; color: #dc3545;
} }
.continue-btn {
width: 100%;
background: #667eea;
color: white;
border: none;
border-radius: 8px;
padding: 15px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
margin-top: 20px;
transition: background 0.3s ease;
}
.continue-btn:hover:not(:disabled) {
background: #5a6fd8;
}
.continue-btn:disabled {
background: #ccc;
cursor: not-allowed;
}
</style> </style>
</head> </head>
<body> <body>

View File

@ -182,7 +182,14 @@ document.addEventListener('DOMContentLoaded', async () => {
const originalConsoleLog = console.log; const originalConsoleLog = console.log;
console.log = (...args: any[]) => { console.log = (...args: any[]) => {
const message = args.join(' '); const message = args.join(' ');
if (message.includes('Scan progress:')) { const containsProgress = message.includes('Scan progress:');
secureLogger.debug('SDK console output intercepted', {
component: 'BlockSync',
containsProgress
});
if (containsProgress) {
// Extraire les informations de progression // Extraire les informations de progression
const progressMatch = message.match(/Scan progress: (\d+)\/(\d+) \((\d+)%\)/); const progressMatch = message.match(/Scan progress: (\d+)\/(\d+) \((\d+)%\)/);
if (progressMatch) { if (progressMatch) {
@ -201,7 +208,12 @@ document.addEventListener('DOMContentLoaded', async () => {
updateSyncItem('blocksScanned', currentBlock.toString(), 'pending'); updateSyncItem('blocksScanned', currentBlock.toString(), 'pending');
updateSyncItem('blocksToScan', (totalBlocks - currentBlock).toString(), 'pending'); updateSyncItem('blocksToScan', (totalBlocks - currentBlock).toString(), 'pending');
// Progress message available if needed: `Bloc ${currentBlock}/${totalBlocks} (${percentage}%)` secureLogger.debug('SDK progress update parsed', {
component: 'BlockSync',
currentBlock,
totalBlocks,
percentage
});
} }
} }
// Appeler la fonction console.log originale // Appeler la fonction console.log originale

View File

@ -34,6 +34,7 @@
<script type="module"> <script type="module">
import { MessageType } from '../models/process.model'; import { MessageType } from '../models/process.model';
import IframePairingService from '../services/iframe-pairing.service'; import IframePairingService from '../services/iframe-pairing.service';
import { secureLogger } from '../services/secure-logger';
// Initialize the iframe pairing service // Initialize the iframe pairing service
const pairingService = IframePairingService.getInstance(); const pairingService = IframePairingService.getInstance();
@ -44,11 +45,16 @@
switch (type) { switch (type) {
case MessageType.PAIRING_4WORDS_CREATE: case MessageType.PAIRING_4WORDS_CREATE:
console.log('🔐 Parent requested pairing creation'); secureLogger.info('Parent requested pairing creation', {
component: 'IframePairingPage'
});
pairingService.createPairing(); pairingService.createPairing();
break; break;
case MessageType.PAIRING_4WORDS_JOIN: case MessageType.PAIRING_4WORDS_JOIN:
console.log('🔗 Parent requested pairing join with words:', data.words); secureLogger.info('Parent requested pairing join', {
component: 'IframePairingPage',
hasWords: Boolean(data?.words)
});
pairingService.joinPairing(data.words); pairingService.joinPairing(data.words);
break; break;
} }
@ -63,7 +69,9 @@
'*' '*'
); );
console.log('🔗 Hidden iframe pairing service ready'); secureLogger.info('Hidden iframe pairing service ready', {
component: 'IframePairingPage'
});
</script> </script>
</body> </body>
</html> </html>

View File

@ -74,29 +74,6 @@
width: 0%; width: 0%;
transition: width 0.3s ease; transition: width 0.3s ease;
} }
.continue-btn {
width: 100%;
background: #667eea;
color: white;
border: none;
border-radius: 8px;
padding: 15px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
margin-top: 20px;
transition: background 0.3s ease;
}
.continue-btn:hover {
background: #5a6fd8;
}
.continue-btn:disabled {
background: #ccc;
cursor: not-allowed;
}
</style> </style>
</head> </head>
<body> <body>
@ -111,8 +88,6 @@
<div class="progress"> <div class="progress">
<div class="progress-bar" id="progressBar"></div> <div class="progress-bar" id="progressBar"></div>
</div> </div>
</div> </div>
<script type="module" src="./wallet-setup.ts"></script> <script type="module" src="./wallet-setup.ts"></script>

View File

@ -14,9 +14,20 @@ document.addEventListener('DOMContentLoaded', async () => {
const progressBar = document.getElementById('progressBar') as HTMLDivElement; const progressBar = document.getElementById('progressBar') as HTMLDivElement;
const continueBtn = document.getElementById('continueBtn') as HTMLButtonElement | null; const continueBtn = document.getElementById('continueBtn') as HTMLButtonElement | null;
let lastStatusMessage = '';
let lastStatusType: 'loading' | 'success' | 'error' | null = null;
function updateStatus(message: string, type: 'loading' | 'success' | 'error') { function updateStatus(message: string, type: 'loading' | 'success' | 'error') {
if (lastStatusMessage === message && lastStatusType === type) {
return;
}
lastStatusMessage = message;
lastStatusType = type;
status.textContent = message; status.textContent = message;
status.className = `status ${type}`; status.className = `status ${type}`;
status.setAttribute('data-status', type);
} }
function updateProgress(percent: number) { function updateProgress(percent: number) {
@ -521,10 +532,12 @@ document.addEventListener('DOMContentLoaded', async () => {
} }
// Gestion du bouton continuer // Gestion du bouton continuer
if (continueBtn) {
continueBtn.addEventListener('click', async () => { continueBtn.addEventListener('click', async () => {
secureLogger.info('🔗 Redirecting to birthday setup...', { component: 'WalletSetup' }); secureLogger.info('🔗 Redirecting to birthday setup...', { component: 'WalletSetup' });
secureLogger.info('💰 Wallet setup completed, redirecting to birthday configuration...', { component: 'WalletSetup' }); secureLogger.info('💰 Wallet setup completed, redirecting to birthday configuration...', { component: 'WalletSetup' });
// Rediriger directement vers la page de configuration de la date anniversaire // Rediriger directement vers la page de configuration de la date anniversaire
window.location.href = '/src/pages/birthday-setup/birthday-setup.html'; window.location.href = '/src/pages/birthday-setup/birthday-setup.html';
}); });
}
}); });

View File

@ -21,7 +21,7 @@ const routes: { [key: string]: string } = {
'wallet-setup': '/src/pages/wallet-setup/wallet-setup.html', 'wallet-setup': '/src/pages/wallet-setup/wallet-setup.html',
'birthday-setup': '/src/pages/birthday-setup/birthday-setup.html', 'birthday-setup': '/src/pages/birthday-setup/birthday-setup.html',
'block-sync': '/src/pages/block-sync/block-sync.html', 'block-sync': '/src/pages/block-sync/block-sync.html',
'pairing': '/src/pages/pairing/pairing.html', pairing: '/src/pages/pairing/pairing.html',
}; };
export let currentRoute = ''; export let currentRoute = '';
@ -37,7 +37,9 @@ export let currentRoute = '';
* - Sinon security-setup * - Sinon security-setup
*/ */
export async function checkStorageStateAndNavigate(): Promise<void> { export async function checkStorageStateAndNavigate(): Promise<void> {
secureLogger.debug('🔍 Checking storage state to determine next step...', { component: 'Router' }); secureLogger.debug('🔍 Checking storage state to determine next step...', {
component: 'Router',
});
try { try {
// Utiliser DeviceReaderService pour éviter d'initialiser WebAssembly // Utiliser DeviceReaderService pour éviter d'initialiser WebAssembly
@ -49,7 +51,9 @@ export async function checkStorageStateAndNavigate(): Promise<void> {
if (!pbkdf2KeyResult) { if (!pbkdf2KeyResult) {
// Aucune clé PBKDF2 trouvée, commencer par la configuration de sécurité // Aucune clé PBKDF2 trouvée, commencer par la configuration de sécurité
secureLogger.info('🔐 No PBKDF2 key found, navigating to security-setup', { component: 'Router' }); secureLogger.info('🔐 No PBKDF2 key found, navigating to security-setup', {
component: 'Router',
});
await navigate('security-setup'); await navigate('security-setup');
return; return;
} }
@ -57,24 +61,29 @@ export async function checkStorageStateAndNavigate(): Promise<void> {
// Vérifier si le wallet existe (même avec birthday = 0) // Vérifier si le wallet existe (même avec birthday = 0)
const device = await deviceReader.getDeviceFromDatabase(); const device = await deviceReader.getDeviceFromDatabase();
if (!device?.sp_wallet) { if (!device?.sp_wallet) {
secureLogger.info('💰 Wallet does not exist, navigating to wallet-setup', { component: 'Router' }); secureLogger.info('💰 Wallet does not exist, navigating to wallet-setup', {
component: 'Router',
});
await navigate('wallet-setup'); await navigate('wallet-setup');
return; return;
} }
// Vérifier si la date anniversaire est configurée (wallet avec birthday > 0) // Vérifier si la date anniversaire est configurée (wallet avec birthday > 0)
if (device.sp_wallet.birthday && device.sp_wallet.birthday > 0) { if (device.sp_wallet.birthday && device.sp_wallet.birthday > 0) {
secureLogger.info('🎂 Birthday is configured, navigating to pairing', { component: 'Router' }); secureLogger.info('🎂 Birthday is configured, navigating to pairing', {
component: 'Router',
});
// Rediriger vers la page de pairing standalone // Rediriger vers la page de pairing standalone
await navigate('pairing'); await navigate('pairing');
return; return;
} }
// Wallet existe mais birthday pas configuré // Wallet existe mais birthday pas configuré
secureLogger.info('💰 Wallet exists but birthday not set, navigating to birthday-setup', { component: 'Router' }); secureLogger.info('💰 Wallet exists but birthday not set, navigating to birthday-setup', {
component: 'Router',
});
await navigate('birthday-setup'); await navigate('birthday-setup');
return; return;
} catch (error) { } catch (error) {
secureLogger.error('❌ Error checking storage state:', error, { component: 'Router' }); secureLogger.error('❌ Error checking storage state:', error, { component: 'Router' });
// En cas d'erreur, commencer par la configuration de sécurité // En cas d'erreur, commencer par la configuration de sécurité
@ -112,7 +121,13 @@ async function handleLocation(path: string) {
secureLogger.info('📍 Route HTML:', { component: 'Router', data: routeHtml }); secureLogger.info('📍 Route HTML:', { component: 'Router', data: routeHtml });
// Pour les pages de setup, rediriger directement vers la page HTML // Pour les pages de setup, rediriger directement vers la page HTML
if (path === 'security-setup' || path === 'wallet-setup' || path === 'birthday-setup' || path === 'block-sync' || path === 'pairing') { if (
path === 'security-setup' ||
path === 'wallet-setup' ||
path === 'birthday-setup' ||
path === 'block-sync' ||
path === 'pairing'
) {
secureLogger.info('📍 Processing setup route:', { component: 'Router', data: path }); secureLogger.info('📍 Processing setup route:', { component: 'Router', data: path });
window.location.href = routeHtml; window.location.href = routeHtml;
return; return;
@ -161,13 +176,17 @@ async function handleLocation(path: string) {
switch (path) { switch (path) {
case 'process': case 'process':
// Process functionality removed - redirect to account // Process functionality removed - redirect to account
secureLogger.warn('Process functionality has been removed, redirecting to account', { component: 'Router' }); secureLogger.warn('Process functionality has been removed, redirecting to account', {
component: 'Router',
});
await navigate('account'); await navigate('account');
break; break;
case 'process-element': case 'process-element':
// Process element functionality removed // Process element functionality removed
secureLogger.warn('Process element functionality has been removed', { component: 'Router' }); secureLogger.warn('Process element functionality has been removed', {
component: 'Router',
});
break; break;
case 'account': case 'account':
@ -217,17 +236,23 @@ export async function init(): Promise<void> {
// Vérifier l'état du storage et naviguer vers la page appropriée // Vérifier l'état du storage et naviguer vers la page appropriée
// Cette fonction est maintenant légère et ne nécessite pas WebAssembly // Cette fonction est maintenant légère et ne nécessite pas WebAssembly
secureLogger.debug('🔍 Checking storage state and navigating to appropriate page...', { component: 'Router' }); secureLogger.debug('🔍 Checking storage state and navigating to appropriate page...', {
component: 'Router',
});
await checkStorageStateAndNavigate(); await checkStorageStateAndNavigate();
secureLogger.info('✅ Application initialization completed successfully', { component: 'Router' }); secureLogger.info('✅ Application initialization completed successfully', {
component: 'Router',
});
} catch (error) { } catch (error) {
secureLogger.error('❌ Application initialization failed:', error, { component: 'Router' }); secureLogger.error('❌ Application initialization failed:', error, { component: 'Router' });
// Handle WebAssembly memory errors specifically // Handle WebAssembly memory errors specifically
if (error instanceof RangeError && error.message.includes('WebAssembly.instantiate')) { if (error instanceof RangeError && error.message.includes('WebAssembly.instantiate')) {
secureLogger.error('🚨 WebAssembly memory error detected', { component: 'Router' }); secureLogger.error('🚨 WebAssembly memory error detected', { component: 'Router' });
secureLogger.info('💡 Try refreshing the page or closing other tabs to free memory', { component: 'Router' }); secureLogger.info('💡 Try refreshing the page or closing other tabs to free memory', {
component: 'Router',
});
// Show user-friendly error message // Show user-friendly error message
alert('⚠️ Insufficient memory for WebAssembly. Please refresh the page or close other tabs.'); alert('⚠️ Insufficient memory for WebAssembly. Please refresh the page or close other tabs.');
@ -335,7 +360,10 @@ export async function registerAllListeners() {
secureLogger.info('🧱 Creating pairing process...', { component: 'Router' }); secureLogger.info('🧱 Creating pairing process...', { component: 'Router' });
const createPairingProcessReturn = await services.createPairingProcess('', [myAddress]); const createPairingProcessReturn = await services.createPairingProcess('', [myAddress]);
secureLogger.info('🧾 Pairing process created:', { component: 'Router', data: createPairingProcessReturn }); secureLogger.info('🧾 Pairing process created:', {
component: 'Router',
data: createPairingProcessReturn,
});
const pairingId = createPairingProcessReturn.updated_process?.process_id; const pairingId = createPairingProcessReturn.updated_process?.process_id;
const stateId = createPairingProcessReturn.updated_process?.current_process?.states[0] const stateId = createPairingProcessReturn.updated_process?.current_process?.states[0]
@ -347,32 +375,51 @@ export async function registerAllListeners() {
secureLogger.info('🔒 Registering device as paired...', { component: 'Router' }); secureLogger.info('🔒 Registering device as paired...', { component: 'Router' });
services.pairDevice(pairingId, [myAddress]); services.pairDevice(pairingId, [myAddress]);
secureLogger.info('🧠 Handling API return for createPairingProcess...', { component: 'Router' }); secureLogger.info('🧠 Handling API return for createPairingProcess...', {
component: 'Router',
});
await services.handleApiReturn(createPairingProcessReturn); await services.handleApiReturn(createPairingProcessReturn);
secureLogger.debug('🔍 DEBUG: About to create PRD update...', { component: 'Router' }); secureLogger.debug('🔍 DEBUG: About to create PRD update...', { component: 'Router' });
secureLogger.info('🧰 Creating PRD update...', { component: 'Router' }); secureLogger.info('🧰 Creating PRD update...', { component: 'Router' });
const createPrdUpdateReturn = await services.createPrdUpdate(pairingId, stateId); const createPrdUpdateReturn = await services.createPrdUpdate(pairingId, stateId);
secureLogger.info('🧾 PRD update result:', { component: 'Router', data: createPrdUpdateReturn }); secureLogger.info('🧾 PRD update result:', {
component: 'Router',
data: createPrdUpdateReturn,
});
await services.handleApiReturn(createPrdUpdateReturn); await services.handleApiReturn(createPrdUpdateReturn);
secureLogger.debug('✅ DEBUG: PRD update completed successfully!', { component: 'Router' }); secureLogger.debug('✅ DEBUG: PRD update completed successfully!', { component: 'Router' });
secureLogger.debug('🔍 DEBUG: About to approve change...', { component: 'Router' }); secureLogger.debug('🔍 DEBUG: About to approve change...', { component: 'Router' });
secureLogger.info('✅ Approving change...', { component: 'Router' }); secureLogger.info('✅ Approving change...', { component: 'Router' });
const approveChangeReturn = await services.approveChange(pairingId, stateId); const approveChangeReturn = await services.approveChange(pairingId, stateId);
secureLogger.info('📜 Approve change result:', { component: 'Router', data: approveChangeReturn }); secureLogger.info('📜 Approve change result:', {
component: 'Router',
data: approveChangeReturn,
});
await services.handleApiReturn(approveChangeReturn); await services.handleApiReturn(approveChangeReturn);
secureLogger.debug('✅ DEBUG: approveChange completed successfully!', { component: 'Router' }); secureLogger.debug('✅ DEBUG: approveChange completed successfully!', {
component: 'Router',
});
secureLogger.debug('🔍 DEBUG: approveChange completed, about to call waitForPairingCommitment...', { component: 'Router' }); secureLogger.debug(
secureLogger.info('⏳ Waiting for pairing process to be committed...', { component: 'Router' }); '🔍 DEBUG: approveChange completed, about to call waitForPairingCommitment...',
{ component: 'Router' }
);
secureLogger.info('⏳ Waiting for pairing process to be committed...', {
component: 'Router',
});
await services.waitForPairingCommitment(pairingId); await services.waitForPairingCommitment(pairingId);
secureLogger.debug('✅ DEBUG: waitForPairingCommitment completed successfully!', { component: 'Router' }); secureLogger.debug('✅ DEBUG: waitForPairingCommitment completed successfully!', {
component: 'Router',
});
secureLogger.debug('🔍 DEBUG: About to call confirmPairing...', { component: 'Router' }); secureLogger.debug('🔍 DEBUG: About to call confirmPairing...', { component: 'Router' });
secureLogger.info('🔁 Confirming pairing...', { component: 'Router' }); secureLogger.info('🔁 Confirming pairing...', { component: 'Router' });
await services.confirmPairing(pairingId); await services.confirmPairing(pairingId);
secureLogger.debug('✅ DEBUG: confirmPairing completed successfully!', { component: 'Router' }); secureLogger.debug('✅ DEBUG: confirmPairing completed successfully!', {
component: 'Router',
});
secureLogger.info('🎉 Pairing successfully completed!', { component: 'Router' }); secureLogger.info('🎉 Pairing successfully completed!', { component: 'Router' });
@ -382,7 +429,10 @@ export async function registerAllListeners() {
pairingId, pairingId,
messageId: event.data.messageId, messageId: event.data.messageId,
}; };
secureLogger.info('📤 Sending PAIRING_CREATED message to UI:', { component: 'Router', data: successMsg }); secureLogger.info('📤 Sending PAIRING_CREATED message to UI:', {
component: 'Router',
data: successMsg,
});
window.parent.postMessage(successMsg, event.origin); window.parent.postMessage(successMsg, event.origin);
} catch (e) { } catch (e) {
const errorMsg = `❌ Failed to create pairing process: ${e}`; const errorMsg = `❌ Failed to create pairing process: ${e}`;
@ -591,7 +641,9 @@ export async function registerAllListeners() {
}; };
const handleGetPairingId = async (event: MessageEvent) => { const handleGetPairingId = async (event: MessageEvent) => {
if (event.data.type !== MessageType.GET_PAIRING_ID) {return;} if (event.data.type !== MessageType.GET_PAIRING_ID) {
return;
}
if (!services.isPaired()) { if (!services.isPaired()) {
const errorMsg = 'Device not paired'; const errorMsg = 'Device not paired';
@ -625,7 +677,9 @@ export async function registerAllListeners() {
}; };
const handleCreateProcess = async (event: MessageEvent) => { const handleCreateProcess = async (event: MessageEvent) => {
if (event.data.type !== MessageType.CREATE_PROCESS) {return;} if (event.data.type !== MessageType.CREATE_PROCESS) {
return;
}
if (!services.isPaired()) { if (!services.isPaired()) {
const errorMsg = 'Device not paired'; const errorMsg = 'Device not paired';
@ -674,7 +728,9 @@ export async function registerAllListeners() {
}; };
const handleNotifyUpdate = async (event: MessageEvent) => { const handleNotifyUpdate = async (event: MessageEvent) => {
if (event.data.type !== MessageType.NOTIFY_UPDATE) {return;} if (event.data.type !== MessageType.NOTIFY_UPDATE) {
return;
}
if (!services.isPaired()) { if (!services.isPaired()) {
const errorMsg = 'Device not paired'; const errorMsg = 'Device not paired';
@ -712,7 +768,9 @@ export async function registerAllListeners() {
}; };
const handleValidateState = async (event: MessageEvent) => { const handleValidateState = async (event: MessageEvent) => {
if (event.data.type !== MessageType.VALIDATE_STATE) {return;} if (event.data.type !== MessageType.VALIDATE_STATE) {
return;
}
if (!services.isPaired()) { if (!services.isPaired()) {
const errorMsg = 'Device not paired'; const errorMsg = 'Device not paired';
@ -747,7 +805,9 @@ export async function registerAllListeners() {
}; };
const handleUpdateProcess = async (event: MessageEvent) => { const handleUpdateProcess = async (event: MessageEvent) => {
if (event.data.type !== MessageType.UPDATE_PROCESS) {return;} if (event.data.type !== MessageType.UPDATE_PROCESS) {
return;
}
if (!services.isPaired()) { if (!services.isPaired()) {
const errorMsg = 'Device not paired'; const errorMsg = 'Device not paired';
@ -831,7 +891,9 @@ export async function registerAllListeners() {
} }
} }
if (privateData[field]) {continue;} if (privateData[field]) {
continue;
}
// We've get back all the way to the first state without seeing it, it's a new public field // We've get back all the way to the first state without seeing it, it's a new public field
publicData[field] = newData[field]; publicData[field] = newData[field];
@ -858,7 +920,9 @@ export async function registerAllListeners() {
}; };
const handleDecodePublicData = async (event: MessageEvent) => { const handleDecodePublicData = async (event: MessageEvent) => {
if (event.data.type !== MessageType.DECODE_PUBLIC_DATA) {return;} if (event.data.type !== MessageType.DECODE_PUBLIC_DATA) {
return;
}
if (!services.isPaired()) { if (!services.isPaired()) {
const errorMsg = 'Device not paired'; const errorMsg = 'Device not paired';
@ -892,7 +956,9 @@ export async function registerAllListeners() {
}; };
const handleHashValue = async (event: MessageEvent) => { const handleHashValue = async (event: MessageEvent) => {
if (event.data.type !== MessageType.HASH_VALUE) {return;} if (event.data.type !== MessageType.HASH_VALUE) {
return;
}
secureLogger.info('handleHashValue', { component: 'Router', data: event.data }); secureLogger.info('handleHashValue', { component: 'Router', data: event.data });
@ -921,7 +987,9 @@ export async function registerAllListeners() {
}; };
const handleGetMerkleProof = async (event: MessageEvent) => { const handleGetMerkleProof = async (event: MessageEvent) => {
if (event.data.type !== MessageType.GET_MERKLE_PROOF) {return;} if (event.data.type !== MessageType.GET_MERKLE_PROOF) {
return;
}
try { try {
const { accessToken, processState, attributeName } = event.data; const { accessToken, processState, attributeName } = event.data;
@ -948,7 +1016,9 @@ export async function registerAllListeners() {
}; };
const handleValidateMerkleProof = async (event: MessageEvent) => { const handleValidateMerkleProof = async (event: MessageEvent) => {
if (event.data.type !== MessageType.VALIDATE_MERKLE_PROOF) {return;} if (event.data.type !== MessageType.VALIDATE_MERKLE_PROOF) {
return;
}
try { try {
const { accessToken, merkleProof, documentHash } = event.data; const { accessToken, merkleProof, documentHash } = event.data;
@ -1017,7 +1087,9 @@ export async function registerAllListeners() {
await handleCreateProcess(event); await handleCreateProcess(event);
break; break;
case MessageType.CREATE_CONVERSATION: case MessageType.CREATE_CONVERSATION:
secureLogger.warn('CREATE_CONVERSATION functionality has been removed', { component: 'Router' }); secureLogger.warn('CREATE_CONVERSATION functionality has been removed', {
component: 'Router',
});
break; break;
case MessageType.NOTIFY_UPDATE: case MessageType.NOTIFY_UPDATE:
await handleNotifyUpdate(event); await handleNotifyUpdate(event);
@ -1119,7 +1191,9 @@ async function handlePairing4WordsJoin(event: MessageEvent) {
async function cleanPage() { async function cleanPage() {
const container = document.querySelector('#containerId'); const container = document.querySelector('#containerId');
if (container) {container.innerHTML = '';} if (container) {
container.innerHTML = '';
}
} }
// Essential functions are now handled directly in the application // Essential functions are now handled directly in the application
@ -1148,7 +1222,9 @@ async function cleanPage() {
// Reload the page to restart the application // Reload the page to restart the application
window.location.reload(); window.location.reload();
} catch (error) { } catch (error) {
secureLogger.error('❌ Erreur lors de la suppression du compte:', error, { component: 'Router' }); secureLogger.error('❌ Erreur lors de la suppression du compte:', error, {
component: 'Router',
});
alert('❌ Erreur lors de la suppression du compte. Veuillez réessayer.'); alert('❌ Erreur lors de la suppression du compte. Veuillez réessayer.');
} }
} else { } else {
@ -1161,7 +1237,9 @@ document.addEventListener('navigate', (e: Event) => {
const event = e as CustomEvent<{ page: string; processId?: string }>; const event = e as CustomEvent<{ page: string; processId?: string }>;
if (event.detail.page === 'chat') { if (event.detail.page === 'chat') {
const container = document.querySelector('.container'); const container = document.querySelector('.container');
if (container) {container.innerHTML = '';} if (container) {
container.innerHTML = '';
}
//initChat(); //initChat();
@ -1188,7 +1266,9 @@ async function handleSecurityKeyManagement(): Promise<boolean> {
const currentMode = await securityModeService.getCurrentMode(); const currentMode = await securityModeService.getCurrentMode();
if (!currentMode) { if (!currentMode) {
secureLogger.info('🔐 No security mode configured, redirecting to security setup...', { component: 'Router' }); secureLogger.info('🔐 No security mode configured, redirecting to security setup...', {
component: 'Router',
});
window.location.href = '/src/pages/security-setup/security-setup.html'; window.location.href = '/src/pages/security-setup/security-setup.html';
return false; return false;
} }
@ -1202,11 +1282,15 @@ async function handleSecurityKeyManagement(): Promise<boolean> {
const hasCredentials = await secureCredentialsService.hasCredentials(); const hasCredentials = await secureCredentialsService.hasCredentials();
if (!hasCredentials) { if (!hasCredentials) {
secureLogger.info('🔐 No security credentials found, redirecting to wallet setup...', { component: 'Router' }); secureLogger.info('🔐 No security credentials found, redirecting to wallet setup...', {
component: 'Router',
});
window.location.href = '/wallet-setup.html'; window.location.href = '/wallet-setup.html';
return false; return false;
} else { } else {
secureLogger.info('🔐 Security credentials found, verifying access...', { component: 'Router' }); secureLogger.info('🔐 Security credentials found, verifying access...', {
component: 'Router',
});
// Vérifier l'accès aux credentials // Vérifier l'accès aux credentials
const credentials = await secureCredentialsService.retrieveCredentials(''); const credentials = await secureCredentialsService.retrieveCredentials('');
if (!credentials) { if (!credentials) {
@ -1252,10 +1336,15 @@ async function handlePairing(services: any): Promise<void> {
try { try {
// Vérifier le statut de pairing // Vérifier le statut de pairing
const isPaired = services.isPaired(); const isPaired = services.isPaired();
secureLogger.debug('🔍 Device pairing status:', { component: 'Router', data: isPaired ? 'Paired' : 'Not paired' }); secureLogger.debug('🔍 Device pairing status:', {
component: 'Router',
data: isPaired ? 'Paired' : 'Not paired',
});
if (!isPaired) { if (!isPaired) {
secureLogger.warn('⚠️ Device not paired, user must complete pairing...', { component: 'Router' }); secureLogger.warn('⚠️ Device not paired, user must complete pairing...', {
component: 'Router',
});
// Le pairing sera géré par la page home // Le pairing sera géré par la page home
return; return;
} else { } else {
@ -1280,14 +1369,20 @@ async function startProcessListening(services: any): Promise<void> {
secureLogger.info('📊 Restoring processes from database...', { component: 'Router' }); secureLogger.info('📊 Restoring processes from database...', { component: 'Router' });
await services.restoreProcessesFromDB(); await services.restoreProcessesFromDB();
} catch (error) { } catch (error) {
secureLogger.warn('⚠️ Failed to restore processes from database:', { component: 'Router', data: error }); secureLogger.warn('⚠️ Failed to restore processes from database:', {
component: 'Router',
data: error,
});
} }
try { try {
secureLogger.info('🔐 Restoring secrets from database...', { component: 'Router' }); secureLogger.info('🔐 Restoring secrets from database...', { component: 'Router' });
await services.restoreSecretsFromDB(); await services.restoreSecretsFromDB();
} catch (error) { } catch (error) {
secureLogger.warn('⚠️ Failed to restore secrets from database:', { component: 'Router', data: error }); secureLogger.warn('⚠️ Failed to restore secrets from database:', {
component: 'Router',
data: error,
});
} }
secureLogger.info('✅ Process listening started', { component: 'Router' }); secureLogger.info('✅ Process listening started', { component: 'Router' });

View File

@ -1,4 +1,6 @@
/* eslint-env browser, serviceworker */ /* eslint-env browser, serviceworker */
import { secureLogger } from '../services/secure-logger';
const EMPTY32BYTES = String('').padStart(64, '0'); const EMPTY32BYTES = String('').padStart(64, '0');
self.addEventListener('install', event => { self.addEventListener('install', event => {
@ -12,7 +14,11 @@ self.addEventListener('activate', event => {
// Event listener for messages from clients // Event listener for messages from clients
self.addEventListener('message', async event => { self.addEventListener('message', async event => {
const data = event.data; const data = event.data;
console.log(data); secureLogger.debug('Database worker received message', {
component: 'DatabaseWorker',
messageType: data?.type,
hasPayload: Boolean(data?.payload)
});
if (data.type === 'SCAN') { if (data.type === 'SCAN') {
try { try {
@ -20,13 +26,17 @@ self.addEventListener('message', async event => {
if (myProcessesId && myProcessesId.length != 0) { if (myProcessesId && myProcessesId.length != 0) {
const toDownload = await scanMissingData(myProcessesId); const toDownload = await scanMissingData(myProcessesId);
if (toDownload.length != 0) { if (toDownload.length != 0) {
console.log('Sending TO_DOWNLOAD message'); secureLogger.info('Database worker sending TO_DOWNLOAD message', {
component: 'DatabaseWorker',
count: toDownload.length
});
event.source.postMessage({ type: 'TO_DOWNLOAD', data: toDownload }); event.source.postMessage({ type: 'TO_DOWNLOAD', data: toDownload });
} }
} else { } else {
event.source.postMessage({ status: 'error', message: 'Empty lists' }); event.source.postMessage({ status: 'error', message: 'Empty lists' });
} }
} catch (error) { } catch (error) {
secureLogger.error('Database worker scan failed', error, { component: 'DatabaseWorker' });
event.source.postMessage({ status: 'error', message: error.message || 'Unknown error' }); event.source.postMessage({ status: 'error', message: error.message || 'Unknown error' });
} }
} else if (data.type === 'ADD_OBJECT') { } else if (data.type === 'ADD_OBJECT') {
@ -44,6 +54,7 @@ self.addEventListener('message', async event => {
event.ports[0].postMessage({ status: 'success', message: '' }); event.ports[0].postMessage({ status: 'success', message: '' });
} catch (error) { } catch (error) {
secureLogger.error('Database worker add object failed', error, { component: 'DatabaseWorker' });
event.ports[0].postMessage({ status: 'error', message: error.message || 'Unknown error' }); event.ports[0].postMessage({ status: 'error', message: error.message || 'Unknown error' });
} }
} else if (data.type === 'BATCH_WRITING') { } else if (data.type === 'BATCH_WRITING') {
@ -65,7 +76,10 @@ self.addEventListener('message', async event => {
}); });
async function scanMissingData(processesToScan) { async function scanMissingData(processesToScan) {
console.log('Scanning for missing data...'); secureLogger.debug('Scanning for missing data', {
component: 'DatabaseWorker',
processes: processesToScan?.length ?? 0
});
const myProcesses = await getProcesses(processesToScan); const myProcesses = await getProcesses(processesToScan);
let toDownload = new Set(); let toDownload = new Set();
@ -90,7 +104,10 @@ async function scanMissingData(processesToScan) {
} else { } else {
// We remove it if we have it in the set // We remove it if we have it in the set
if (toDownload.delete(hash)) { if (toDownload.delete(hash)) {
console.log(`Removing ${hash} from the set`); secureLogger.debug('Hash removed from download set', {
component: 'DatabaseWorker',
hashSuffix: hash.slice(-8)
});
} }
} }
} }
@ -98,19 +115,81 @@ async function scanMissingData(processesToScan) {
} }
} }
console.log(toDownload); secureLogger.info('Scan complete', {
component: 'DatabaseWorker',
totalMissing: toDownload.size
});
return Array.from(toDownload); return Array.from(toDownload);
} }
const DATABASE_CONFIG = { const DATABASE_CONFIG = {
name: '4nk', name: '4nk',
version: 3 version: 5,
stores: [
{
name: 'wallet',
options: { keyPath: 'pre_id' },
indices: [],
},
{
name: 'credentials',
options: {},
indices: [],
},
{
name: 'pbkdf2keys',
options: {},
indices: [],
},
{
name: 'env',
options: { keyPath: 'key' },
indices: [],
},
{
name: 'labels',
options: { keyPath: 'emoji' },
indices: [],
},
{
name: 'processes',
options: {},
indices: [],
},
{
name: 'shared_secrets',
options: {},
indices: [],
},
{
name: 'unconfirmed_secrets',
options: { autoIncrement: true },
indices: [],
},
{
name: 'diffs',
options: { keyPath: 'value_commitment' },
indices: [
{ name: 'byStateId', keyPath: 'state_id', options: { unique: false } },
{ name: 'byNeedValidation', keyPath: 'need_validation', options: { unique: false } },
{ name: 'byStatus', keyPath: 'validation_status', options: { unique: false } },
],
},
{
name: 'data',
options: {},
indices: [],
},
],
}; };
async function openDatabase() { async function openDatabase() {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
const request = indexedDB.open(DATABASE_CONFIG.name, DATABASE_CONFIG.version); const request = indexedDB.open(DATABASE_CONFIG.name, DATABASE_CONFIG.version);
request.onerror = () => { request.onerror = () => {
secureLogger.error('Database worker failed to open database', request.error, {
component: 'DatabaseWorker'
});
reject(request.error); reject(request.error);
}; };
request.onsuccess = () => { request.onsuccess = () => {
@ -118,15 +197,26 @@ async function openDatabase() {
}; };
request.onupgradeneeded = event => { request.onupgradeneeded = event => {
const db = event.target.result; const db = event.target.result;
if (!db.objectStoreNames.contains('wallet')) {
db.createObjectStore('wallet', { keyPath: 'pre_id' }); secureLogger.info('Database worker upgrading database schema', {
} component: 'DatabaseWorker',
if (!db.objectStoreNames.contains('credentials')) { version: DATABASE_CONFIG.version
db.createObjectStore('credentials'); });
}
if (!db.objectStoreNames.contains('pbkdf2keys')) { DATABASE_CONFIG.stores.forEach(storeConfig => {
db.createObjectStore('pbkdf2keys'); if (!db.objectStoreNames.contains(storeConfig.name)) {
const store = db.createObjectStore(storeConfig.name, storeConfig.options);
storeConfig.indices.forEach(indexConfig => {
store.createIndex(indexConfig.name, indexConfig.keyPath, indexConfig.options);
});
} else {
secureLogger.debug('Database store already exists', {
component: 'DatabaseWorker',
store: storeConfig.name
});
} }
});
}; };
}); });
} }
@ -148,6 +238,9 @@ async function getAllProcesses() {
}; };
request.onerror = () => { request.onerror = () => {
secureLogger.error('Database worker failed to read all processes', request.error, {
component: 'DatabaseWorker'
});
reject(request.error); reject(request.error);
}; };
}); });
@ -171,7 +264,10 @@ async function getProcesses(processIds) {
const request = store.get(processId); const request = store.get(processId);
request.onsuccess = () => resolve(request.result); request.onsuccess = () => resolve(request.result);
request.onerror = () => { request.onerror = () => {
console.error(`Error fetching process ${processId}:`, request.error); secureLogger.error('Error fetching process', request.error, {
component: 'DatabaseWorker',
processId
});
resolve(undefined); resolve(undefined);
}; };
}); });

View File

@ -253,7 +253,7 @@ export class WebAuthnService {
* Sauvegarde la clé PBKDF2 chiffrée dans IndexedDB * Sauvegarde la clé PBKDF2 chiffrée dans IndexedDB
* NE PAS stocker credentialId avec la clé chiffrée * NE PAS stocker credentialId avec la clé chiffrée
*/ */
private async savePBKDF2Key(encryptedKey: string, credentialId: string, securityMode: SecurityMode): Promise<void> { private async savePBKDF2Key(encryptedKey: string, _credentialId: string, securityMode: SecurityMode): Promise<void> {
try { try {
const db = await this.openDatabase(); const db = await this.openDatabase();
secureLogger.debug(`Available stores in ${DATABASE_CONFIG.name}`, { component: 'WebAuthn', stores: Array.from(db.objectStoreNames) }); secureLogger.debug(`Available stores in ${DATABASE_CONFIG.name}`, { component: 'WebAuthn', stores: Array.from(db.objectStoreNames) });
@ -319,38 +319,37 @@ export class WebAuthnService {
}); });
if (!result || typeof result !== 'string') { if (!result || typeof result !== 'string') {
console.log(`🔍 No PBKDF2 key found for security mode: ${securityMode}`); secureLogger.debug(`No PBKDF2 key found for security mode: ${securityMode}`, { component: 'WebAuthn' });
return null; return null;
} }
// Récupérer le credentialId dynamiquement via WebAuthn // Récupérer le credentialId dynamiquement via WebAuthn
// IMPORTANT: Cela nécessite une interaction utilisateur (authentification biométrique) // IMPORTANT: Cela nécessite une interaction utilisateur (authentification biométrique)
console.log('🔐 Requesting WebAuthn authentication to retrieve credential...'); secureLogger.debug('Requesting WebAuthn authentication to retrieve credential', { component: 'WebAuthn' });
// TEST: Try to get credentialId from sessionStorage first // TEST: Try to get credentialId from sessionStorage first
const storedCredentialId = sessionStorage.getItem('webauthn_credential_id'); const storedCredentialId = sessionStorage.getItem('webauthn_credential_id');
let credentialId: string | null = null; let credentialId: string | null = null;
if (storedCredentialId) { if (storedCredentialId) {
console.log('🔐 Using credentialId from sessionStorage:', storedCredentialId); secureLogger.debug('Using credentialId from sessionStorage', { component: 'WebAuthn' });
credentialId = storedCredentialId; credentialId = storedCredentialId;
} else { } else {
// Fallback to WebAuthn // Fallback to WebAuthn
credentialId = await this.getCurrentCredentialId(); credentialId = await this.getCurrentCredentialId();
if (credentialId) { if (credentialId) {
console.log('🔐 Storing credentialId in sessionStorage for testing'); secureLogger.debug('Storing credentialId in sessionStorage for testing', { component: 'WebAuthn' });
sessionStorage.setItem('webauthn_credential_id', credentialId); sessionStorage.setItem('webauthn_credential_id', credentialId);
} }
} }
if (!credentialId) { if (!credentialId) {
console.log('🔍 WebAuthn authentication required but not available'); secureLogger.debug('WebAuthn authentication required but not available', { component: 'WebAuthn' });
console.log(' For proton-pass or os mode, user interaction is required to decrypt the key');
return null; return null;
} }
// Déchiffrer la clé avec le credentialId WebAuthn // Déchiffrer la clé avec le credentialId WebAuthn
console.log('🔐 Decrypting PBKDF2 key with credentialId:', credentialId); secureLogger.debug('Decrypting PBKDF2 key with credentialId', { component: 'WebAuthn' });
const encrypted = atob(result); const encrypted = atob(result);
const combined = new Uint8Array(encrypted.length); const combined = new Uint8Array(encrypted.length);
for (let i = 0; i < encrypted.length; i++) { for (let i = 0; i < encrypted.length; i++) {
@ -362,7 +361,8 @@ export class WebAuthnService {
const iv = combined.slice(16, 28); const iv = combined.slice(16, 28);
const encryptedData = combined.slice(28); const encryptedData = combined.slice(28);
console.log('🔐 Extraction complete:', { secureLogger.debug('Extraction complete', {
component: 'WebAuthn',
saltLength: salt.length, saltLength: salt.length,
ivLength: iv.length, ivLength: iv.length,
encryptedDataLength: encryptedData.length, encryptedDataLength: encryptedData.length,
@ -398,7 +398,7 @@ export class WebAuthnService {
); );
// Déchiffrer // Déchiffrer
console.log('🔐 Attempting AES-GCM decryption...'); secureLogger.debug('Attempting AES-GCM decryption', { component: 'WebAuthn' });
try { try {
const decrypted = await crypto.subtle.decrypt( const decrypted = await crypto.subtle.decrypt(
{ name: 'AES-GCM', iv: iv }, { name: 'AES-GCM', iv: iv },
@ -407,16 +407,16 @@ export class WebAuthnService {
); );
const decryptedKey = new TextDecoder().decode(decrypted); const decryptedKey = new TextDecoder().decode(decrypted);
console.log('🔐 PBKDF2 key decrypted with WebAuthn successfully'); secureLogger.debug('PBKDF2 key decrypted with WebAuthn successfully', { component: 'WebAuthn' });
return decryptedKey; return decryptedKey;
} catch (decryptError) { } catch (decryptError) {
console.error('❌ Decryption failed:', decryptError); secureLogger.error('Decryption failed', decryptError as Error, { component: 'WebAuthn' });
console.error('❌ Decryption error details:', { secureLogger.error('Decryption error details', decryptError as Error, {
component: 'WebAuthn',
errorName: decryptError instanceof Error ? decryptError.name : 'Unknown', errorName: decryptError instanceof Error ? decryptError.name : 'Unknown',
errorMessage: decryptError instanceof Error ? decryptError.message : String(decryptError),
credentialId: credentialId, credentialId: credentialId,
iv: Array.from(iv), ivLength: iv.length,
salt: Array.from(salt) saltLength: salt.length
}); });
throw decryptError; throw decryptError;
} }
@ -448,7 +448,7 @@ export class WebAuthnService {
}); });
if (credential && credential.id) { if (credential && credential.id) {
console.log('🔐 WebAuthn credential ID retrieved:', credential.id); secureLogger.debug('WebAuthn credential ID retrieved', { component: 'WebAuthn' });
return credential.id; return credential.id;
} }
@ -456,8 +456,7 @@ export class WebAuthnService {
} catch (error) { } catch (error) {
// Si erreur de permission ou timeout, c'est normal // Si erreur de permission ou timeout, c'est normal
// L'utilisateur n'a peut-être pas interagi // L'utilisateur n'a peut-être pas interagi
console.log('🔍 WebAuthn credential retrieval failed:', error); secureLogger.debug('WebAuthn credential retrieval failed', { component: 'WebAuthn' });
console.log(' User interaction may be required for authentication');
return null; return null;
} }
} }
@ -483,12 +482,12 @@ export class WebAuthnService {
request.onupgradeneeded = (event) => { request.onupgradeneeded = (event) => {
const db = (event.target as IDBOpenDBRequest).result; const db = (event.target as IDBOpenDBRequest).result;
console.log(`🔄 ${DATABASE_CONFIG.name} database upgrade needed, creating stores...`); secureLogger.debug(`${DATABASE_CONFIG.name} database upgrade needed, creating stores...`, { component: 'WebAuthn' });
if (!db.objectStoreNames.contains(DATABASE_CONFIG.stores.pbkdf2keys.name)) { if (!db.objectStoreNames.contains(DATABASE_CONFIG.stores.pbkdf2keys.name)) {
db.createObjectStore(DATABASE_CONFIG.stores.pbkdf2keys.name); db.createObjectStore(DATABASE_CONFIG.stores.pbkdf2keys.name);
console.log(`${DATABASE_CONFIG.stores.pbkdf2keys.name} store created`); secureLogger.debug(`${DATABASE_CONFIG.stores.pbkdf2keys.name} store created`, { component: 'WebAuthn' });
} else { } else {
console.log(`${DATABASE_CONFIG.stores.pbkdf2keys.name} store already exists`); secureLogger.debug(`${DATABASE_CONFIG.stores.pbkdf2keys.name} store already exists`, { component: 'WebAuthn' });
} }
}; };
}); });

View File

@ -2,6 +2,49 @@ import Services from './service';
import { DATABASE_CONFIG } from './database-config'; import { DATABASE_CONFIG } from './database-config';
import { secureLogger } from './secure-logger'; import { secureLogger } from './secure-logger';
type IndexedDBKeyPath = string | string[];
type StoreDefinition = {
name: string;
options: IDBObjectStoreParameters;
indices: Array<{
name: string;
keyPath: IndexedDBKeyPath;
options: IDBIndexParameters;
}>;
};
const buildStoreDefinitions = (): Record<string, StoreDefinition> => {
return Object.values(DATABASE_CONFIG.stores).reduce<Record<string, StoreDefinition>>(
(definitions, storeConfig) => {
const options: IDBObjectStoreParameters = {};
if (storeConfig.keyPath !== null && storeConfig.keyPath !== undefined) {
options.keyPath = storeConfig.keyPath as IndexedDBKeyPath;
}
if ('autoIncrement' in storeConfig && storeConfig.autoIncrement) {
options.autoIncrement = true;
}
const indices = Array.from(storeConfig.indices ?? []).map(indexConfig => ({
name: indexConfig.name,
keyPath: indexConfig.keyPath as IndexedDBKeyPath,
options: { unique: indexConfig.unique ?? false },
}));
definitions[storeConfig.name] = {
name: storeConfig.name,
options,
indices,
};
return definitions;
},
{}
);
};
export class Database { export class Database {
private static instance: Database; private static instance: Database;
private db: IDBDatabase | null = null; private db: IDBDatabase | null = null;
@ -11,52 +54,7 @@ export class Database {
private messageChannel: MessageChannel | null = null; private messageChannel: MessageChannel | null = null;
private messageChannelForGet: MessageChannel | null = null; private messageChannelForGet: MessageChannel | null = null;
private serviceWorkerCheckIntervalId: number | null = null; private serviceWorkerCheckIntervalId: number | null = null;
private storeDefinitions = { private storeDefinitions: Record<string, StoreDefinition> = buildStoreDefinitions();
AnkLabels: {
name: 'labels',
options: { keyPath: 'emoji' },
indices: [],
},
AnkWallet: {
name: 'wallet',
options: { keyPath: 'pre_id' },
indices: [],
},
AnkProcess: {
name: 'processes',
options: {},
indices: [],
},
AnkSharedSecrets: {
name: 'shared_secrets',
options: {},
indices: [],
},
AnkUnconfirmedSecrets: {
name: 'unconfirmed_secrets',
options: { autoIncrement: true },
indices: [],
},
AnkPendingDiffs: {
name: 'diffs',
options: { keyPath: 'value_commitment' },
indices: [
{ name: 'byStateId', keyPath: 'state_id', options: { unique: false } },
{ name: 'byNeedValidation', keyPath: 'need_validation', options: { unique: false } },
{ name: 'byStatus', keyPath: 'validation_status', options: { unique: false } },
],
},
AnkData: {
name: 'data',
options: {},
indices: [],
},
AnkPBKDF2Keys: {
name: 'pbkdf2keys',
options: {},
indices: [],
},
};
// Private constructor to prevent direct instantiation from outside // Private constructor to prevent direct instantiation from outside
private constructor() {} private constructor() {}

View File

@ -132,14 +132,21 @@ export class DeviceReaderService {
// L'adresse est stockée dans device.sp_wallet.address // L'adresse est stockée dans device.sp_wallet.address
const address = device.sp_wallet?.address; const address = device.sp_wallet?.address;
if (address) { if (address) {
console.log('✅ DeviceReaderService: Device address retrieved:', address); secureLogger.info('DeviceReaderService: Device address retrieved', {
component: 'DeviceReader',
addressSuffix: address.slice(-6)
});
return address; return address;
} }
console.warn('⚠️ DeviceReaderService: Device found but no address in sp_wallet.address'); secureLogger.warn('DeviceReaderService: Device found but no address in sp_wallet.address', {
component: 'DeviceReader'
});
return null; return null;
} catch (error) { } catch (error) {
console.error('❌ DeviceReaderService: Error getting device address:', error); secureLogger.error('DeviceReaderService: Error getting device address', error as Error, {
component: 'DeviceReader'
});
throw error; throw error;
} }
} }

File diff suppressed because it is too large Load Diff

View File

@ -23,7 +23,7 @@ export async function checkPBKDF2Key(): Promise<{ key: string; mode: SecurityMod
const hasKey = await secureCredentialsService.hasPBKDF2Key(mode); const hasKey = await secureCredentialsService.hasPBKDF2Key(mode);
if (hasKey) { if (hasKey) {
const key = await secureCredentialsService.retrievePBKDF2Key(mode); const key = await secureCredentialsService.retrievePBKDF2Key(mode);
if (key) { if (key && key.trim().length > 0) {
secureLogger.info(`PBKDF2 key found in pbkdf2keys store for security mode: ${mode}`, { component: 'PrerequisitesUtils' }); secureLogger.info(`PBKDF2 key found in pbkdf2keys store for security mode: ${mode}`, { component: 'PrerequisitesUtils' });
return { key, mode }; return { key, mode };
} }

View File

@ -3,6 +3,8 @@
* Traite les données lourdes sans bloquer le thread principal * Traite les données lourdes sans bloquer le thread principal
*/ */
import { secureLogger } from '../services/secure-logger';
export interface EncoderMessage { export interface EncoderMessage {
type: 'encode' | 'decode'; type: 'encode' | 'decode';
data: any; data: any;
@ -115,11 +117,13 @@ async function decodeData(data: any): Promise<any> {
// Gérer les erreurs non capturées // Gérer les erreurs non capturées
self.addEventListener('error', (error) => { self.addEventListener('error', (error) => {
// Note: secureLogger not available in worker context secureLogger.error('Encoder worker error', error instanceof ErrorEvent ? error.error : error, {
console.error('Encoder worker error:', error); component: 'EncoderWorker'
});
}); });
self.addEventListener('unhandledrejection', (event) => { self.addEventListener('unhandledrejection', (event) => {
// Note: secureLogger not available in worker context secureLogger.error('Encoder worker unhandled rejection', event.reason, {
console.error('Encoder worker unhandled rejection:', event.reason); component: 'EncoderWorker'
});
}); });