-
Notifications
You must be signed in to change notification settings - Fork 39
/
LoggerPersist.js
225 lines (212 loc) · 5.31 KB
/
LoggerPersist.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
/**
* Module: TYPO3/CMS/FrontendEditing/Utils/LoggerPersist
* Logger extension to make logs persistable.
* Side effect:
* Create highorder ulog channel.
* Creates 2 ulog outputs to persist
* - persist: with indexedDb in use
* - server: calling the sendCallback function
* Control:
* sendCallback = <server output callback function>
* config = {
* highorder_log: <log level>
* log_highorder: <log output definition>
* log: <log level>
* log_output: <log output definition>
* log_drain: <log output definition>
* }
*/
define([
'../Contrib/ulog/ulog',
'./IndexedDB',
], function addLoggerPersist(ulog, db) {
'use strict';
var _sendCallback = null;
var configKeys = [
'highorder_log',
'log_highorder',
'log',
'log_output',
'log_drain'
];
addPersistOutputs();
addHighorderChannel();
return {
set config(cfg) {
for (var key in configKeys) {
if (cfg[key] && typeof cfg[key] === 'string') {
ulog.set(key, cfg[key]);
}
}
},
get config() {
return ulog.config;
},
set sendCallback(sendCallback) {
if (typeof sendCallback === 'function') {
_sendCallback = sendCallback;
}
},
get sendCallback() {
return _sendCallback;
},
};
/**
* Adds the highorder ulog channel and override the output ulog channel
* for levels above configure highorder_log. The new highorder ulog channel
* can be configured as usual in ulog with log_highorder config.
* Eg. log = debug and highorder_log = warn
* -> warn and errors has highorder channel
* -> info and debug has output channel
* -> trace has drain channel
*/
function addHighorderChannel() {
ulog.use({
channels: {
highorder: {
out: [
console,
],
},
},
settings: {
highorderLog: {
config: 'highorder_log',
prop: {
default: 'none',
},
},
highorder: {
config: 'log_highorder',
prop: {
default: 'console',
},
},
},
ext: function (logger) {
function highorderEnabledFor(level) {
var highorderLog = logger.highorderLog.toUpperCase();
return logger[highorderLog] >= logger[level.toUpperCase()];
}
logger.highorderEnabledFor = highorderEnabledFor;
},
after: function (logger) {
// eslint-disable-next-line guard-for-in
for (var level in this.levels) {
if (logger.enabledFor(level)) {
var channel = 'output';
if (logger.highorderEnabledFor(level)) {
channel = 'highorder';
}
logger[level] = logger.channels[channel].fns[level];
}
}
},
});
}
/**
* Adds ulog outputs used to persist log records.
*/
function addPersistOutputs() {
ulog.use({
outputs: {
server: serverOutput,
persist: persistOutput
},
});
}
/**
* Returns a function that add log entry in an indexedDB.
*/
function persistOutput() {
return function persistLog(rec) {
var logRecord = createLogRecord(rec);
try {
db.logs.add(logRecord);
} catch (exception) {
error(
'Unable to persist log record',
exception,
logRecord
);
}
};
}
/**
* Returns a function that call the sendCallback function if defined.
*/
function serverOutput() {
return function sendLogToServer(rec) {
var logRecord = createLogRecord(rec);
if (_sendCallback) {
try {
_sendCallback(logRecord);
} catch (exception) {
error(
'Error occured during callback function',
exception,
logRecord
);
}
} else {
warn(
'sendLogToServer failed cause _sendCallback is not defined',
logRecord
);
}
};
}
/**
* Create a log record used to persisting
* @param rec
* @return {{
* timestamp: number,
* url: string,
* name: string,
* level: number,
* channel: string,
* message: [],
* stack: (*|string)
* }}
*/
function createLogRecord(rec) {
var error = new Error();
var url = window && window.location
? window.location.href : 'no window.location';
return {
timestamp: Date.now(),
url: url,
name: rec.name,
level: rec.level,
channel: rec.channel,
message: rec.message,
stack: error.stack
};
}
/**
* Log error in console directly to prevent an infinite loop.
*/
function error() {
// eslint-disable-next-line no-console
console.error(arguments);
}
/**
* Log warn in console directly to prevent an infinite loop.
*/
function warn() {
// eslint-disable-next-line no-console
console.warn(arguments);
}
});