Skip to content
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

MSAL-Node Samples - console.log + error Improvements #7447

Merged
merged 17 commits into from
Dec 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions extensions/samples/msal-node-extensions/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ PersistenceCreator
// get url to sign user in and consent to scopes needed for application
pca.getAuthCodeUrl(authCodeUrlParameters).then((response) => {
res.redirect(response);
}).catch((error) => console.log(JSON.stringify(error)));
});
});

app.get('/redirect', (req, res) => {
Expand All @@ -66,7 +66,7 @@ PersistenceCreator
console.log("\nResponse: \n", response);
res.sendStatus(200);
}).catch((error) => {
console.log(error);
console.error(error.errorMessage);
res.status(500).send(error);
});
});
Expand Down
6 changes: 1 addition & 5 deletions samples/msal-browser-samples/HybridSample/routes/auth.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,8 @@ router.get('/login', (req, res) => {
// Generate auth code url and redirect the user
msalInstance.getAuthCodeUrl(authCodeUrlParameters)
.then((response) => {
console.log("getAuthCodeURL RESPONSE");
console.log(response);
res.redirect(response);
})
.catch((error) => console.log(JSON.stringify(error)));
});
});

// Route to capture auth code that will be posted by AAD
Expand Down Expand Up @@ -105,7 +102,6 @@ router.post('/server-redirect', (req, res) => {
})
.catch((error) => {
console.timeEnd(timeLabel);
console.log(error);
res.status(500).send(error);
});
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export default class AuthProvider {
.removeAccount(this.account);
this.account = null;
} catch (error) {
console.log(error);
console.error(error);
Robbie-Microsoft marked this conversation as resolved.
Show resolved Hide resolved
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ export const cachePlugin = (CACHE_LOCATION: string): ICachePlugin => {
const beforeCacheAccess = async (cacheContext: TokenCacheContext) => {
return new Promise<void>(async (resolve, reject) => {
if (fs.existsSync(CACHE_LOCATION)) {
fs.readFile(CACHE_LOCATION, "utf-8", (err, data) => {
if (err) {
fs.readFile(CACHE_LOCATION, "utf-8", (error, data) => {
if (error) {
reject();
} else {
cacheContext.tokenCache.deserialize(data);
Expand All @@ -22,8 +22,8 @@ export const cachePlugin = (CACHE_LOCATION: string): ICachePlugin => {
fs.writeFile(
CACHE_LOCATION,
cacheContext.tokenCache.serialize(),
(err) => {
if (err) {
(error) => {
if (error) {
reject();
}
}
Expand All @@ -37,9 +37,9 @@ export const cachePlugin = (CACHE_LOCATION: string): ICachePlugin => {
fs.writeFile(
CACHE_LOCATION,
cacheContext.tokenCache.serialize(),
(err) => {
if (err) {
console.log(err);
(error) => {
if (error) {
console.error(error);
}
}
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export default class Main {
Main.publish(IpcMessages.SHOW_WELCOME_MESSAGE, account);
}
} catch (error) {
console.log(error);
console.error(error);
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ export default class AuthProvider {
tokenRequest
);
} catch (error) {
console.log(
"Silent token acquisition failed, acquiring token using pop up"
console.error(
Robbie-Microsoft marked this conversation as resolved.
Show resolved Hide resolved
"Silent token acquisition failed, acquiring token interactively"
);
const authCodeRequest = {
...this.authCodeUrlParams,
Expand Down
14 changes: 7 additions & 7 deletions samples/msal-node-samples/ElectronTestApp/src/CachePlugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ export const cachePlugin = (CACHE_LOCATION: string): ICachePlugin => {
const beforeCacheAccess = async (cacheContext) => {
return new Promise<void>(async (resolve, reject) => {
if (fs.existsSync(CACHE_LOCATION)) {
fs.readFile(CACHE_LOCATION, "utf-8", (err, data) => {
if (err) {
fs.readFile(CACHE_LOCATION, "utf-8", (error, data) => {
if (error) {
reject();
} else {
cacheContext.tokenCache.deserialize(data);
Expand All @@ -21,8 +21,8 @@ export const cachePlugin = (CACHE_LOCATION: string): ICachePlugin => {
fs.writeFile(
CACHE_LOCATION,
cacheContext.tokenCache.serialize(),
(err) => {
if (err) {
(error) => {
if (error) {
reject();
}
}
Expand All @@ -36,9 +36,9 @@ export const cachePlugin = (CACHE_LOCATION: string): ICachePlugin => {
fs.writeFile(
CACHE_LOCATION,
cacheContext.tokenCache.serialize(),
(err) => {
if (err) {
console.log(err);
(error) => {
if (error) {
console.error(error);
}
}
);
Expand Down
1 change: 0 additions & 1 deletion samples/msal-node-samples/auth-code-cli-app/src/graph.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ async function callMicrosoftGraph(accessToken) {
const response = await axios.get(graphMeEndpoint, options);
return response.data;
} catch (error) {
console.log(error)
return error;
}
};
Expand Down
6 changes: 2 additions & 4 deletions samples/msal-node-samples/auth-code-cli-app/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,9 @@ acquireToken().then((response) => {
callMicrosoftGraph(response.accessToken).then((graphResponse) => {
console.log(graphResponse);
process.exit(0);
}).catch((e) => {
console.log(e);
}).catch((error) => {
process.exit(1);
});
}).catch(e => {
console.error(e);
}).catch((error) => {
process.exit(1);
});
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ async function callMicrosoftGraph(accessToken) {
const response = await fetch(graphMeEndpoint, options);
return response.json();
} catch (error) {
console.log(error)
return error;
}
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,50 +178,38 @@ export class AuthProvider {
.authority!.split("/")
.pop()!;

try {
let [cloudDiscoveryMetadata, authorityMetadata] = await Promise.all(
[
cacheClient.get(
`${clientId}.${tenantId}.discovery-metadata`
),
cacheClient.get(
`${clientId}.${tenantId}.authority-metadata`
),
]
);

if (!cloudDiscoveryMetadata || !authorityMetadata) {
[cloudDiscoveryMetadata, authorityMetadata] = await Promise.all(
[
AuthProvider.fetchCloudDiscoveryMetadata(tenantId),
AuthProvider.fetchOIDCMetadata(tenantId),
]
let [cloudDiscoveryMetadata, authorityMetadata] = await Promise.all([
cacheClient.get(`${clientId}.${tenantId}.discovery-metadata`),
cacheClient.get(`${clientId}.${tenantId}.authority-metadata`),
]);

if (!cloudDiscoveryMetadata || !authorityMetadata) {
[cloudDiscoveryMetadata, authorityMetadata] = await Promise.all([
AuthProvider.fetchCloudDiscoveryMetadata(tenantId),
AuthProvider.fetchOIDCMetadata(tenantId),
]);

if (cloudDiscoveryMetadata && authorityMetadata) {
await cacheClient.set(
`${clientId}.${tenantId}.discovery-metadata`,
JSON.stringify(cloudDiscoveryMetadata)
);
await cacheClient.set(
`${clientId}.${tenantId}.authority-metadata`,
JSON.stringify(authorityMetadata)
);

if (cloudDiscoveryMetadata && authorityMetadata) {
await cacheClient.set(
`${clientId}.${tenantId}.discovery-metadata`,
JSON.stringify(cloudDiscoveryMetadata)
);
await cacheClient.set(
`${clientId}.${tenantId}.authority-metadata`,
JSON.stringify(authorityMetadata)
);
}
}

msalConfigWithMetadata.auth.cloudDiscoveryMetadata =
typeof cloudDiscoveryMetadata === "string"
? cloudDiscoveryMetadata
: JSON.stringify(cloudDiscoveryMetadata);
msalConfigWithMetadata.auth.authorityMetadata =
typeof authorityMetadata === "string"
? authorityMetadata
: JSON.stringify(authorityMetadata);
} catch (error) {
console.log(error);
}

msalConfigWithMetadata.auth.cloudDiscoveryMetadata =
typeof cloudDiscoveryMetadata === "string"
? cloudDiscoveryMetadata
: JSON.stringify(cloudDiscoveryMetadata);
msalConfigWithMetadata.auth.authorityMetadata =
typeof authorityMetadata === "string"
? authorityMetadata
: JSON.stringify(authorityMetadata);

return msalConfigWithMetadata;
}

Expand All @@ -231,30 +219,15 @@ export class AuthProvider {
const endpoint =
"https://login.microsoftonline.com/common/discovery/instance";

try {
const response = await AxiosHelper.callDownstreamApi(
endpoint,
undefined,
{
"api-version": "1.1",
authorization_endpoint: `https://login.microsoftonline.com/${tenantId}/oauth2/v2.0/authorize`,
}
);

return response;
} catch (error) {
console.log(error);
}
return await AxiosHelper.callDownstreamApi(endpoint, undefined, {
"api-version": "1.1",
authorization_endpoint: `https://login.microsoftonline.com/${tenantId}/oauth2/v2.0/authorize`,
});
}

private static async fetchOIDCMetadata(tenantId: string): Promise<any> {
const endpoint = `https://login.microsoftonline.com/${tenantId}/v2.0/.well-known/openid-configuration`;

try {
const response = await AxiosHelper.callDownstreamApi(endpoint);
return response;
} catch (error) {
console.log(error);
}
return await AxiosHelper.callDownstreamApi(endpoint);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class PartitionManager implements IPartitionManager {
const session = JSON.parse(sessionData) as SessionCacheData;
return session.account?.homeAccountId || EMPTY_STRING;
} catch (error) {
console.log(error);
console.error(error);
}

return EMPTY_STRING;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class RedisClientWrapper implements ICacheClient {
try {
return (await this.cacheClient.get(key)) || EMPTY_STRING;
} catch (error) {
console.log(error);
console.error(error);
}

return EMPTY_STRING;
Expand All @@ -61,7 +61,7 @@ class RedisClientWrapper implements ICacheClient {
})) || EMPTY_STRING
);
} catch (error) {
console.log(error);
console.error(error);
}

return EMPTY_STRING;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -166,13 +166,13 @@ async function main() {
});
});

app.use((err: any, req: Request, res: Response, next: NextFunction) => {
app.use((error: any, req: Request, res: Response, next: NextFunction) => {
// set locals, only providing error in development
res.locals.message = err.message;
res.locals.error = req.app.get("env") === "development" ? err : {};
res.locals.message = error.message;
res.locals.error = req.app.get("env") === "development" ? error : {};

// render the error page
res.status(err.status || 500);
res.status(error.status || 500);
res.render("error");
});

Expand Down Expand Up @@ -209,9 +209,9 @@ function initializePerformanceObserver(): void {
fs.appendFile(
"benchmarks.json",
`${JSON.stringify(results)}\n`,
function (err) {
if (err) {
throw err;
function (error) {
if (error) {
throw error;
}
}
);
Expand All @@ -232,7 +232,9 @@ async function initializeRedisClient(): Promise<RedisClientType> {
},
});

redis.on("error", (err: any) => console.log("Redis Client Error", err));
redis.on("error", (error: any) =>
console.error("Redis Client Error", error)
);

await redis.connect();
return redis as RedisClientType;
Expand Down
Loading
Loading