Skip to content

Commit 1f6ad7b

Browse files
Merge pull request #47 from dgraph-io/apoorv/fix-deprecation
fix(deprecation): add setCloudApiKey method
2 parents db29eaf + e82701b commit 1f6ad7b

7 files changed

+68
-52
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -128,10 +128,10 @@ const clientStub = new dgraph.DgraphClientStub(
128128
const dgraphClient = new dgraph.DgraphClient(clientStub);
129129

130130
//here we pass the API key
131-
dgraphClient.setSlashApiKey("<api-key>");
131+
dgraphClient.setCloudApiKey("<api-key>");
132132
```
133133

134-
**Note:** the `setSlashApiKey` method is deprecated and will be removed in the next release.
134+
**Note:** the `setSlashApiKey` method is deprecated and will be removed in the next release. Instead use `setCloudApiKey` method.
135135

136136
### Login into Dgraph
137137

@@ -166,10 +166,10 @@ Some Dgraph configurations require extra access tokens.
166166
dgraphClient.setAlphaAuthToken("My secret token value");
167167
```
168168

169-
2. [Slash GraphQL](https://dgraph.io/slash-graphql) requires API key for HTTP access:
169+
2. [Dgraph Cloud](https://cloud.dgraph.io) requires API key for HTTP access:
170170

171171
```js
172-
dgraphClient.setSlashApiKey("Copy the Api Key from Slash GraphQL admin page");
172+
dgraphClient.setCloudApiKey("Copy the Api Key from Dgraph Cloud admin page");
173173
```
174174

175175
### Create https connection

lib/client.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ export declare class DgraphClient {
1111
alter(op: Operation): Promise<Payload>;
1212
setAlphaAuthToken(authToken: string): void;
1313
setSlashApiKey(apiKey: string): void;
14+
setCloudApiKey(apiKey: string): void;
1415
login(userid: string, password: string): Promise<boolean>;
1516
loginIntoNamespace(userid: string, password: string, namespace?: number): Promise<boolean>;
1617
logout(): void;

lib/client.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,10 @@ var DgraphClient = (function () {
7676
});
7777
};
7878
DgraphClient.prototype.setSlashApiKey = function (apiKey) {
79-
this.clients.forEach(function (c) { return c.setSlashApiKey(apiKey); });
79+
this.setCloudApiKey(apiKey);
80+
};
81+
DgraphClient.prototype.setCloudApiKey = function (apiKey) {
82+
this.clients.forEach(function (c) { return c.setCloudApiKey(apiKey); });
8083
};
8184
DgraphClient.prototype.login = function (userid, password) {
8285
return __awaiter(this, void 0, void 0, function () {

lib/clientStub.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ export declare class DgraphClientStub {
3131
setAutoRefresh(val: boolean): void;
3232
setAlphaAuthToken(authToken: string): void;
3333
setSlashApiKey(apiKey: string): void;
34+
setCloudApiKey(apiKey: string): void;
3435
private cancelRefreshTimer;
3536
private maybeStartRefreshTimer;
3637
private callAPI;

lib/clientStub.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ var errors_1 = require("./errors");
5454
var AUTO_REFRESH_PREFETCH_TIME = 5000;
5555
var ACL_TOKEN_HEADER = "X-Dgraph-AccessToken";
5656
var ALPHA_AUTH_TOKEN_HEADER = "X-Dgraph-AuthToken";
57-
var SLASH_API_KEY_HEADER = "X-Auth-Token";
57+
var DGRAPHCLOUD_API_KEY_HEADER = "X-Auth-Token";
5858
var DgraphClientStub = (function () {
5959
function DgraphClientStub(addr, stubConfig, options) {
6060
if (stubConfig === void 0) { stubConfig = {}; }
@@ -399,10 +399,13 @@ var DgraphClientStub = (function () {
399399
this.options.headers[ALPHA_AUTH_TOKEN_HEADER] = authToken;
400400
};
401401
DgraphClientStub.prototype.setSlashApiKey = function (apiKey) {
402+
this.setCloudApiKey(apiKey);
403+
};
404+
DgraphClientStub.prototype.setCloudApiKey = function (apiKey) {
402405
if (this.options.headers === undefined) {
403406
this.options.headers = {};
404407
}
405-
this.options.headers[SLASH_API_KEY_HEADER] = apiKey;
408+
this.options.headers[DGRAPHCLOUD_API_KEY_HEADER] = apiKey;
406409
};
407410
DgraphClientStub.prototype.cancelRefreshTimer = function () {
408411
if (this.autoRefreshTimer !== undefined) {

src/client.ts

+7-3
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,16 @@ export class DgraphClient {
6060
}
6161

6262
/**
63-
* @deprecated since v21.3 and will be removed in v21.07 release. For more details, see:
64-
* https://discuss.dgraph.io/t/regarding-slash-cloud-dgraph-endpoints-in-the-clients/13492
63+
* @deprecated since v21.3 and will be removed in v21.07 release.
64+
* Please use {@link setCloudApiKey} instead.
6565
*/
6666

6767
public setSlashApiKey(apiKey: string) {
68-
this.clients.forEach((c: DgraphClientStub) => c.setSlashApiKey(apiKey));
68+
this.setCloudApiKey(apiKey);
69+
}
70+
71+
public setCloudApiKey(apiKey: string) {
72+
this.clients.forEach((c: DgraphClientStub) => c.setCloudApiKey(apiKey));
6973
}
7074

7175
/**

src/clientStub.ts

+46-42
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const AUTO_REFRESH_PREFETCH_TIME = 5000;
2222

2323
const ACL_TOKEN_HEADER = "X-Dgraph-AccessToken";
2424
const ALPHA_AUTH_TOKEN_HEADER = "X-Dgraph-AuthToken";
25-
const SLASH_API_KEY_HEADER = "X-Auth-Token";
25+
const DGRAPHCLOUD_API_KEY_HEADER = "X-Auth-Token";
2626

2727
/**
2828
* Stub is a stub/client connecting to a single dgraph server instance.
@@ -302,56 +302,56 @@ export class DgraphClientStub {
302302
}
303303

304304
public abort(ctx: TxnContext): Promise<TxnContext> {
305-
let url = !this.legacyApi
305+
let url = !this.legacyApi
306306
? `commit?startTs=${ctx.start_ts}&abort=true`
307307
: `abort/${ctx.start_ts}`;
308308

309-
if (ctx?.hash?.length > 0) {
310-
if (!this.legacyApi) {
309+
if (ctx?.hash?.length > 0) {
310+
if (!this.legacyApi) {
311311
url += `&hash=${ctx.hash}`;
312-
}
313-
}
312+
}
313+
}
314314

315-
return this.callAPI(url, { ...this.options, method: "POST" });
315+
return this.callAPI(url, { ...this.options, method: "POST" });
316316
}
317317

318318
public async login(
319319
userid?: string,
320320
password?: string,
321321
refreshToken?: string,
322322
): Promise<boolean> {
323-
if (this.legacyApi) {
324-
throw new Error("Pre v1.1 clients do not support Login methods");
325-
}
326-
327-
const body: { [k: string]: string } = {};
328-
if (
329-
userid === undefined &&
330-
refreshToken === undefined &&
331-
this.refreshToken === undefined
332-
) {
333-
throw new Error(
334-
"Cannot find login details: neither userid/password nor refresh token are specified",
335-
);
336-
}
337-
if (userid === undefined) {
338-
body.refresh_token =
339-
refreshToken !== undefined ? refreshToken : this.refreshToken;
340-
} else {
341-
body.userid = userid;
342-
body.password = password;
343-
}
344-
345-
const res: LoginResponse = await this.callAPI("login", {
346-
...this.options,
347-
method: "POST",
348-
body: JSON.stringify(body),
349-
});
350-
this.accessToken = res.data.accessJWT;
351-
this.refreshToken = res.data.refreshJWT;
352-
353-
this.maybeStartRefreshTimer(this.accessToken);
354-
return true;
323+
if (this.legacyApi) {
324+
throw new Error("Pre v1.1 clients do not support Login methods");
325+
}
326+
327+
const body: { [k: string]: string } = {};
328+
if (
329+
userid === undefined &&
330+
refreshToken === undefined &&
331+
this.refreshToken === undefined
332+
) {
333+
throw new Error(
334+
"Cannot find login details: neither userid/password nor refresh token are specified",
335+
);
336+
}
337+
if (userid === undefined) {
338+
body.refresh_token =
339+
refreshToken !== undefined ? refreshToken : this.refreshToken;
340+
} else {
341+
body.userid = userid;
342+
body.password = password;
343+
}
344+
345+
const res: LoginResponse = await this.callAPI("login", {
346+
...this.options,
347+
method: "POST",
348+
body: JSON.stringify(body),
349+
});
350+
this.accessToken = res.data.accessJWT;
351+
this.refreshToken = res.data.refreshJWT;
352+
353+
this.maybeStartRefreshTimer(this.accessToken);
354+
return true;
355355
}
356356

357357
public async loginIntoNamespace(
@@ -444,15 +444,19 @@ export class DgraphClientStub {
444444
}
445445

446446
/**
447-
* @deprecated since v21.3 and will be removed in v21.07 release. For more details, see:
448-
* https://discuss.dgraph.io/t/regarding-slash-cloud-dgraph-endpoints-in-the-clients/13492
447+
* @deprecated since v21.3 and will be removed in v21.07 release.
448+
* Please use {@link setCloudApiKey} instead.
449449
*/
450450

451451
public setSlashApiKey(apiKey: string) {
452+
this.setCloudApiKey(apiKey);
453+
}
454+
455+
public setCloudApiKey(apiKey: string) {
452456
if (this.options.headers === undefined) {
453457
this.options.headers = {};
454458
}
455-
this.options.headers[SLASH_API_KEY_HEADER] = apiKey;
459+
this.options.headers[DGRAPHCLOUD_API_KEY_HEADER] = apiKey;
456460
}
457461

458462
private cancelRefreshTimer() {

0 commit comments

Comments
 (0)