-
Notifications
You must be signed in to change notification settings - Fork 443
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(sdk): automatically log http calls to API #3081
Changes from 1 commit
d55b0f5
74afa85
c77ef96
6ee1546
7086780
74b3e36
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,6 +24,7 @@ import { validateData } from './dataValidation.js'; | |
import { NangoError } from '../utils/error.js'; | ||
import type { DBTeam, GetPublicIntegration, MessageRowInsert } from '@nangohq/types'; | ||
import { getProvider } from '../services/providers.js'; | ||
import { redactHeaders, redactURL } from '../utils/http.js'; | ||
|
||
const logger = getLogger('SDK'); | ||
|
||
|
@@ -487,6 +488,13 @@ export class NangoAction { | |
}; | ||
} | ||
} | ||
if (!config.axios?.response) { | ||
axiosSettings.interceptors = { | ||
response: { | ||
onFulfilled: this.logAPICall.bind(this) | ||
} | ||
}; | ||
} | ||
|
||
if (config.environmentName) { | ||
this.environmentName = config.environmentName; | ||
|
@@ -763,7 +771,12 @@ export class NangoAction { | |
const level = userDefinedLevel?.level ?? 'info'; | ||
|
||
if (this.dryRun) { | ||
logger[logLevelToLogger[level] ?? 'info'].apply(null, args as any); | ||
// TODO: control this logger inside dryrun instead | ||
if (args.length > 1 && 'type' in args[1] && args[1].type === 'http') { | ||
logger[logLevelToLogger[level] ?? 'info'].apply(null, [args[0], { status: args[1]?.response?.code || 'xxx' }] as any); | ||
} else { | ||
logger[logLevelToLogger[level] ?? 'info'].apply(null, args as any); | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Would something like this be easier to read
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. honestly I don't know ahah |
||
return; | ||
} | ||
|
||
|
@@ -916,6 +929,42 @@ export class NangoAction { | |
throw new Error(`Failed to log: ${JSON.stringify(response.data)}`); | ||
} | ||
} | ||
|
||
private logAPICall(res: AxiosResponse): AxiosResponse { | ||
if (!res.config.url) { | ||
return res; | ||
} | ||
|
||
const valuesToFilter: string[] = [ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just a small thought for the future: Could we compute our filter array once up front before any runner work and have the logger lean on it across all logging? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. agreed. The valuesToFilter should not changed within a single execution There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. actually it's changing because connection's credentials can change during execution, but the value could be cached indeed. I'll add a comment |
||
...Array.from(this.memoizedConnections.values()).reduce<string[]>((acc, conn) => { | ||
if (!conn) { | ||
return acc; | ||
} | ||
acc.push(...Object.values(conn.connection.credentials)); | ||
return acc; | ||
}, []), | ||
this.nango.secretKey | ||
]; | ||
|
||
const method = res.config.method?.toLocaleUpperCase(); // axios put it in lowercase; | ||
void this.log( | ||
`${method} ${res.config.url}`, | ||
{ | ||
type: 'http', | ||
request: { | ||
method: method, | ||
url: redactURL({ url: res.config.url, valuesToFilter }), | ||
headers: redactHeaders({ headers: res.config.headers }) | ||
bodinsamuel marked this conversation as resolved.
Show resolved
Hide resolved
|
||
}, | ||
response: { | ||
code: res.status, | ||
headers: redactHeaders({ headers: res.headers, valuesToFilter }) | ||
} | ||
}, | ||
{ level: res.status > 299 ? 'error' : 'info' } | ||
); | ||
return res; | ||
} | ||
} | ||
|
||
export class NangoSync extends NangoAction { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do I read correctly that it doesn't override the interceptors defined a few lines above that is used for snapshoting in dry-mode?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes exactly, I'll add a comment