1
1
import Database from 'better-sqlite3' ;
2
- import winston from 'winston' ;
3
2
import { connectAndPrepare } from '../modules/database' ;
4
3
import { decrypt } from '../modules/crypto/decrypt' ;
5
4
import { encryptAesCbcHmac256 } from '../modules/crypto/encrypt' ;
@@ -8,11 +7,12 @@ import { getLatestContent } from '../endpoints';
8
7
import type { DeviceConfiguration , LocalConfiguration } from '../types' ;
9
8
import { notEmpty } from '../utils' ;
10
9
import { askReplaceIncorrectMasterPassword } from '../utils/dialogs' ;
10
+ import { logger } from '../logger' ;
11
11
12
12
export const runSync = async ( ) => {
13
13
const { db, localConfiguration, deviceConfiguration } = await connectAndPrepare ( { autoSync : false } ) ;
14
14
await sync ( { db, localConfiguration, deviceConfiguration } ) ;
15
- winston . info ( 'Successfully synced' ) ;
15
+ logger . success ( 'Successfully synced' ) ;
16
16
db . close ( ) ;
17
17
} ;
18
18
@@ -25,7 +25,7 @@ interface Sync {
25
25
export const sync = async ( params : Sync ) => {
26
26
const { db } = params ;
27
27
let { localConfiguration } = params ;
28
- winston . debug ( 'Start syncing...' ) ;
28
+ logger . debug ( 'Start syncing...' ) ;
29
29
30
30
const lastServerSyncTimestamp =
31
31
(
@@ -64,7 +64,7 @@ export const sync = async (params: Sync) => {
64
64
if ( error instanceof Error ) {
65
65
errorMessage = error . message ;
66
66
}
67
- winston . debug ( `Unable to decrypt a transactions while sync: ${ errorMessage } ` ) ;
67
+ logger . debug ( `Unable to decrypt a transactions while sync: ${ errorMessage } ` ) ;
68
68
69
69
if ( transac . identifier === 'SETTINGS_userId' ) {
70
70
if ( ! ( await askReplaceIncorrectMasterPassword ( ) ) ) {
@@ -99,10 +99,10 @@ export const sync = async (params: Sync) => {
99
99
const nbErrors = latestContent . transactions . length - values . length ;
100
100
101
101
if ( nbErrors !== 0 ) {
102
- winston . debug ( `Ignored ${ nbErrors } decryption errors` ) ;
102
+ logger . debug ( `Ignored ${ nbErrors } decryption errors` ) ;
103
103
}
104
104
105
- winston . debug ( `Number of new updates: ${ values . length } ` ) ;
105
+ logger . debug ( `Number of new updates: ${ values . length } ` ) ;
106
106
107
107
const statement = db . prepare (
108
108
'REPLACE INTO transactions (login, identifier, type, action, content) VALUES (?, ?, ?, ?, ?)'
@@ -120,11 +120,11 @@ export const sync = async (params: Sync) => {
120
120
. bind ( localConfiguration . login , Number ( latestContent . timestamp ) , Math . floor ( Date . now ( ) / 1000 ) )
121
121
. run ( ) ;
122
122
123
- winston . debug ( `Requested timestamp ${ lastServerSyncTimestamp } , new timestamp ${ latestContent . timestamp } ` ) ;
123
+ logger . debug ( `Requested timestamp ${ lastServerSyncTimestamp } , new timestamp ${ latestContent . timestamp } ` ) ;
124
124
125
125
const summaryCounted : Record < string , number > = { } ;
126
126
Object . keys ( latestContent . summary ) . forEach ( ( key ) => {
127
127
summaryCounted [ key ] = Object . keys ( latestContent . summary [ key ] ) . length ;
128
128
} ) ;
129
- winston . debug ( JSON . stringify ( summaryCounted , null , 4 ) ) ;
129
+ logger . debug ( JSON . stringify ( summaryCounted , null , 4 ) ) ;
130
130
} ;
0 commit comments