@faable/auth-js 1.2.2 → 1.3.1
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/README.md +26 -1
- package/dist/Base.d.ts +0 -1
- package/dist/BaseLog.d.ts +0 -1
- package/dist/FaableAuthApi.d.ts +0 -1
- package/dist/FaableAuthClient.d.ts +5 -1
- package/dist/entrypoints/faableauth.d.ts +6 -0
- package/dist/faableauth.js +7 -0
- package/dist/faableauth.js.map +1 -0
- package/dist/lib/constants.d.ts +0 -1
- package/dist/lib/errors.d.ts +0 -1
- package/dist/lib/fetch.d.ts +8 -5
- package/dist/lib/globals.d.ts +4 -0
- package/dist/lib/helpers.d.ts +18 -8
- package/dist/lib/jwt.d.ts +0 -1
- package/dist/lib/local-storage.d.ts +0 -1
- package/dist/lib/storage_helpers.d.ts +0 -1
- package/dist/lib/types.d.ts +0 -1
- package/dist/lib/url_helpers.d.ts +7 -0
- package/dist/lib/version.d.ts +0 -1
- package/dist/lock/Lock.d.ts +0 -1
- package/dist/lock/locks.d.ts +0 -1
- package/dist/utils.d.ts +0 -1
- package/package.json +5 -24
- package/dist/Base.d.ts.map +0 -1
- package/dist/Base.js +0 -16
- package/dist/BaseLog.d.ts.map +0 -1
- package/dist/BaseLog.js +0 -21
- package/dist/FaableAuthApi.d.ts.map +0 -1
- package/dist/FaableAuthApi.js +0 -37
- package/dist/FaableAuthClient.d.ts.map +0 -1
- package/dist/FaableAuthClient.js +0 -1073
- package/dist/index.d.ts +0 -7
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js +0 -13
- package/dist/lib/constants.d.ts.map +0 -1
- package/dist/lib/constants.js +0 -13
- package/dist/lib/errors.d.ts.map +0 -1
- package/dist/lib/errors.js +0 -100
- package/dist/lib/fetch.d.ts.map +0 -1
- package/dist/lib/fetch.js +0 -53
- package/dist/lib/helpers.d.ts.map +0 -1
- package/dist/lib/helpers.js +0 -257
- package/dist/lib/jwt.d.ts.map +0 -1
- package/dist/lib/jwt.js +0 -139
- package/dist/lib/local-storage.d.ts.map +0 -1
- package/dist/lib/local-storage.js +0 -45
- package/dist/lib/storage_helpers.d.ts.map +0 -1
- package/dist/lib/storage_helpers.js +0 -34
- package/dist/lib/types.d.ts.map +0 -1
- package/dist/lib/types.js +0 -6
- package/dist/lib/version.d.ts.map +0 -1
- package/dist/lib/version.js +0 -5
- package/dist/lock/Lock.d.ts.map +0 -1
- package/dist/lock/Lock.js +0 -82
- package/dist/lock/locks.d.ts.map +0 -1
- package/dist/lock/locks.js +0 -137
- package/dist/utils.d.ts.map +0 -1
- package/dist/utils.js +0 -88
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
-
});
|
|
10
|
-
};
|
|
11
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.removeItemAsync = exports.getItemAsync = exports.setItemAsync = void 0;
|
|
13
|
-
// Storage helpers
|
|
14
|
-
const setItemAsync = (storage, key, data) => __awaiter(void 0, void 0, void 0, function* () {
|
|
15
|
-
yield storage.setItem(key, JSON.stringify(data));
|
|
16
|
-
});
|
|
17
|
-
exports.setItemAsync = setItemAsync;
|
|
18
|
-
const getItemAsync = (storage, key) => __awaiter(void 0, void 0, void 0, function* () {
|
|
19
|
-
const value = yield storage.getItem(key);
|
|
20
|
-
if (!value) {
|
|
21
|
-
return null;
|
|
22
|
-
}
|
|
23
|
-
try {
|
|
24
|
-
return JSON.parse(value);
|
|
25
|
-
}
|
|
26
|
-
catch (_a) {
|
|
27
|
-
return value;
|
|
28
|
-
}
|
|
29
|
-
});
|
|
30
|
-
exports.getItemAsync = getItemAsync;
|
|
31
|
-
const removeItemAsync = (storage, key) => __awaiter(void 0, void 0, void 0, function* () {
|
|
32
|
-
yield storage.removeItem(key);
|
|
33
|
-
});
|
|
34
|
-
exports.removeItemAsync = removeItemAsync;
|
package/dist/lib/types.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/lib/types.ts"],"names":[],"mappings":"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"}
|
package/dist/lib/types.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../src/lib/version.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,OAAO,UAAU,CAAC"}
|
package/dist/lib/version.js
DELETED
package/dist/lock/Lock.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Lock.d.ts","sourceRoot":"","sources":["../../src/lock/Lock.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAC;AAC/B,OAAO,EAAE,cAAc,EAAE,MAAM,YAAY,CAAC;AAE5C,OAAO,EAAE,QAAQ,EAAY,MAAM,SAAS,CAAC;AAE7C,KAAK,WAAW,GAAG;IACjB,UAAU,EAAE,MAAM,CAAC;IACnB,IAAI,CAAC,EAAE,QAAQ,CAAC;CACjB,GAAG,cAAc,CAAC;AAEnB,qBAAa,IAAK,SAAQ,IAAI;IAC5B,SAAS,CAAC,IAAI,EAAE,QAAQ,CAAC;IACzB,YAAY,UAAS;IACrB,SAAS,CAAC,aAAa,EAAE,OAAO,CAAC,GAAG,CAAC,EAAE,CAAM;IAE7C,SAAS,CAAC,UAAU,EAAE,MAAM,CAAC;gBAEjB,OAAO,EAAE,WAAW;IAMhC;;OAEG;IACG,YAAY,CAAC,CAAC,EAClB,cAAc,EAAE,MAAM,EACtB,EAAE,EAAE,MAAM,OAAO,CAAC,CAAC,CAAC,GACnB,OAAO,CAAC,CAAC,CAAC;CA+Ed"}
|
package/dist/lock/Lock.js
DELETED
|
@@ -1,82 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
-
});
|
|
10
|
-
};
|
|
11
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.Lock = void 0;
|
|
13
|
-
const Base_1 = require("../Base");
|
|
14
|
-
const locks_1 = require("./locks");
|
|
15
|
-
class Lock extends Base_1.Base {
|
|
16
|
-
constructor(options) {
|
|
17
|
-
super({ debug: options.debug });
|
|
18
|
-
this.lockAcquired = false;
|
|
19
|
-
this.pendingInLock = [];
|
|
20
|
-
this.lock = options.lock || locks_1.lockNoOp;
|
|
21
|
-
this.storageKey = options.storageKey;
|
|
22
|
-
}
|
|
23
|
-
/**
|
|
24
|
-
* Acquires a global lock based on the storage key.
|
|
25
|
-
*/
|
|
26
|
-
_acquireLock(acquireTimeout, fn) {
|
|
27
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
28
|
-
this._debug("#_acquireLock", "begin", acquireTimeout);
|
|
29
|
-
try {
|
|
30
|
-
if (this.lockAcquired) {
|
|
31
|
-
const last = this.pendingInLock.length
|
|
32
|
-
? this.pendingInLock[this.pendingInLock.length - 1]
|
|
33
|
-
: Promise.resolve();
|
|
34
|
-
const result = (() => __awaiter(this, void 0, void 0, function* () {
|
|
35
|
-
yield last;
|
|
36
|
-
return yield fn();
|
|
37
|
-
}))();
|
|
38
|
-
this.pendingInLock.push((() => __awaiter(this, void 0, void 0, function* () {
|
|
39
|
-
try {
|
|
40
|
-
yield result;
|
|
41
|
-
}
|
|
42
|
-
catch (e) {
|
|
43
|
-
// we just care if it finished
|
|
44
|
-
}
|
|
45
|
-
}))());
|
|
46
|
-
return result;
|
|
47
|
-
}
|
|
48
|
-
return yield this.lock(`lock:${this.storageKey}`, acquireTimeout, () => __awaiter(this, void 0, void 0, function* () {
|
|
49
|
-
this._debug("#_acquireLock", "lock acquired for storage key", this.storageKey);
|
|
50
|
-
try {
|
|
51
|
-
this.lockAcquired = true;
|
|
52
|
-
const result = fn();
|
|
53
|
-
this.pendingInLock.push((() => __awaiter(this, void 0, void 0, function* () {
|
|
54
|
-
try {
|
|
55
|
-
yield result;
|
|
56
|
-
}
|
|
57
|
-
catch (e) {
|
|
58
|
-
// we just care if it finished
|
|
59
|
-
}
|
|
60
|
-
}))());
|
|
61
|
-
yield result;
|
|
62
|
-
// keep draining the queue until there's nothing to wait on
|
|
63
|
-
while (this.pendingInLock.length) {
|
|
64
|
-
const waitOn = [...this.pendingInLock];
|
|
65
|
-
yield Promise.all(waitOn);
|
|
66
|
-
this.pendingInLock.splice(0, waitOn.length);
|
|
67
|
-
}
|
|
68
|
-
return yield result;
|
|
69
|
-
}
|
|
70
|
-
finally {
|
|
71
|
-
this._debug("#_acquireLock", "lock released for storage key", this.storageKey);
|
|
72
|
-
this.lockAcquired = false;
|
|
73
|
-
}
|
|
74
|
-
}));
|
|
75
|
-
}
|
|
76
|
-
finally {
|
|
77
|
-
this._debug("#_acquireLock", "end");
|
|
78
|
-
}
|
|
79
|
-
});
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
exports.Lock = Lock;
|
package/dist/lock/locks.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"locks.d.ts","sourceRoot":"","sources":["../../src/lock/locks.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;;;;;GAcG;AACH,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,EACvB,IAAI,EAAE,MAAM,EACZ,cAAc,EAAE,MAAM,EACtB,EAAE,EAAE,MAAM,OAAO,CAAC,CAAC,CAAC,KACjB,OAAO,CAAC,CAAC,CAAC,CAAC;AAEhB;;GAEG;AACH,eAAO,MAAM,SAAS;IACpB;;OAEG;;CAOJ,CAAC;AAEF;;;;GAIG;AACH,8BAAsB,uBAAwB,SAAQ,KAAK;IACzD,SAAgB,gBAAgB,QAAQ;gBAE5B,OAAO,EAAE,MAAM;CAG5B;AAED,qBAAa,gCAAiC,SAAQ,uBAAuB;CAAG;AAEhF;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,wBAAsB,aAAa,CAAC,CAAC,EACnC,IAAI,EAAE,MAAM,EACZ,cAAc,EAAE,MAAM,EACtB,EAAE,EAAE,MAAM,OAAO,CAAC,CAAC,CAAC,GACnB,OAAO,CAAC,CAAC,CAAC,CAmGZ;AAED,wBAAsB,QAAQ,CAAC,CAAC,EAC9B,IAAI,EAAE,MAAM,EACZ,cAAc,EAAE,MAAM,EACtB,EAAE,EAAE,MAAM,OAAO,CAAC,CAAC,CAAC,GACnB,OAAO,CAAC,CAAC,CAAC,CAEZ"}
|
package/dist/lock/locks.js
DELETED
|
@@ -1,137 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
-
});
|
|
10
|
-
};
|
|
11
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.lockNoOp = exports.navigatorLock = exports.NavigatorLockAcquireTimeoutError = exports.LockAcquireTimeoutError = exports.internals = void 0;
|
|
13
|
-
const helpers_1 = require("../lib/helpers");
|
|
14
|
-
/**
|
|
15
|
-
* @experimental
|
|
16
|
-
*/
|
|
17
|
-
exports.internals = {
|
|
18
|
-
/**
|
|
19
|
-
* @experimental
|
|
20
|
-
*/
|
|
21
|
-
debug: !!(globalThis &&
|
|
22
|
-
(0, helpers_1.supportsLocalStorage)() &&
|
|
23
|
-
globalThis.localStorage &&
|
|
24
|
-
globalThis.localStorage.getItem("supabase.gotrue-js.locks.debug") === "true"),
|
|
25
|
-
};
|
|
26
|
-
/**
|
|
27
|
-
* An error thrown when a lock cannot be acquired after some amount of time.
|
|
28
|
-
*
|
|
29
|
-
* Use the {@link #isAcquireTimeout} property instead of checking with `instanceof`.
|
|
30
|
-
*/
|
|
31
|
-
class LockAcquireTimeoutError extends Error {
|
|
32
|
-
constructor(message) {
|
|
33
|
-
super(message);
|
|
34
|
-
this.isAcquireTimeout = true;
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
exports.LockAcquireTimeoutError = LockAcquireTimeoutError;
|
|
38
|
-
class NavigatorLockAcquireTimeoutError extends LockAcquireTimeoutError {
|
|
39
|
-
}
|
|
40
|
-
exports.NavigatorLockAcquireTimeoutError = NavigatorLockAcquireTimeoutError;
|
|
41
|
-
/**
|
|
42
|
-
* Implements a global exclusive lock using the Navigator LockManager API. It
|
|
43
|
-
* is available on all browsers released after 2022-03-15 with Safari being the
|
|
44
|
-
* last one to release support. If the API is not available, this function will
|
|
45
|
-
* throw. Make sure you check availablility before configuring {@link
|
|
46
|
-
* GoTrueClient}.
|
|
47
|
-
*
|
|
48
|
-
* You can turn on debugging by setting the `supabase.gotrue-js.locks.debug`
|
|
49
|
-
* local storage item to `true`.
|
|
50
|
-
*
|
|
51
|
-
* Internals:
|
|
52
|
-
*
|
|
53
|
-
* Since the LockManager API does not preserve stack traces for the async
|
|
54
|
-
* function passed in the `request` method, a trick is used where acquiring the
|
|
55
|
-
* lock releases a previously started promise to run the operation in the `fn`
|
|
56
|
-
* function. The lock waits for that promise to finish (with or without error),
|
|
57
|
-
* while the function will finally wait for the result anyway.
|
|
58
|
-
*
|
|
59
|
-
* @param name Name of the lock to be acquired.
|
|
60
|
-
* @param acquireTimeout If negative, no timeout. If 0 an error is thrown if
|
|
61
|
-
* the lock can't be acquired without waiting. If positive, the lock acquire
|
|
62
|
-
* will time out after so many milliseconds. An error is
|
|
63
|
-
* a timeout if it has `isAcquireTimeout` set to true.
|
|
64
|
-
* @param fn The operation to run once the lock is acquired.
|
|
65
|
-
*/
|
|
66
|
-
function navigatorLock(name, acquireTimeout, fn) {
|
|
67
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
68
|
-
if (exports.internals.debug) {
|
|
69
|
-
console.log("@supabase/gotrue-js: navigatorLock: acquire lock", name, acquireTimeout);
|
|
70
|
-
}
|
|
71
|
-
const abortController = new globalThis.AbortController();
|
|
72
|
-
if (acquireTimeout > 0) {
|
|
73
|
-
setTimeout(() => {
|
|
74
|
-
abortController.abort();
|
|
75
|
-
if (exports.internals.debug) {
|
|
76
|
-
console.log("@supabase/gotrue-js: navigatorLock acquire timed out", name);
|
|
77
|
-
}
|
|
78
|
-
}, acquireTimeout);
|
|
79
|
-
}
|
|
80
|
-
// MDN article: https://developer.mozilla.org/en-US/docs/Web/API/LockManager/request
|
|
81
|
-
return yield globalThis.navigator.locks.request(name, acquireTimeout === 0
|
|
82
|
-
? {
|
|
83
|
-
mode: "exclusive",
|
|
84
|
-
ifAvailable: true,
|
|
85
|
-
}
|
|
86
|
-
: {
|
|
87
|
-
mode: "exclusive",
|
|
88
|
-
signal: abortController.signal,
|
|
89
|
-
}, (lock) => __awaiter(this, void 0, void 0, function* () {
|
|
90
|
-
if (lock) {
|
|
91
|
-
if (exports.internals.debug) {
|
|
92
|
-
console.log("@supabase/gotrue-js: navigatorLock: acquired", name, lock.name);
|
|
93
|
-
}
|
|
94
|
-
try {
|
|
95
|
-
return yield fn();
|
|
96
|
-
}
|
|
97
|
-
finally {
|
|
98
|
-
if (exports.internals.debug) {
|
|
99
|
-
console.log("@supabase/gotrue-js: navigatorLock: released", name, lock.name);
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
|
-
else {
|
|
104
|
-
if (acquireTimeout === 0) {
|
|
105
|
-
if (exports.internals.debug) {
|
|
106
|
-
console.log("@supabase/gotrue-js: navigatorLock: not immediately available", name);
|
|
107
|
-
}
|
|
108
|
-
throw new NavigatorLockAcquireTimeoutError(`Acquiring an exclusive Navigator LockManager lock "${name}" immediately failed`);
|
|
109
|
-
}
|
|
110
|
-
else {
|
|
111
|
-
if (exports.internals.debug) {
|
|
112
|
-
try {
|
|
113
|
-
const result = yield globalThis.navigator.locks.query();
|
|
114
|
-
console.log("@supabase/gotrue-js: Navigator LockManager state", JSON.stringify(result, null, " "));
|
|
115
|
-
}
|
|
116
|
-
catch (e) {
|
|
117
|
-
console.warn("@supabase/gotrue-js: Error when querying Navigator LockManager state", e);
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
// Browser is not following the Navigator LockManager spec, it
|
|
121
|
-
// returned a null lock when we didn't use ifAvailable. So we can
|
|
122
|
-
// pretend the lock is acquired in the name of backward compatibility
|
|
123
|
-
// and user experience and just run the function.
|
|
124
|
-
console.warn("@supabase/gotrue-js: Navigator LockManager returned a null lock when using #request without ifAvailable set to true, it appears this browser is not following the LockManager spec https://developer.mozilla.org/en-US/docs/Web/API/LockManager/request");
|
|
125
|
-
return yield fn();
|
|
126
|
-
}
|
|
127
|
-
}
|
|
128
|
-
}));
|
|
129
|
-
});
|
|
130
|
-
}
|
|
131
|
-
exports.navigatorLock = navigatorLock;
|
|
132
|
-
function lockNoOp(name, acquireTimeout, fn) {
|
|
133
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
134
|
-
return yield fn();
|
|
135
|
-
});
|
|
136
|
-
}
|
|
137
|
-
exports.lockNoOp = lockNoOp;
|
package/dist/utils.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../src/utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAC;AAEnD,eAAO,MAAM,yBAAyB,gBACvB,MAAM,KAClB,oBAaF,CAAC;AAQF,eAAO,MAAM,iBAAiB,uCAAwC,GAAG,WAIxE,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,cAAc,WACjB,MAAM,GAAG,SAAS,aACf,MAAM,WAOlB,CAAC;AAEF,eAAO,MAAM,SAAS,cAAe,MAAM,WAM1C,CAAC;AAEF,eAAO,MAAM,MAAM,UAAW,MAAM,WAAgB,CAAC;AACrD,eAAO,MAAM,MAAM,UAAW,MAAM,WAAgB,CAAC;AAkBrD,eAAO,MAAM,YAAY,UAAW,MAAM,WACc,CAAC;AAEzD,eAAO,MAAM,wBAAwB,UAAW,MAAM,EAAE,GAAG,UAAU,WAKpE,CAAC;AAEF,eAAO,MAAM,WAAW,UAAW,GAAG,KAAG,MAAM,GAAG,SAKjD,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,8BAA8B,aAAc,MAAM,WACzB,CAAC"}
|
package/dist/utils.js
DELETED
|
@@ -1,88 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __rest = (this && this.__rest) || function (s, e) {
|
|
3
|
-
var t = {};
|
|
4
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
5
|
-
t[p] = s[p];
|
|
6
|
-
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
7
|
-
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
8
|
-
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
9
|
-
t[p[i]] = s[p[i]];
|
|
10
|
-
}
|
|
11
|
-
return t;
|
|
12
|
-
};
|
|
13
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
-
exports.buildIsAuthenticatedCookieName = exports.parseNumber = exports.bufferToBase64UrlEncoded = exports.urlDecodeB64 = exports.decode = exports.encode = exports.getDomain = exports.getTokenIssuer = exports.createQueryParams = exports.parseAuthenticationResult = void 0;
|
|
15
|
-
const parseAuthenticationResult = (queryString) => {
|
|
16
|
-
if (queryString.indexOf("#") > -1) {
|
|
17
|
-
queryString = queryString.substring(0, queryString.indexOf("#"));
|
|
18
|
-
}
|
|
19
|
-
const searchParams = new URLSearchParams(queryString);
|
|
20
|
-
return {
|
|
21
|
-
state: searchParams.get("state"),
|
|
22
|
-
code: searchParams.get("code") || undefined,
|
|
23
|
-
error: searchParams.get("error") || undefined,
|
|
24
|
-
error_description: searchParams.get("error_description") || undefined,
|
|
25
|
-
};
|
|
26
|
-
};
|
|
27
|
-
exports.parseAuthenticationResult = parseAuthenticationResult;
|
|
28
|
-
const stripUndefined = (params) => {
|
|
29
|
-
return Object.keys(params)
|
|
30
|
-
.filter((k) => typeof params[k] !== "undefined")
|
|
31
|
-
.reduce((acc, key) => (Object.assign(Object.assign({}, acc), { [key]: params[key] })), {});
|
|
32
|
-
};
|
|
33
|
-
const createQueryParams = (_a) => {
|
|
34
|
-
var { clientId: client_id } = _a, params = __rest(_a, ["clientId"]);
|
|
35
|
-
return new URLSearchParams(stripUndefined(Object.assign({ client_id }, params))).toString();
|
|
36
|
-
};
|
|
37
|
-
exports.createQueryParams = createQueryParams;
|
|
38
|
-
/**
|
|
39
|
-
* @ignore
|
|
40
|
-
*/
|
|
41
|
-
const getTokenIssuer = (issuer, domainUrl) => {
|
|
42
|
-
if (issuer) {
|
|
43
|
-
return issuer.startsWith("https://") ? issuer : `https://${issuer}`;
|
|
44
|
-
}
|
|
45
|
-
return `${domainUrl}`;
|
|
46
|
-
};
|
|
47
|
-
exports.getTokenIssuer = getTokenIssuer;
|
|
48
|
-
const getDomain = (domainUrl) => {
|
|
49
|
-
if (!/^https?:\/\//.test(domainUrl)) {
|
|
50
|
-
return `https://${domainUrl}`;
|
|
51
|
-
}
|
|
52
|
-
return domainUrl;
|
|
53
|
-
};
|
|
54
|
-
exports.getDomain = getDomain;
|
|
55
|
-
const encode = (value) => btoa(value);
|
|
56
|
-
exports.encode = encode;
|
|
57
|
-
const decode = (value) => atob(value);
|
|
58
|
-
exports.decode = decode;
|
|
59
|
-
// https://stackoverflow.com/questions/30106476/
|
|
60
|
-
const decodeB64 = (input) => decodeURIComponent(atob(input)
|
|
61
|
-
.split("")
|
|
62
|
-
.map((c) => {
|
|
63
|
-
return "%" + ("00" + c.charCodeAt(0).toString(16)).slice(-2);
|
|
64
|
-
})
|
|
65
|
-
.join(""));
|
|
66
|
-
const urlEncodeB64 = (input) => {
|
|
67
|
-
const b64Chars = { "+": "-", "/": "_", "=": "" };
|
|
68
|
-
return input.replace(/[+/=]/g, (m) => b64Chars[m]);
|
|
69
|
-
};
|
|
70
|
-
const urlDecodeB64 = (input) => decodeB64(input.replace(/_/g, "/").replace(/-/g, "+"));
|
|
71
|
-
exports.urlDecodeB64 = urlDecodeB64;
|
|
72
|
-
const bufferToBase64UrlEncoded = (input) => {
|
|
73
|
-
const ie11SafeInput = new Uint8Array(input);
|
|
74
|
-
return urlEncodeB64(window.btoa(String.fromCharCode(...Array.from(ie11SafeInput))));
|
|
75
|
-
};
|
|
76
|
-
exports.bufferToBase64UrlEncoded = bufferToBase64UrlEncoded;
|
|
77
|
-
const parseNumber = (value) => {
|
|
78
|
-
if (typeof value !== "string") {
|
|
79
|
-
return value;
|
|
80
|
-
}
|
|
81
|
-
return parseInt(value, 10) || undefined;
|
|
82
|
-
};
|
|
83
|
-
exports.parseNumber = parseNumber;
|
|
84
|
-
/**
|
|
85
|
-
* @ignore
|
|
86
|
-
*/
|
|
87
|
-
const buildIsAuthenticatedCookieName = (clientId) => `auth0.${clientId}.is.authenticated`;
|
|
88
|
-
exports.buildIsAuthenticatedCookieName = buildIsAuthenticatedCookieName;
|