0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00

chore: update cloud dependency

This commit is contained in:
Darcy Ye 2024-03-19 00:22:41 +08:00
parent 18fb88ecdd
commit 89ba8a1a0c
No known key found for this signature in database
GPG key ID: B46F4C07EDEFC610
3 changed files with 25 additions and 23 deletions

View file

@ -28,7 +28,7 @@
"@fontsource/roboto-mono": "^5.0.0",
"@jest/types": "^29.5.0",
"@logto/app-insights": "workspace:^1.4.0",
"@logto/cloud": "0.2.5-d9576f9",
"@logto/cloud": "0.2.5-ceb63ed",
"@logto/connector-kit": "workspace:^2.1.0",
"@logto/core-kit": "workspace:^2.3.0",
"@logto/language-kit": "workspace:^1.1.0",

View file

@ -14,10 +14,9 @@ import {
logtoCookieKey,
type LogtoUiCookie,
LogtoJwtTokenKey,
type JsonObject,
type CustomJwtFetcher,
} from '@logto/schemas';
import { conditional, trySafe, tryThat } from '@silverhand/essentials';
import { got } from 'got';
import i18next from 'i18next';
import koaBody from 'koa-body';
import Provider, { errors } from 'oidc-provider';
@ -239,8 +238,7 @@ export default function initOidc(
if (script) {
// Wait for cloud API to be ready and we can use cloud connection client to request the API.
const accessToken = await cloudConnection.getAccessToken();
const { endpoint: cloudApiEndpoint } = await cloudConnection.getCloudConnectionData();
const client = await cloudConnection.getClient();
// We pass context to the cloud API only when it is a user's access token.
const logtoUserInfo = conditional(
@ -248,23 +246,27 @@ export default function initOidc(
token.accountId &&
(await libraries.jwtCustomizers.getUserContext(token.accountId))
);
const result =
(await trySafe(
got
.post(`${cloudApiEndpoint}/services/custom-jwt`, {
headers: {
Authorization: `Bearer ${accessToken}`,
},
json: {
/**
* `token` and `context` can not be assigned to Record<string, Json> according to the type inference,
* use request body guard to ensure the type.
*
* Use direct type casting to avoid the type inference issue since if the type is not correct the client
* will throw an Zod type error, there is no need to implement the zod guard and error handling here.
*/
// eslint-disable-next-line no-restricted-syntax
const payload = {
script,
envVars,
token,
...conditional(logtoUserInfo && { context: { user: logtoUserInfo } }),
},
context: conditional(logtoUserInfo && { user: logtoUserInfo }),
} as unknown as CustomJwtFetcher;
return (
(await trySafe(
client.post(`/api/services/custom-jwt`, {
body: payload,
})
.json<JsonObject>()
)) ?? {};
return result;
)) ?? {}
);
}
},
extraClientMetadata: {

View file

@ -2919,8 +2919,8 @@ importers:
specifier: workspace:^1.4.0
version: link:../app-insights
'@logto/cloud':
specifier: 0.2.5-d9576f9
version: 0.2.5-d9576f9(zod@3.22.4)
specifier: 0.2.5-ceb63ed
version: 0.2.5-ceb63ed(zod@3.22.4)
'@logto/connector-kit':
specifier: workspace:^2.1.0
version: link:../toolkit/connector-kit