azure-kusto-data 2.2.1 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintignore +5 -0
- package/.eslintrc.js +247 -0
- package/.prettierignore +7 -0
- package/.prettierrc.json +5 -0
- package/README.md +22 -12
- package/example.js +3 -5
- package/index.js +0 -1
- package/index.js.map +1 -1
- package/package.json +63 -51
- package/source/client.d.ts +3 -3
- package/source/client.js +41 -28
- package/source/client.js.map +1 -1
- package/source/clientRequestProperties.d.ts +13 -2
- package/source/clientRequestProperties.js +11 -5
- package/source/clientRequestProperties.js.map +1 -1
- package/source/cloudSettings.js +2 -2
- package/source/cloudSettings.js.map +1 -1
- package/source/connectionBuilder.d.ts +22 -6
- package/source/connectionBuilder.js +120 -50
- package/source/connectionBuilder.js.map +1 -1
- package/source/errors.d.ts +6 -0
- package/source/errors.js +16 -0
- package/source/errors.js.map +1 -0
- package/source/models.d.ts +29 -5
- package/source/models.js +57 -20
- package/source/models.js.map +1 -1
- package/source/response.d.ts +2 -2
- package/source/response.js +15 -13
- package/source/response.js.map +1 -1
- package/source/security.d.ts +2 -2
- package/source/security.js +31 -20
- package/source/security.js.map +1 -1
- package/source/tokenProvider.d.ts +62 -28
- package/source/tokenProvider.js +143 -61
- package/source/tokenProvider.js.map +1 -1
- package/source/typeUtilts.d.ts +3 -0
- package/source/typeUtilts.js +5 -0
- package/source/typeUtilts.js.map +1 -0
- package/tsconfig.json +16 -16
- package/tsconfig.tsbuildinfo +1579 -2247
- package/index.ts +0 -13
- package/tslint.json +0 -18
|
@@ -1,12 +1,15 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ConfidentialClientApplication, PublicClientApplication } from "@azure/msal-node";
|
|
2
2
|
import { DeviceCodeResponse } from "@azure/msal-common";
|
|
3
|
-
import { AzureCliCredentials } from "@azure/ms-rest-nodeauth";
|
|
4
|
-
import { ManagedIdentityCredential } from "@azure/identity";
|
|
5
3
|
import { CloudInfo } from "./cloudSettings";
|
|
4
|
+
import { TokenCredential } from "@azure/core-auth";
|
|
6
5
|
export declare type TokenResponse = {
|
|
7
6
|
tokenType: string;
|
|
8
7
|
accessToken: string;
|
|
9
8
|
};
|
|
9
|
+
interface TokenType {
|
|
10
|
+
tokenType: string;
|
|
11
|
+
accessToken: string;
|
|
12
|
+
}
|
|
10
13
|
/**
|
|
11
14
|
* This base class abstracts token acquisition for all implementations.
|
|
12
15
|
* The class is build for Lazy initialization, so that the first call, take on instantiation of 'heavy' long-lived class members
|
|
@@ -15,7 +18,8 @@ export declare abstract class TokenProviderBase {
|
|
|
15
18
|
kustoUri: string;
|
|
16
19
|
scopes: string[];
|
|
17
20
|
abstract acquireToken(): Promise<TokenResponse>;
|
|
18
|
-
|
|
21
|
+
context(): Record<string, any>;
|
|
22
|
+
protected constructor(kustoUri: string);
|
|
19
23
|
}
|
|
20
24
|
/**
|
|
21
25
|
* Basic Token Provider keeps and returns a token received on construction
|
|
@@ -33,31 +37,58 @@ export declare class CallbackTokenProvider extends TokenProviderBase {
|
|
|
33
37
|
constructor(kustoUri: string, callback: () => Promise<string>);
|
|
34
38
|
acquireToken(): Promise<TokenResponse>;
|
|
35
39
|
}
|
|
36
|
-
export declare class MsiTokenProvider extends TokenProviderBase {
|
|
37
|
-
clientId?: string;
|
|
38
|
-
managedIdentityCredential: ManagedIdentityCredential;
|
|
39
|
-
constructor(kustoUri: string, clientId?: string);
|
|
40
|
-
acquireToken(): Promise<TokenResponse>;
|
|
41
|
-
}
|
|
42
|
-
/**
|
|
43
|
-
* AzCli Token Provider obtains a refresh token from the AzCli cache and uses it to authenticate with MSAL
|
|
44
|
-
*/
|
|
45
|
-
export declare class AzCliTokenProvider extends TokenProviderBase {
|
|
46
|
-
azureCliCredentials: AzureCliCredentials;
|
|
47
|
-
constructor(kustoUri: string);
|
|
48
|
-
acquireToken(): Promise<TokenResponse>;
|
|
49
|
-
}
|
|
50
40
|
/**
|
|
51
41
|
* Acquire a token from MSAL
|
|
52
42
|
*/
|
|
53
43
|
declare abstract class MsalTokenProvider extends TokenProviderBase {
|
|
54
44
|
cloudInfo: CloudInfo;
|
|
55
|
-
authorityId
|
|
45
|
+
authorityId: string;
|
|
56
46
|
initialized: boolean;
|
|
47
|
+
authorityUri: string;
|
|
57
48
|
abstract initClient(): void;
|
|
58
|
-
abstract acquireMsalToken(): Promise<
|
|
59
|
-
constructor(kustoUri: string, authorityId
|
|
49
|
+
abstract acquireMsalToken(): Promise<TokenType | null>;
|
|
50
|
+
protected constructor(kustoUri: string, authorityId: string);
|
|
60
51
|
acquireToken(): Promise<TokenResponse>;
|
|
52
|
+
context(): Record<string, any>;
|
|
53
|
+
}
|
|
54
|
+
export declare abstract class AzureIdentityProvider extends MsalTokenProvider {
|
|
55
|
+
protected clientId?: string | undefined;
|
|
56
|
+
private timeoutMs?;
|
|
57
|
+
private credential;
|
|
58
|
+
protected authorityHost: string;
|
|
59
|
+
constructor(kustoUri: string, authorityId: string, clientId?: string | undefined, timeoutMs?: number | undefined);
|
|
60
|
+
initClient(): void;
|
|
61
|
+
getCommonOptions(): {
|
|
62
|
+
authorityHost: string;
|
|
63
|
+
clientId: string | undefined;
|
|
64
|
+
tenantId: string;
|
|
65
|
+
};
|
|
66
|
+
acquireMsalToken(): Promise<TokenType | null>;
|
|
67
|
+
context(): Record<string, any>;
|
|
68
|
+
abstract getCredential(): TokenCredential;
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* MSI Token Provider obtains a token from the MSI endpoint
|
|
72
|
+
* The args parameter is a dictionary conforming with the ManagedIdentityCredential initializer API arguments
|
|
73
|
+
*/
|
|
74
|
+
export declare class MsiTokenProvider extends AzureIdentityProvider {
|
|
75
|
+
getCredential(): TokenCredential;
|
|
76
|
+
}
|
|
77
|
+
/**
|
|
78
|
+
* AzCli Token Provider obtains a refresh token from the AzCli cache and uses it to authenticate with MSAL
|
|
79
|
+
*/
|
|
80
|
+
export declare class AzCliTokenProvider extends AzureIdentityProvider {
|
|
81
|
+
getCredential(): TokenCredential;
|
|
82
|
+
}
|
|
83
|
+
/**
|
|
84
|
+
* UserPromptProvider will pop up a login prompt to acquire a token.
|
|
85
|
+
*/
|
|
86
|
+
export declare class UserPromptProvider extends AzureIdentityProvider {
|
|
87
|
+
private loginHint?;
|
|
88
|
+
readonly BrowserPort = 23145;
|
|
89
|
+
constructor(kustoUri: string, authorityId: string, clientId?: string, timeoutMs?: number, loginHint?: string | undefined);
|
|
90
|
+
getCredential(): TokenCredential;
|
|
91
|
+
context(): Record<string, any>;
|
|
61
92
|
}
|
|
62
93
|
/**
|
|
63
94
|
* Acquire a token from MSAL with username and password
|
|
@@ -67,9 +98,10 @@ export declare class UserPassTokenProvider extends MsalTokenProvider {
|
|
|
67
98
|
password: string;
|
|
68
99
|
homeAccountId?: string;
|
|
69
100
|
msalClient: PublicClientApplication;
|
|
70
|
-
constructor(kustoUri: string, userName: string, password: string, authorityId
|
|
101
|
+
constructor(kustoUri: string, userName: string, password: string, authorityId: string);
|
|
71
102
|
initClient(): void;
|
|
72
|
-
acquireMsalToken(): Promise<
|
|
103
|
+
acquireMsalToken(): Promise<TokenType | null>;
|
|
104
|
+
context(): Record<string, any>;
|
|
73
105
|
}
|
|
74
106
|
/**
|
|
75
107
|
* Acquire a token from MSAL with Device Login flow
|
|
@@ -78,9 +110,9 @@ export declare class DeviceLoginTokenProvider extends MsalTokenProvider {
|
|
|
78
110
|
deviceCodeCallback: (response: DeviceCodeResponse) => void;
|
|
79
111
|
homeAccountId?: string;
|
|
80
112
|
msalClient: PublicClientApplication;
|
|
81
|
-
constructor(kustoUri: string, deviceCodeCallback: (response: DeviceCodeResponse) => void, authorityId
|
|
113
|
+
constructor(kustoUri: string, deviceCodeCallback: (response: DeviceCodeResponse) => void, authorityId: string);
|
|
82
114
|
initClient(): void;
|
|
83
|
-
acquireMsalToken(): Promise<
|
|
115
|
+
acquireMsalToken(): Promise<TokenType | null>;
|
|
84
116
|
}
|
|
85
117
|
/**
|
|
86
118
|
* Acquire a token from MSAL with application Id and Key
|
|
@@ -89,9 +121,10 @@ export declare class ApplicationKeyTokenProvider extends MsalTokenProvider {
|
|
|
89
121
|
appClientId: string;
|
|
90
122
|
appKey: string;
|
|
91
123
|
msalClient: ConfidentialClientApplication;
|
|
92
|
-
constructor(kustoUri: string, appClientId: string, appKey: string, authorityId
|
|
124
|
+
constructor(kustoUri: string, appClientId: string, appKey: string, authorityId: string);
|
|
93
125
|
initClient(): void;
|
|
94
|
-
acquireMsalToken(): Promise<
|
|
126
|
+
acquireMsalToken(): Promise<TokenType | null>;
|
|
127
|
+
context(): Record<string, any>;
|
|
95
128
|
}
|
|
96
129
|
/**
|
|
97
130
|
* Acquire a token from MSAL using application certificate
|
|
@@ -105,6 +138,7 @@ export declare class ApplicationCertificateTokenProvider extends MsalTokenProvid
|
|
|
105
138
|
msalClient: ConfidentialClientApplication;
|
|
106
139
|
constructor(kustoUri: string, appClientId: string, certThumbprint: string, certPrivateKey: string, certX5c?: string, authorityId?: string);
|
|
107
140
|
initClient(): void;
|
|
108
|
-
acquireMsalToken(): Promise<
|
|
141
|
+
acquireMsalToken(): Promise<TokenType | null>;
|
|
142
|
+
context(): Record<string, any>;
|
|
109
143
|
}
|
|
110
144
|
export {};
|
package/source/tokenProvider.js
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
// Copyright (c) Microsoft Corporation.
|
|
3
|
+
// Licensed under the MIT License.
|
|
2
4
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
5
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
6
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -9,11 +11,9 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
9
11
|
});
|
|
10
12
|
};
|
|
11
13
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.ApplicationCertificateTokenProvider = exports.ApplicationKeyTokenProvider = exports.DeviceLoginTokenProvider = exports.UserPassTokenProvider = exports.AzCliTokenProvider = exports.MsiTokenProvider = exports.CallbackTokenProvider = exports.BasicTokenProvider = exports.TokenProviderBase = void 0;
|
|
13
|
-
|
|
14
|
-
// Licensed under the MIT License.
|
|
14
|
+
exports.ApplicationCertificateTokenProvider = exports.ApplicationKeyTokenProvider = exports.DeviceLoginTokenProvider = exports.UserPassTokenProvider = exports.UserPromptProvider = exports.AzCliTokenProvider = exports.MsiTokenProvider = exports.AzureIdentityProvider = exports.CallbackTokenProvider = exports.BasicTokenProvider = exports.TokenProviderBase = void 0;
|
|
15
|
+
/* eslint-disable max-classes-per-file -- We want all the Token Providers in this file */
|
|
15
16
|
const msal_node_1 = require("@azure/msal-node");
|
|
16
|
-
const ms_rest_nodeauth_1 = require("@azure/ms-rest-nodeauth");
|
|
17
17
|
const identity_1 = require("@azure/identity");
|
|
18
18
|
const cloudSettings_1 = require("./cloudSettings");
|
|
19
19
|
const BEARER_TYPE = "Bearer";
|
|
@@ -25,10 +25,13 @@ class TokenProviderBase {
|
|
|
25
25
|
constructor(kustoUri) {
|
|
26
26
|
this.kustoUri = kustoUri;
|
|
27
27
|
if (kustoUri != null) {
|
|
28
|
-
const suffix = this.kustoUri.endsWith("/") ? "
|
|
28
|
+
const suffix = (!this.kustoUri.endsWith("/") ? "/" : "") + ".default";
|
|
29
29
|
this.scopes = [kustoUri + suffix];
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
|
+
context() {
|
|
33
|
+
return {};
|
|
34
|
+
}
|
|
32
35
|
}
|
|
33
36
|
exports.TokenProviderBase = TokenProviderBase;
|
|
34
37
|
/**
|
|
@@ -40,7 +43,10 @@ class BasicTokenProvider extends TokenProviderBase {
|
|
|
40
43
|
this.token = token;
|
|
41
44
|
}
|
|
42
45
|
acquireToken() {
|
|
43
|
-
return Promise.resolve({
|
|
46
|
+
return Promise.resolve({
|
|
47
|
+
tokenType: BEARER_TYPE,
|
|
48
|
+
accessToken: this.token,
|
|
49
|
+
});
|
|
44
50
|
}
|
|
45
51
|
}
|
|
46
52
|
exports.BasicTokenProvider = BasicTokenProvider;
|
|
@@ -60,44 +66,6 @@ class CallbackTokenProvider extends TokenProviderBase {
|
|
|
60
66
|
}
|
|
61
67
|
}
|
|
62
68
|
exports.CallbackTokenProvider = CallbackTokenProvider;
|
|
63
|
-
// MSI Token Provider obtains a token from the MSI endpoint
|
|
64
|
-
// The args parameter is a dictionary conforming with the ManagedIdentityCredential initializer API arguments
|
|
65
|
-
class MsiTokenProvider extends TokenProviderBase {
|
|
66
|
-
constructor(kustoUri, clientId) {
|
|
67
|
-
super(kustoUri);
|
|
68
|
-
this.clientId = clientId;
|
|
69
|
-
}
|
|
70
|
-
acquireToken() {
|
|
71
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
72
|
-
if (this.managedIdentityCredential == null) {
|
|
73
|
-
this.managedIdentityCredential = this.clientId ? new identity_1.ManagedIdentityCredential(this.clientId) : new identity_1.ManagedIdentityCredential();
|
|
74
|
-
}
|
|
75
|
-
const msiToken = yield this.managedIdentityCredential.getToken(this.kustoUri);
|
|
76
|
-
if ((msiToken === null || msiToken === void 0 ? void 0 : msiToken.token) != null) {
|
|
77
|
-
return { tokenType: BEARER_TYPE, accessToken: msiToken.token };
|
|
78
|
-
}
|
|
79
|
-
throw new Error(`"Failed to obtain MSI token for '${this.kustoUri}' with '${this.clientId}'`);
|
|
80
|
-
});
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
exports.MsiTokenProvider = MsiTokenProvider;
|
|
84
|
-
/**
|
|
85
|
-
* AzCli Token Provider obtains a refresh token from the AzCli cache and uses it to authenticate with MSAL
|
|
86
|
-
*/
|
|
87
|
-
class AzCliTokenProvider extends TokenProviderBase {
|
|
88
|
-
constructor(kustoUri) {
|
|
89
|
-
super(kustoUri);
|
|
90
|
-
}
|
|
91
|
-
acquireToken() {
|
|
92
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
93
|
-
if (this.azureCliCredentials == null) {
|
|
94
|
-
this.azureCliCredentials = yield ms_rest_nodeauth_1.AzureCliCredentials.create({ resource: this.kustoUri });
|
|
95
|
-
}
|
|
96
|
-
return this.azureCliCredentials.getToken();
|
|
97
|
-
});
|
|
98
|
-
}
|
|
99
|
-
}
|
|
100
|
-
exports.AzCliTokenProvider = AzCliTokenProvider;
|
|
101
69
|
/**
|
|
102
70
|
* Acquire a token from MSAL
|
|
103
71
|
*/
|
|
@@ -109,7 +77,6 @@ class MsalTokenProvider extends TokenProviderBase {
|
|
|
109
77
|
}
|
|
110
78
|
acquireToken() {
|
|
111
79
|
return __awaiter(this, void 0, void 0, function* () {
|
|
112
|
-
let token;
|
|
113
80
|
if (!this.initialized) {
|
|
114
81
|
if (this.cloudInfo == null) {
|
|
115
82
|
this.cloudInfo = yield cloudSettings_1.CloudSettings.getInstance().getCloudInfoForCluster(this.kustoUri);
|
|
@@ -118,18 +85,107 @@ class MsalTokenProvider extends TokenProviderBase {
|
|
|
118
85
|
resourceUri = resourceUri.replace(".kusto.", ".kustomfa.");
|
|
119
86
|
}
|
|
120
87
|
this.scopes = [resourceUri + "/.default"];
|
|
88
|
+
this.authorityUri = cloudSettings_1.CloudSettings.getAuthorityUri(this.cloudInfo, this.authorityId);
|
|
121
89
|
this.initClient();
|
|
122
90
|
}
|
|
123
91
|
this.initialized = true;
|
|
124
92
|
}
|
|
125
|
-
token = yield this.acquireMsalToken();
|
|
93
|
+
const token = yield this.acquireMsalToken();
|
|
126
94
|
if (token) {
|
|
127
95
|
return { tokenType: token.tokenType, accessToken: token.accessToken };
|
|
128
96
|
}
|
|
129
97
|
throw new Error("Failed to get token from msal");
|
|
130
98
|
});
|
|
131
99
|
}
|
|
100
|
+
context() {
|
|
101
|
+
return Object.assign(Object.assign({}, super.context()), { kustoUri: this.kustoUri, authorityId: this.authorityId });
|
|
102
|
+
}
|
|
132
103
|
}
|
|
104
|
+
class AzureIdentityProvider extends MsalTokenProvider {
|
|
105
|
+
constructor(kustoUri, authorityId, clientId, timeoutMs) {
|
|
106
|
+
super(kustoUri, authorityId);
|
|
107
|
+
this.clientId = clientId;
|
|
108
|
+
this.timeoutMs = timeoutMs;
|
|
109
|
+
}
|
|
110
|
+
initClient() {
|
|
111
|
+
this.authorityHost = this.cloudInfo.LoginEndpoint;
|
|
112
|
+
this.credential = this.getCredential();
|
|
113
|
+
}
|
|
114
|
+
getCommonOptions() {
|
|
115
|
+
return {
|
|
116
|
+
authorityHost: this.authorityHost,
|
|
117
|
+
tenantId: this.authorityId,
|
|
118
|
+
clientId: this.clientId,
|
|
119
|
+
};
|
|
120
|
+
}
|
|
121
|
+
acquireMsalToken() {
|
|
122
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
123
|
+
const response = yield this.credential.getToken(this.scopes, {
|
|
124
|
+
requestOptions: {
|
|
125
|
+
timeout: this.timeoutMs,
|
|
126
|
+
},
|
|
127
|
+
tenantId: this.authorityId,
|
|
128
|
+
});
|
|
129
|
+
if (response === null) {
|
|
130
|
+
throw new Error("Failed to get token from msal");
|
|
131
|
+
}
|
|
132
|
+
return { tokenType: BEARER_TYPE, accessToken: response.token };
|
|
133
|
+
});
|
|
134
|
+
}
|
|
135
|
+
context() {
|
|
136
|
+
let base = Object.assign(Object.assign({}, super.context()), { kustoUri: this.kustoUri, authorityId: this.authorityId });
|
|
137
|
+
if (this.clientId) {
|
|
138
|
+
base = Object.assign(Object.assign({}, base), { clientId: this.clientId });
|
|
139
|
+
}
|
|
140
|
+
if (this.timeoutMs) {
|
|
141
|
+
base = Object.assign(Object.assign({}, base), { timeoutMs: this.timeoutMs });
|
|
142
|
+
}
|
|
143
|
+
return base;
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
exports.AzureIdentityProvider = AzureIdentityProvider;
|
|
147
|
+
/**
|
|
148
|
+
* MSI Token Provider obtains a token from the MSI endpoint
|
|
149
|
+
* The args parameter is a dictionary conforming with the ManagedIdentityCredential initializer API arguments
|
|
150
|
+
*/
|
|
151
|
+
class MsiTokenProvider extends AzureIdentityProvider {
|
|
152
|
+
getCredential() {
|
|
153
|
+
const options = this.getCommonOptions();
|
|
154
|
+
return this.clientId ? new identity_1.ManagedIdentityCredential(this.clientId, options) : new identity_1.ManagedIdentityCredential(options);
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
exports.MsiTokenProvider = MsiTokenProvider;
|
|
158
|
+
/**
|
|
159
|
+
* AzCli Token Provider obtains a refresh token from the AzCli cache and uses it to authenticate with MSAL
|
|
160
|
+
*/
|
|
161
|
+
class AzCliTokenProvider extends AzureIdentityProvider {
|
|
162
|
+
getCredential() {
|
|
163
|
+
return new identity_1.AzureCliCredential(this.getCommonOptions());
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
exports.AzCliTokenProvider = AzCliTokenProvider;
|
|
167
|
+
/**
|
|
168
|
+
* UserPromptProvider will pop up a login prompt to acquire a token.
|
|
169
|
+
*/
|
|
170
|
+
class UserPromptProvider extends AzureIdentityProvider {
|
|
171
|
+
constructor(kustoUri, authorityId, clientId, timeoutMs, loginHint) {
|
|
172
|
+
super(kustoUri, authorityId, clientId, timeoutMs);
|
|
173
|
+
this.loginHint = loginHint;
|
|
174
|
+
// The default port is 80, which can lead to permission errors, so we'll choose another port
|
|
175
|
+
this.BrowserPort = 23145;
|
|
176
|
+
}
|
|
177
|
+
getCredential() {
|
|
178
|
+
return new identity_1.InteractiveBrowserCredential(Object.assign(Object.assign({}, this.getCommonOptions()), { loginHint: this.loginHint, redirectUri: `http://localhost:${this.BrowserPort}/` }));
|
|
179
|
+
}
|
|
180
|
+
context() {
|
|
181
|
+
let base = super.context();
|
|
182
|
+
if (this.loginHint) {
|
|
183
|
+
base = Object.assign(Object.assign({}, base), { loginHint: this.loginHint });
|
|
184
|
+
}
|
|
185
|
+
return base;
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
exports.UserPromptProvider = UserPromptProvider;
|
|
133
189
|
/**
|
|
134
190
|
* Acquire a token from MSAL with username and password
|
|
135
191
|
*/
|
|
@@ -143,8 +199,8 @@ class UserPassTokenProvider extends MsalTokenProvider {
|
|
|
143
199
|
const clientConfig = {
|
|
144
200
|
auth: {
|
|
145
201
|
clientId: this.cloudInfo.KustoClientAppId,
|
|
146
|
-
authority:
|
|
147
|
-
}
|
|
202
|
+
authority: this.authorityUri,
|
|
203
|
+
},
|
|
148
204
|
};
|
|
149
205
|
this.msalClient = new msal_node_1.PublicClientApplication(clientConfig);
|
|
150
206
|
}
|
|
@@ -155,16 +211,26 @@ class UserPassTokenProvider extends MsalTokenProvider {
|
|
|
155
211
|
if (this.homeAccountId != null) {
|
|
156
212
|
const account = yield this.msalClient.getTokenCache().getAccountByHomeId(this.homeAccountId);
|
|
157
213
|
if (account) {
|
|
158
|
-
token = yield this.msalClient.acquireTokenSilent({
|
|
214
|
+
token = yield this.msalClient.acquireTokenSilent({
|
|
215
|
+
account,
|
|
216
|
+
scopes: this.scopes,
|
|
217
|
+
});
|
|
159
218
|
}
|
|
160
219
|
}
|
|
161
220
|
if (token == null) {
|
|
162
|
-
token = yield this.msalClient.acquireTokenByUsernamePassword({
|
|
221
|
+
token = yield this.msalClient.acquireTokenByUsernamePassword({
|
|
222
|
+
scopes: this.scopes,
|
|
223
|
+
username: this.userName,
|
|
224
|
+
password: this.password,
|
|
225
|
+
});
|
|
163
226
|
this.homeAccountId = (_a = token === null || token === void 0 ? void 0 : token.account) === null || _a === void 0 ? void 0 : _a.homeAccountId;
|
|
164
227
|
}
|
|
165
228
|
return token;
|
|
166
229
|
});
|
|
167
230
|
}
|
|
231
|
+
context() {
|
|
232
|
+
return Object.assign(Object.assign({}, super.context()), { userName: this.userName, homeAccountId: this.homeAccountId });
|
|
233
|
+
}
|
|
168
234
|
}
|
|
169
235
|
exports.UserPassTokenProvider = UserPassTokenProvider;
|
|
170
236
|
/**
|
|
@@ -179,7 +245,7 @@ class DeviceLoginTokenProvider extends MsalTokenProvider {
|
|
|
179
245
|
const clientConfig = {
|
|
180
246
|
auth: {
|
|
181
247
|
clientId: this.cloudInfo.KustoClientAppId,
|
|
182
|
-
authority:
|
|
248
|
+
authority: this.authorityUri,
|
|
183
249
|
},
|
|
184
250
|
};
|
|
185
251
|
this.msalClient = new msal_node_1.PublicClientApplication(clientConfig);
|
|
@@ -191,11 +257,17 @@ class DeviceLoginTokenProvider extends MsalTokenProvider {
|
|
|
191
257
|
if (this.homeAccountId != null) {
|
|
192
258
|
const account = yield this.msalClient.getTokenCache().getAccountByHomeId(this.homeAccountId);
|
|
193
259
|
if (account) {
|
|
194
|
-
token = yield this.msalClient.acquireTokenSilent({
|
|
260
|
+
token = yield this.msalClient.acquireTokenSilent({
|
|
261
|
+
account,
|
|
262
|
+
scopes: this.scopes,
|
|
263
|
+
});
|
|
195
264
|
}
|
|
196
265
|
}
|
|
197
266
|
if (token == null) {
|
|
198
|
-
token = yield this.msalClient.acquireTokenByDeviceCode({
|
|
267
|
+
token = yield this.msalClient.acquireTokenByDeviceCode({
|
|
268
|
+
scopes: this.scopes,
|
|
269
|
+
deviceCodeCallback: this.deviceCodeCallback,
|
|
270
|
+
});
|
|
199
271
|
this.homeAccountId = (_a = token === null || token === void 0 ? void 0 : token.account) === null || _a === void 0 ? void 0 : _a.homeAccountId;
|
|
200
272
|
}
|
|
201
273
|
return token;
|
|
@@ -217,13 +289,18 @@ class ApplicationKeyTokenProvider extends MsalTokenProvider {
|
|
|
217
289
|
auth: {
|
|
218
290
|
clientId: this.appClientId,
|
|
219
291
|
clientSecret: this.appKey,
|
|
220
|
-
authority:
|
|
221
|
-
}
|
|
292
|
+
authority: this.authorityUri,
|
|
293
|
+
},
|
|
222
294
|
};
|
|
223
295
|
this.msalClient = new msal_node_1.ConfidentialClientApplication(clientConfig);
|
|
224
296
|
}
|
|
225
297
|
acquireMsalToken() {
|
|
226
|
-
return this.msalClient.acquireTokenByClientCredential({
|
|
298
|
+
return this.msalClient.acquireTokenByClientCredential({
|
|
299
|
+
scopes: this.scopes,
|
|
300
|
+
});
|
|
301
|
+
}
|
|
302
|
+
context() {
|
|
303
|
+
return Object.assign(Object.assign({}, super.context()), { clientId: this.appClientId });
|
|
227
304
|
}
|
|
228
305
|
}
|
|
229
306
|
exports.ApplicationKeyTokenProvider = ApplicationKeyTokenProvider;
|
|
@@ -243,18 +320,23 @@ class ApplicationCertificateTokenProvider extends MsalTokenProvider {
|
|
|
243
320
|
const clientConfig = {
|
|
244
321
|
auth: {
|
|
245
322
|
clientId: this.appClientId,
|
|
246
|
-
authority:
|
|
323
|
+
authority: this.authorityUri,
|
|
247
324
|
clientCertificate: {
|
|
248
325
|
thumbprint: this.certThumbprint,
|
|
249
326
|
privateKey: this.certPrivateKey,
|
|
250
|
-
x5c: this.certX5c
|
|
251
|
-
}
|
|
252
|
-
}
|
|
327
|
+
x5c: this.certX5c,
|
|
328
|
+
},
|
|
329
|
+
},
|
|
253
330
|
};
|
|
254
331
|
this.msalClient = new msal_node_1.ConfidentialClientApplication(clientConfig);
|
|
255
332
|
}
|
|
256
333
|
acquireMsalToken() {
|
|
257
|
-
return this.msalClient.acquireTokenByClientCredential({
|
|
334
|
+
return this.msalClient.acquireTokenByClientCredential({
|
|
335
|
+
scopes: this.scopes,
|
|
336
|
+
});
|
|
337
|
+
}
|
|
338
|
+
context() {
|
|
339
|
+
return Object.assign(Object.assign({}, super.context()), { clientId: this.appClientId, thumbprint: this.certThumbprint });
|
|
258
340
|
}
|
|
259
341
|
}
|
|
260
342
|
exports.ApplicationCertificateTokenProvider = ApplicationCertificateTokenProvider;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tokenProvider.js","sourceRoot":"","sources":["tokenProvider.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"tokenProvider.js","sourceRoot":"","sources":["tokenProvider.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"typeUtilts.js","sourceRoot":"","sources":["typeUtilts.ts"],"names":[],"mappings":";AAAA,uCAAuC;AACvC,kCAAkC"}
|
package/tsconfig.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "es6",
|
|
4
|
+
"module": "commonjs",
|
|
5
|
+
"esModuleInterop": true,
|
|
6
|
+
"strict": true,
|
|
7
|
+
"incremental": true,
|
|
8
|
+
"sourceMap": true,
|
|
9
|
+
"resolveJsonModule": true,
|
|
10
|
+
"allowJs": false,
|
|
11
|
+
"allowSyntheticDefaultImports": true,
|
|
12
|
+
"declaration": true,
|
|
13
|
+
"noUnusedParameters": true,
|
|
14
|
+
"noUnusedLocals": true
|
|
15
|
+
},
|
|
16
|
+
"include": ["source/**/*.ts", "test/**/*.ts", "index.ts"]
|
|
17
|
+
}
|