More fixes

This commit is contained in:
Daniel Hougaard
2024-08-30 07:20:12 +04:00
parent 7fd8c56cc8
commit 6cb5ebfef2
3 changed files with 37 additions and 27 deletions

View File

@@ -1,10 +1,22 @@
import { Configuration, DefaultApi as InfisicalApi } from "./infisicalapi_client";
import { DefaultApiApiV1DynamicSecretsLeasesPostRequest } from "./infisicalapi_client";
import SecretsClient from "./custom/secrets";
import AuthClient from "./custom/auth";
// We need to do bind(this) because the authenticate method is a private method, and usually you can't call private methods from outside the class.
const buildRestClient = (apiClient: InfisicalApi, accessToken: string) => {
const defaultOptions = {
headers: {
Authorization: `Bearer ${accessToken}`
}
};
return {
apiV1DynamicSecretsLeasesPost: (options: DefaultApiApiV1DynamicSecretsLeasesPostRequest) =>
apiClient.apiV1DynamicSecretsLeasesPost(options, defaultOptions)
};
};
// We need to do bind(this) because the authenticate method is a private method, and usually you can't call private methods from outside the class.
type InfisicalSDKOptions = {
siteUrl?: string;
};
@@ -16,27 +28,42 @@ class InfisicalSDK {
#secretsClient: SecretsClient;
#authClient: AuthClient;
#basePath: string;
#accessToken: string;
constructor(options?: InfisicalSDKOptions) {
this.#basePath = options?.siteUrl || "https://app.infisical.com";
this.#apiInstance = new InfisicalApi(new Configuration({ basePath: this.#basePath }));
this.#accessToken = "";
this.#authClient = new AuthClient(this.authenticate.bind(this));
this.#apiInstance = new InfisicalApi(
new Configuration({
basePath: this.#basePath
})
);
this.#authClient = new AuthClient(this.authenticate.bind(this), this.#apiInstance);
this.#secretsClient = new SecretsClient(this.#apiInstance);
this.rest = () => buildRestClient(this.#apiInstance, this.#accessToken);
}
private authenticate(accessToken: string) {
this.#apiInstance = new InfisicalApi(new Configuration({ accessToken, basePath: this.#basePath }));
this.#apiInstance = new InfisicalApi(
new Configuration({
basePath: this.#basePath,
accessToken
})
);
this.#accessToken = accessToken;
this.#secretsClient = new SecretsClient(this.#apiInstance);
this.#authClient = new AuthClient(this.authenticate.bind(this));
this.#authClient = new AuthClient(this.authenticate.bind(this), this.#apiInstance);
this.rest = () => buildRestClient(this.#apiInstance, this.#accessToken);
return this;
}
secrets = () => this.#secretsClient;
auth = () => this.#authClient;
rest = () => this.#apiInstance;
rest = () => buildRestClient(this.#apiInstance, this.#accessToken);
}
export { InfisicalSDK };