forked from exceptionless/Exceptionless.JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExceptionlessClient.ts
More file actions
253 lines (209 loc) · 9.24 KB
/
ExceptionlessClient.ts
File metadata and controls
253 lines (209 loc) · 9.24 KB
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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
import { Configuration } from "./configuration/Configuration.js";
import { SettingsManager } from "./configuration/SettingsManager.js";
import { EventBuilder } from "./EventBuilder.js";
import { Event, KnownEventDataKeys } from "./models/Event.js";
import { UserDescription } from "./models/data/UserDescription.js";
import { ContextData } from "./plugins/ContextData.js";
import { EventPluginContext } from "./plugins/EventPluginContext.js";
import { EventPluginManager } from "./plugins/EventPluginManager.js";
import { PluginContext } from "./plugins/PluginContext.js";
export class ExceptionlessClient {
private _intervalId: any;
private _timeoutId: any;
public constructor(public config: Configuration = new Configuration()) { }
/** Resume background submission, resume any timers. */
public async startup(configurationOrApiKey?: (config: Configuration) => void | string): Promise<void> {
if (configurationOrApiKey) {
EventPluginManager.addDefaultPlugins(this.config);
if (typeof configurationOrApiKey === "string") {
this.config.apiKey = configurationOrApiKey;
} else {
configurationOrApiKey(this.config);
}
this.config.subscribe(() => this.updateSettingsTimer(this._timeoutId > 0 ? 5000 : 0));
this.config.services.queue.onEventsPosted(() => this.updateSettingsTimer());
}
this.updateSettingsTimer(configurationOrApiKey ? 5000 : 0);
await EventPluginManager.startup(new PluginContext(this));
await this.processQueue();
}
/** Submit events, pause any timers and go into low power mode. */
public async suspend(): Promise<void> {
await EventPluginManager.suspend(new PluginContext(this));
await this.processQueue();
await this.config.services.queue.suspend();
this.updateSettingsTimer(0, -1);
}
public async processQueue(): Promise<void> {
await this.config.services.queue.process();
}
// TODO: Look into better async scheduling..
private updateSettingsTimer(initialDelay: number = 0, updateWhenIdleInterval?: number) {
this._timeoutId = clearTimeout(this._timeoutId);
this._intervalId = clearInterval(this._intervalId);
const interval = updateWhenIdleInterval || this.config.updateSettingsWhenIdleInterval;
if (interval > 0) {
this.config.services.log.info(`Update settings every ${interval}ms (${initialDelay || 0}ms delay)`);
// TODO: Fix awaiting promise.
const updateSettings = () => void SettingsManager.updateSettings(this.config);
if (initialDelay > 0) {
this._timeoutId = setTimeout(updateSettings, initialDelay);
}
this._intervalId = setInterval(updateSettings, interval);
} else {
this.config.services.log.info("Turning off update settings");
}
}
public createException(exception: Error): EventBuilder {
const pluginContextData = new ContextData();
pluginContextData.setException(exception);
return this.createEvent(pluginContextData).setType("error");
}
public submitException(exception: Error): Promise<EventPluginContext> {
return this.createException(exception).submit();
}
public createUnhandledException(exception: Error, submissionMethod?: string): EventBuilder {
const builder = this.createException(exception);
builder.pluginContextData.markAsUnhandledError();
builder.pluginContextData.setSubmissionMethod(submissionMethod);
return builder;
}
public submitUnhandledException(exception: Error, submissionMethod?: string): Promise<EventPluginContext> {
return this.createUnhandledException(exception, submissionMethod).submit();
}
public createFeatureUsage(feature: string): EventBuilder {
return this.createEvent().setType("usage").setSource(feature);
}
public submitFeatureUsage(feature: string): Promise<EventPluginContext> {
return this.createFeatureUsage(feature).submit();
}
public createLog(message: string): EventBuilder;
public createLog(source: string, message: string): EventBuilder;
public createLog(source: string, message: string, level: string): EventBuilder;
public createLog(sourceOrMessage: string, message?: string, level?: string): EventBuilder {
let builder = this.createEvent().setType("log");
if (level) {
builder = builder.setSource(sourceOrMessage).setMessage(message).setProperty(KnownEventDataKeys.Level, level);
} else if (message) {
builder = builder.setSource(sourceOrMessage).setMessage(message);
} else {
builder = builder.setMessage(sourceOrMessage);
try {
// TODO: Look into using https://www.stevefenton.co.uk/Content/Blog/Date/201304/Blog/Obtaining-A-Class-Name-At-Runtime-In-TypeScript/
const caller: any = this.createLog.caller;
builder = builder.setSource(
caller && caller.caller && caller.caller.name,
);
} catch (e) {
this.config.services.log.trace("Unable to resolve log source: " + e.message);
}
}
return builder;
}
public submitLog(message: string): Promise<EventPluginContext>;
public submitLog(source: string, message: string): Promise<EventPluginContext>;
public submitLog(source: string, message: string, level: string): Promise<EventPluginContext>;
public submitLog(sourceOrMessage: string, message?: string, level?: string): Promise<EventPluginContext> {
return this.createLog(sourceOrMessage, message, level).submit();
}
public createNotFound(resource: string): EventBuilder {
return this.createEvent().setType("404").setSource(resource);
}
public submitNotFound(resource: string): Promise<EventPluginContext> {
return this.createNotFound(resource).submit();
}
public createSessionStart(): EventBuilder {
return this.createEvent().setType("session");
}
public submitSessionStart(): Promise<EventPluginContext> {
return this.createSessionStart().submit();
}
public async submitSessionEnd(sessionIdOrUserId: string): Promise<void> {
if (sessionIdOrUserId && this.config.enabled && this.config.isValid) {
this.config.services.log.info(`Submitting session end: ${sessionIdOrUserId}`);
await this.config.services.submissionClient.submitHeartbeat(sessionIdOrUserId, true);
}
}
public async submitSessionHeartbeat(sessionIdOrUserId: string): Promise<void> {
if (sessionIdOrUserId && this.config.enabled && this.config.isValid) {
this.config.services.log.info(`Submitting session heartbeat: ${sessionIdOrUserId}`);
await this.config.services.submissionClient.submitHeartbeat(sessionIdOrUserId, false);
}
}
public createEvent(pluginContextData?: ContextData): EventBuilder {
return new EventBuilder({ date: new Date() }, this, pluginContextData);
}
/**
* Submits the event to be sent to the server.
*
* @param event The event data.
* @param pluginContextData Any contextual data objects to be used by Exceptionless plugins to gather default information for inclusion in the report information.
* @param callback
*/
public async submitEvent(event: Event, pluginContextData?: ContextData): Promise<EventPluginContext> {
const context = new EventPluginContext(this, event, pluginContextData);
if (!event) {
context.cancelled = true;
return context;
}
if (!this.config.enabled || !this.config.isValid) {
this.config.services.log.info("Event submission is currently disabled.");
context.cancelled = true;
return context;
}
if (!event.data) {
event.data = {};
}
if (!event.tags || !event.tags.length) {
event.tags = [];
}
await EventPluginManager.run(context);
if (context.cancelled) {
return context;
}
const config = context.client.config;
const ev = context.event;
// ensure all required data
if (!ev.type || ev.type.length === 0) {
ev.type = "log";
}
if (!ev.date) {
ev.date = new Date();
}
config.services.queue.enqueue(ev);
if (ev.reference_id && ev.reference_id.length > 0) {
context.log.info(`Setting last reference id "${ev.reference_id}"`);
config.services.lastReferenceIdManager.setLast(ev.reference_id);
}
return context;
}
/**
* Updates the user"s email address and description of an event for the specified reference id.
* @param referenceId The reference id of the event to update.
* @param email The user"s email address to set on the event.
* @param description The user"s description of the event.
* @param callback The submission response.
*/
public async updateUserEmailAndDescription(referenceId: string, email: string, description: string): Promise<void> {
if (!referenceId || !email || !description || !this.config.enabled || !this.config.isValid) {
return;
}
const userDescription: UserDescription = {
email_address: email,
description
};
const response = await this.config.services.submissionClient.submitUserDescription(referenceId, userDescription);
if (!response.success) {
this.config.services.log.error(
`Failed to submit user email and description for event "${referenceId}": ${response.status} ${response.message}`,
);
}
}
/**
* Gets the last event client id that was submitted to the server.
* @returns {string} The event client id.
*/
public getLastReferenceId(): string {
return this.config.services.lastReferenceIdManager.getLast();
}
}