-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathbespoken_bst.ts
48 lines (38 loc) · 1.42 KB
/
bespoken_bst.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// All: 15 JSNice: 9 LambdaNet: 15
import {Url} from "url";
import * as url from "url";
const SpokesDashboardHost = "apps.bespoken.io/dashboard";
const SpokesPipeDomain = "bespoken.link";
function mangleNoPath(sourceID: string, secretKey: string): string {
let newUrl = "https://";
newUrl += SpokesDashboardHost;
newUrl += "?id=" + sourceID;
newUrl += "&key=" + secretKey;
return newUrl;
}
function manglePipeToPath(sourceID: string, secretKey?: string) {
const secureParam = secretKey ? "?bespoken-key=" + secretKey : "";
return `https://${sourceID}.${SpokesPipeDomain}${secureParam}`;
}
function mangleJustPath(path: string, sourceID: string, secretKey: string): string {
let newUrl = "https://";
newUrl += SpokesDashboardHost;
newUrl += path;
if (path.indexOf("?") !== -1) {
newUrl += "&";
} else {
newUrl += "?";
}
newUrl += "id=" + sourceID;
newUrl += "&key=" + secretKey;
return newUrl;
}
function mangle(urlString: string, sourceID: string, secretKey: string): string {
let urlValue: Url = url.parse(urlString, true, false);
return mangleJustPath(urlValue.path, sourceID, secretKey);
}
async function createExternalResources(secretKey?: string, sourceID?: string): Promise<any> {
const sourceData = await this.createSource(secretKey, sourceID);
const pipe = await this.createSpokesPipe(sourceData.id, sourceData.key);
return pipe;
}