@ardrive/turbo-sdk 1.0.0-alpha.2 → 1.0.0-alpha.20
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/bundles/web.bundle.min.js +277 -38
- package/lib/cjs/common/factory.js +17 -0
- package/lib/cjs/common/http.js +49 -0
- package/lib/cjs/common/index.js +35 -0
- package/lib/cjs/common/jwk.js +2 -0
- package/lib/cjs/common/payment.js +86 -0
- package/lib/cjs/common/turbo.js +105 -0
- package/lib/cjs/common/upload.js +59 -0
- package/lib/cjs/node/factory.js +34 -0
- package/lib/cjs/node/index.js +36 -0
- package/lib/cjs/node/signer.js +61 -0
- package/lib/cjs/package.json +1 -0
- package/lib/cjs/types.js +2 -0
- package/lib/cjs/utils/axiosClient.js +66 -0
- package/lib/cjs/utils/base64.js +47 -0
- package/lib/cjs/utils/errors.js +33 -0
- package/lib/cjs/utils/readableStream.js +28 -0
- package/lib/cjs/web/factory.js +34 -0
- package/lib/cjs/web/index.js +36 -0
- package/lib/cjs/web/signer.js +71 -0
- package/lib/{web → esm/node}/index.js +1 -0
- package/lib/{utils → esm/utils}/axiosClient.js +14 -8
- package/lib/{node → esm/web}/index.js +1 -0
- package/lib/{web → esm/web}/signer.js +6 -3
- package/lib/{common → types/common}/factory.d.ts +2 -1
- package/lib/types/common/factory.d.ts.map +1 -0
- package/lib/{common → types/common}/http.d.ts +7 -6
- package/lib/types/common/http.d.ts.map +1 -0
- package/lib/{common → types/common}/index.d.ts +1 -0
- package/lib/types/common/index.d.ts.map +1 -0
- package/lib/types/{arweave.d.ts → common/jwk.d.ts} +1 -0
- package/lib/types/common/jwk.d.ts.map +1 -0
- package/lib/{common → types/common}/payment.d.ts +2 -1
- package/lib/types/common/payment.d.ts.map +1 -0
- package/lib/{common → types/common}/turbo.d.ts +2 -1
- package/lib/types/common/turbo.d.ts.map +1 -0
- package/lib/{common → types/common}/upload.d.ts +2 -1
- package/lib/types/common/upload.d.ts.map +1 -0
- package/lib/{node → types/node}/factory.d.ts +2 -1
- package/lib/types/node/factory.d.ts.map +1 -0
- package/lib/{web → types/node}/index.d.ts +2 -0
- package/lib/types/node/index.d.ts.map +1 -0
- package/lib/{node → types/node}/signer.d.ts +4 -3
- package/lib/types/node/signer.d.ts.map +1 -0
- package/lib/types/{turbo.d.ts → types.d.ts} +7 -6
- package/lib/types/types.d.ts.map +1 -0
- package/lib/{utils → types/utils}/axiosClient.d.ts +3 -2
- package/lib/types/utils/axiosClient.d.ts.map +1 -0
- package/lib/{utils → types/utils}/base64.d.ts +4 -3
- package/lib/types/utils/base64.d.ts.map +1 -0
- package/lib/{utils → types/utils}/errors.d.ts +1 -0
- package/lib/types/utils/errors.d.ts.map +1 -0
- package/lib/{utils → types/utils}/readableStream.d.ts +3 -2
- package/lib/types/utils/readableStream.d.ts.map +1 -0
- package/lib/{web → types/web}/factory.d.ts +2 -1
- package/lib/types/web/factory.d.ts.map +1 -0
- package/lib/{node → types/web}/index.d.ts +2 -0
- package/lib/types/web/index.d.ts.map +1 -0
- package/lib/{web → types/web}/signer.d.ts +6 -5
- package/lib/types/web/signer.d.ts.map +1 -0
- package/package.json +19 -16
- package/lib/LICENSE.md +0 -661
- package/lib/README.md +0 -114
- package/lib/package.json +0 -105
- package/lib/types/index.d.ts +0 -18
- package/lib/types/index.js +0 -18
- /package/lib/{common → esm/common}/factory.js +0 -0
- /package/lib/{common → esm/common}/http.js +0 -0
- /package/lib/{common → esm/common}/index.js +0 -0
- /package/lib/{types/arweave.js → esm/common/jwk.js} +0 -0
- /package/lib/{common → esm/common}/payment.js +0 -0
- /package/lib/{common → esm/common}/turbo.js +0 -0
- /package/lib/{common → esm/common}/upload.js +0 -0
- /package/lib/{node → esm/node}/factory.js +0 -0
- /package/lib/{node → esm/node}/signer.js +0 -0
- /package/lib/{types/turbo.js → esm/types.js} +0 -0
- /package/lib/{utils → esm/utils}/base64.js +0 -0
- /package/lib/{utils → esm/utils}/errors.js +0 -0
- /package/lib/{utils → esm/utils}/readableStream.js +0 -0
- /package/lib/{web → esm/web}/factory.js +0 -0
@@ -0,0 +1,105 @@
|
|
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.TurboAuthenticatedClient = exports.TurboUnauthenticatedClient = void 0;
|
13
|
+
const payment_js_1 = require("./payment.js");
|
14
|
+
const upload_js_1 = require("./upload.js");
|
15
|
+
class TurboUnauthenticatedClient {
|
16
|
+
constructor({ uploadService = new upload_js_1.TurboUnauthenticatedUploadService({}), paymentService = new payment_js_1.TurboUnauthenticatedPaymentService({}), }) {
|
17
|
+
this.paymentService = paymentService;
|
18
|
+
this.uploadService = uploadService;
|
19
|
+
}
|
20
|
+
/**
|
21
|
+
* Returns the supported fiat currency conversion rate for 1AR based on current market prices.
|
22
|
+
*/
|
23
|
+
getFiatToAR({ currency, }) {
|
24
|
+
return __awaiter(this, void 0, void 0, function* () {
|
25
|
+
return this.paymentService.getFiatToAR({ currency });
|
26
|
+
});
|
27
|
+
}
|
28
|
+
/**
|
29
|
+
* Returns the latest conversion rates to purchase 1GiB of data for all supported currencies, including all adjustments and fees.
|
30
|
+
*
|
31
|
+
* Note: this does not take into account varying adjustments and promotions for different sizes of data. If you want to calculate the total
|
32
|
+
* cost in 'winc' for a given number of bytes, use getUploadCosts.
|
33
|
+
*/
|
34
|
+
getFiatRates() {
|
35
|
+
return __awaiter(this, void 0, void 0, function* () {
|
36
|
+
return this.paymentService.getFiatRates();
|
37
|
+
});
|
38
|
+
}
|
39
|
+
/**
|
40
|
+
* Returns a comprehensive list of supported countries that can purchase credits through the Turbo Payment Service.
|
41
|
+
*/
|
42
|
+
getSupportedCountries() {
|
43
|
+
return __awaiter(this, void 0, void 0, function* () {
|
44
|
+
return this.paymentService.getSupportedCountries();
|
45
|
+
});
|
46
|
+
}
|
47
|
+
/**
|
48
|
+
* Returns a list of all supported fiat currencies.
|
49
|
+
*/
|
50
|
+
getSupportedCurrencies() {
|
51
|
+
return __awaiter(this, void 0, void 0, function* () {
|
52
|
+
return this.paymentService.getSupportedCurrencies();
|
53
|
+
});
|
54
|
+
}
|
55
|
+
/**
|
56
|
+
* Determines the price in 'winc' to upload one data item of a specific size in bytes, including all Turbo cost adjustments and fees.
|
57
|
+
*/
|
58
|
+
getUploadCosts({ bytes, }) {
|
59
|
+
return __awaiter(this, void 0, void 0, function* () {
|
60
|
+
return this.paymentService.getUploadCosts({ bytes });
|
61
|
+
});
|
62
|
+
}
|
63
|
+
/**
|
64
|
+
* Determines the amount of 'winc' that would be returned for a given currency and amount, including all Turbo cost adjustments and fees.
|
65
|
+
*/
|
66
|
+
getWincForFiat({ amount, currency, }) {
|
67
|
+
return __awaiter(this, void 0, void 0, function* () {
|
68
|
+
return this.paymentService.getWincForFiat({ amount, currency });
|
69
|
+
});
|
70
|
+
}
|
71
|
+
/**
|
72
|
+
* Uploads a signed data item to the Turbo Upload Service.
|
73
|
+
*/
|
74
|
+
uploadSignedDataItem({ dataItemStreamFactory, signal, }) {
|
75
|
+
return __awaiter(this, void 0, void 0, function* () {
|
76
|
+
return this.uploadService.uploadSignedDataItem({
|
77
|
+
dataItemStreamFactory,
|
78
|
+
signal,
|
79
|
+
});
|
80
|
+
});
|
81
|
+
}
|
82
|
+
}
|
83
|
+
exports.TurboUnauthenticatedClient = TurboUnauthenticatedClient;
|
84
|
+
class TurboAuthenticatedClient extends TurboUnauthenticatedClient {
|
85
|
+
constructor({ paymentService, uploadService, }) {
|
86
|
+
super({ paymentService, uploadService });
|
87
|
+
}
|
88
|
+
/**
|
89
|
+
* Returns the current balance of the user's wallet in 'winc'.
|
90
|
+
*/
|
91
|
+
getBalance() {
|
92
|
+
return __awaiter(this, void 0, void 0, function* () {
|
93
|
+
return this.paymentService.getBalance();
|
94
|
+
});
|
95
|
+
}
|
96
|
+
/**
|
97
|
+
* Signs and uploads raw data to the Turbo Upload Service.
|
98
|
+
*/
|
99
|
+
uploadFile({ fileStreamFactory, signal, }) {
|
100
|
+
return __awaiter(this, void 0, void 0, function* () {
|
101
|
+
return this.uploadService.uploadFile({ fileStreamFactory, signal });
|
102
|
+
});
|
103
|
+
}
|
104
|
+
}
|
105
|
+
exports.TurboAuthenticatedClient = TurboAuthenticatedClient;
|
@@ -0,0 +1,59 @@
|
|
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.TurboAuthenticatedUploadService = exports.TurboUnauthenticatedUploadService = void 0;
|
13
|
+
const http_js_1 = require("./http.js");
|
14
|
+
class TurboUnauthenticatedUploadService {
|
15
|
+
constructor({ url = 'https://upload.ardrive.dev', retryConfig, }) {
|
16
|
+
this.httpService = new http_js_1.TurboHTTPService({
|
17
|
+
url: `${url}/v1`,
|
18
|
+
retryConfig,
|
19
|
+
});
|
20
|
+
}
|
21
|
+
uploadSignedDataItem({ dataItemStreamFactory, signal, }) {
|
22
|
+
return __awaiter(this, void 0, void 0, function* () {
|
23
|
+
// TODO: add p-limit constraint or replace with separate upload class
|
24
|
+
return this.httpService.post({
|
25
|
+
endpoint: `/tx`,
|
26
|
+
signal,
|
27
|
+
data: dataItemStreamFactory(),
|
28
|
+
headers: {
|
29
|
+
'content-type': 'application/octet-stream',
|
30
|
+
},
|
31
|
+
});
|
32
|
+
});
|
33
|
+
}
|
34
|
+
}
|
35
|
+
exports.TurboUnauthenticatedUploadService = TurboUnauthenticatedUploadService;
|
36
|
+
// NOTE: to avoid redundancy, we use inheritance here - but generally prefer composition over inheritance
|
37
|
+
class TurboAuthenticatedUploadService extends TurboUnauthenticatedUploadService {
|
38
|
+
constructor({ url = 'https://upload.ardrive.dev', retryConfig, signer, }) {
|
39
|
+
super({ url, retryConfig });
|
40
|
+
this.signer = signer;
|
41
|
+
}
|
42
|
+
uploadFile({ fileStreamFactory, signal, }) {
|
43
|
+
return __awaiter(this, void 0, void 0, function* () {
|
44
|
+
const signedDataItem = yield this.signer.signDataItem({
|
45
|
+
fileStreamFactory,
|
46
|
+
});
|
47
|
+
// TODO: add p-limit constraint or replace with separate upload class
|
48
|
+
return this.httpService.post({
|
49
|
+
endpoint: `/tx`,
|
50
|
+
signal,
|
51
|
+
data: signedDataItem,
|
52
|
+
headers: {
|
53
|
+
'content-type': 'application/octet-stream',
|
54
|
+
},
|
55
|
+
});
|
56
|
+
});
|
57
|
+
}
|
58
|
+
}
|
59
|
+
exports.TurboAuthenticatedUploadService = TurboAuthenticatedUploadService;
|
@@ -0,0 +1,34 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.TurboFactory = void 0;
|
4
|
+
/**
|
5
|
+
* Copyright (C) 2022-2023 Permanent Data Solutions, Inc. All Rights Reserved.
|
6
|
+
*
|
7
|
+
* This program is free software: you can redistribute it and/or modify
|
8
|
+
* it under the terms of the GNU Affero General Public License as published by
|
9
|
+
* the Free Software Foundation, either version 3 of the License, or
|
10
|
+
* (at your option) any later version.
|
11
|
+
*
|
12
|
+
* This program is distributed in the hope that it will be useful,
|
13
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
15
|
+
* GNU Affero General Public License for more details.
|
16
|
+
*
|
17
|
+
* You should have received a copy of the GNU Affero General Public License
|
18
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
19
|
+
*/
|
20
|
+
const factory_js_1 = require("../common/factory.js");
|
21
|
+
const index_js_1 = require("../common/index.js");
|
22
|
+
const signer_js_1 = require("./signer.js");
|
23
|
+
class TurboFactory extends factory_js_1.TurboBaseFactory {
|
24
|
+
static authenticated({ privateKey, paymentServiceConfig = {}, uploadServiceConfig = {}, }) {
|
25
|
+
const signer = new signer_js_1.TurboNodeArweaveSigner({ privateKey });
|
26
|
+
const paymentService = new index_js_1.TurboAuthenticatedPaymentService(Object.assign(Object.assign({}, paymentServiceConfig), { signer }));
|
27
|
+
const uploadService = new index_js_1.TurboAuthenticatedUploadService(Object.assign(Object.assign({}, uploadServiceConfig), { signer }));
|
28
|
+
return new index_js_1.TurboAuthenticatedClient({
|
29
|
+
uploadService,
|
30
|
+
paymentService,
|
31
|
+
});
|
32
|
+
}
|
33
|
+
}
|
34
|
+
exports.TurboFactory = TurboFactory;
|
@@ -0,0 +1,36 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
3
|
+
if (k2 === undefined) k2 = k;
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
7
|
+
}
|
8
|
+
Object.defineProperty(o, k2, desc);
|
9
|
+
}) : (function(o, m, k, k2) {
|
10
|
+
if (k2 === undefined) k2 = k;
|
11
|
+
o[k2] = m[k];
|
12
|
+
}));
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
15
|
+
};
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
17
|
+
/**
|
18
|
+
* Copyright (C) 2022-2023 Permanent Data Solutions, Inc. All Rights Reserved.
|
19
|
+
*
|
20
|
+
* This program is free software: you can redistribute it and/or modify
|
21
|
+
* it under the terms of the GNU Affero General Public License as published by
|
22
|
+
* the Free Software Foundation, either version 3 of the License, or
|
23
|
+
* (at your option) any later version.
|
24
|
+
*
|
25
|
+
* This program is distributed in the hope that it will be useful,
|
26
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
27
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
28
|
+
* GNU Affero General Public License for more details.
|
29
|
+
*
|
30
|
+
* You should have received a copy of the GNU Affero General Public License
|
31
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
32
|
+
*/
|
33
|
+
__exportStar(require("./factory.js"), exports);
|
34
|
+
__exportStar(require("./signer.js"), exports);
|
35
|
+
__exportStar(require("../types.js"), exports);
|
36
|
+
__exportStar(require("../common/index.js"), exports);
|
@@ -0,0 +1,61 @@
|
|
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
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
12
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
13
|
+
};
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
15
|
+
exports.TurboNodeArweaveSigner = void 0;
|
16
|
+
/**
|
17
|
+
* Copyright (C) 2022-2023 Permanent Data Solutions, Inc. All Rights Reserved.
|
18
|
+
*
|
19
|
+
* This program is free software: you can redistribute it and/or modify
|
20
|
+
* it under the terms of the GNU Affero General Public License as published by
|
21
|
+
* the Free Software Foundation, either version 3 of the License, or
|
22
|
+
* (at your option) any later version.
|
23
|
+
*
|
24
|
+
* This program is distributed in the hope that it will be useful,
|
25
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
26
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
27
|
+
* GNU Affero General Public License for more details.
|
28
|
+
*
|
29
|
+
* You should have received a copy of the GNU Affero General Public License
|
30
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
31
|
+
*/
|
32
|
+
const arbundles_1 = require("arbundles");
|
33
|
+
const index_js_1 = __importDefault(require("arweave/node/index.js"));
|
34
|
+
const node_crypto_1 = require("node:crypto");
|
35
|
+
const base64_js_1 = require("../utils/base64.js");
|
36
|
+
class TurboNodeArweaveSigner {
|
37
|
+
// TODO: replace with internal signer class
|
38
|
+
constructor({ privateKey }) {
|
39
|
+
this.privateKey = privateKey;
|
40
|
+
this.signer = new arbundles_1.ArweaveSigner(this.privateKey);
|
41
|
+
}
|
42
|
+
signDataItem({ fileStreamFactory, }) {
|
43
|
+
// TODO: replace with our own signer implementation
|
44
|
+
const [stream1, stream2] = [fileStreamFactory(), fileStreamFactory()];
|
45
|
+
return (0, arbundles_1.streamSigner)(stream1, stream2, this.signer);
|
46
|
+
}
|
47
|
+
// NOTE: this might be better in a parent class or elsewhere - easy enough to leave in here now and does require specific environment version of crypto
|
48
|
+
generateSignedRequestHeaders() {
|
49
|
+
return __awaiter(this, void 0, void 0, function* () {
|
50
|
+
const nonce = (0, node_crypto_1.randomBytes)(16).toString('hex');
|
51
|
+
const buffer = Buffer.from(nonce);
|
52
|
+
const signature = yield index_js_1.default.crypto.sign(this.privateKey, buffer);
|
53
|
+
return {
|
54
|
+
'x-public-key': this.privateKey.n,
|
55
|
+
'x-nonce': nonce,
|
56
|
+
'x-signature': (0, base64_js_1.toB64Url)(Buffer.from(signature)),
|
57
|
+
};
|
58
|
+
});
|
59
|
+
}
|
60
|
+
}
|
61
|
+
exports.TurboNodeArweaveSigner = TurboNodeArweaveSigner;
|
@@ -0,0 +1 @@
|
|
1
|
+
{"type": "commonjs"}
|
package/lib/cjs/types.js
ADDED
@@ -0,0 +1,66 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
3
|
+
if (k2 === undefined) k2 = k;
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
7
|
+
}
|
8
|
+
Object.defineProperty(o, k2, desc);
|
9
|
+
}) : (function(o, m, k, k2) {
|
10
|
+
if (k2 === undefined) k2 = k;
|
11
|
+
o[k2] = m[k];
|
12
|
+
}));
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
15
|
+
}) : function(o, v) {
|
16
|
+
o["default"] = v;
|
17
|
+
});
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
19
|
+
if (mod && mod.__esModule) return mod;
|
20
|
+
var result = {};
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
22
|
+
__setModuleDefault(result, mod);
|
23
|
+
return result;
|
24
|
+
};
|
25
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
26
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
27
|
+
};
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
29
|
+
exports.createAxiosInstance = void 0;
|
30
|
+
/**
|
31
|
+
* Copyright (C) 2022-2023 Permanent Data Solutions, Inc. All Rights Reserved.
|
32
|
+
*
|
33
|
+
* This program is free software: you can redistribute it and/or modify
|
34
|
+
* it under the terms of the GNU Affero General Public License as published by
|
35
|
+
* the Free Software Foundation, either version 3 of the License, or
|
36
|
+
* (at your option) any later version.
|
37
|
+
*
|
38
|
+
* This program is distributed in the hope that it will be useful,
|
39
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
40
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
41
|
+
* GNU Affero General Public License for more details.
|
42
|
+
*
|
43
|
+
* You should have received a copy of the GNU Affero General Public License
|
44
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
45
|
+
*/
|
46
|
+
const axios_1 = __importStar(require("axios"));
|
47
|
+
const axios_retry_1 = __importDefault(require("axios-retry"));
|
48
|
+
const createAxiosInstance = ({ axiosConfig = {}, retryConfig = {
|
49
|
+
retryDelay: axios_retry_1.default.exponentialDelay,
|
50
|
+
retries: 3,
|
51
|
+
retryCondition: (error) => {
|
52
|
+
return (!(error instanceof axios_1.CanceledError) &&
|
53
|
+
axios_retry_1.default.isNetworkOrIdempotentRequestError(error));
|
54
|
+
},
|
55
|
+
onRetry: (retryCount, error) => {
|
56
|
+
console.debug(`Request failed, ${error}. Retry attempt #${retryCount}...`);
|
57
|
+
},
|
58
|
+
}, }) => {
|
59
|
+
const axiosInstance = axios_1.default.create(Object.assign(Object.assign({}, axiosConfig), { validateStatus: () => true }));
|
60
|
+
// eslint-disable-next-line
|
61
|
+
if (retryConfig.retries && retryConfig.retries > 0) {
|
62
|
+
(0, axios_retry_1.default)(axiosInstance, retryConfig);
|
63
|
+
}
|
64
|
+
return axiosInstance;
|
65
|
+
};
|
66
|
+
exports.createAxiosInstance = createAxiosInstance;
|
@@ -0,0 +1,47 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.sha256B64Url = exports.toB64Url = exports.fromB64Url = exports.ownerToAddress = exports.jwkToPublicArweaveAddress = exports.base64URLRegex = void 0;
|
4
|
+
/**
|
5
|
+
* Copyright (C) 2022-2023 Permanent Data Solutions, Inc. All Rights Reserved.
|
6
|
+
*
|
7
|
+
* This program is free software: you can redistribute it and/or modify
|
8
|
+
* it under the terms of the GNU Affero General Public License as published by
|
9
|
+
* the Free Software Foundation, either version 3 of the License, or
|
10
|
+
* (at your option) any later version.
|
11
|
+
*
|
12
|
+
* This program is distributed in the hope that it will be useful,
|
13
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
15
|
+
* GNU Affero General Public License for more details.
|
16
|
+
*
|
17
|
+
* You should have received a copy of the GNU Affero General Public License
|
18
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
19
|
+
*/
|
20
|
+
const utils_js_1 = require("arweave/node/lib/utils.js");
|
21
|
+
const crypto_1 = require("crypto");
|
22
|
+
exports.base64URLRegex = /^[a-zA-Z0-9_-]{43}$/;
|
23
|
+
function jwkToPublicArweaveAddress(jwk) {
|
24
|
+
return ownerToAddress(jwk.n);
|
25
|
+
}
|
26
|
+
exports.jwkToPublicArweaveAddress = jwkToPublicArweaveAddress;
|
27
|
+
function ownerToAddress(owner) {
|
28
|
+
return sha256B64Url(fromB64Url(owner));
|
29
|
+
}
|
30
|
+
exports.ownerToAddress = ownerToAddress;
|
31
|
+
function fromB64Url(input) {
|
32
|
+
const paddingLength = input.length % 4 === 0 ? 0 : 4 - (input.length % 4);
|
33
|
+
const base64 = input
|
34
|
+
.replace(/-/g, '+')
|
35
|
+
.replace(/_/g, '/')
|
36
|
+
.concat('='.repeat(paddingLength));
|
37
|
+
return Buffer.from(base64, 'base64');
|
38
|
+
}
|
39
|
+
exports.fromB64Url = fromB64Url;
|
40
|
+
function toB64Url(buffer) {
|
41
|
+
return (0, utils_js_1.bufferTob64Url)(buffer);
|
42
|
+
}
|
43
|
+
exports.toB64Url = toB64Url;
|
44
|
+
function sha256B64Url(input) {
|
45
|
+
return toB64Url((0, crypto_1.createHash)('sha256').update(input).digest());
|
46
|
+
}
|
47
|
+
exports.sha256B64Url = sha256B64Url;
|
@@ -0,0 +1,33 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.FailedRequestError = exports.UnauthenticatedRequestError = void 0;
|
4
|
+
/**
|
5
|
+
* Copyright (C) 2022-2023 Permanent Data Solutions, Inc. All Rights Reserved.
|
6
|
+
*
|
7
|
+
* This program is free software: you can redistribute it and/or modify
|
8
|
+
* it under the terms of the GNU Affero General Public License as published by
|
9
|
+
* the Free Software Foundation, either version 3 of the License, or
|
10
|
+
* (at your option) any later version.
|
11
|
+
*
|
12
|
+
* This program is distributed in the hope that it will be useful,
|
13
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
15
|
+
* GNU Affero General Public License for more details.
|
16
|
+
*
|
17
|
+
* You should have received a copy of the GNU Affero General Public License
|
18
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
19
|
+
*/
|
20
|
+
class UnauthenticatedRequestError extends Error {
|
21
|
+
constructor() {
|
22
|
+
super('Failed authentication. JWK is required.');
|
23
|
+
this.name = 'UnauthenticatedRequestError';
|
24
|
+
}
|
25
|
+
}
|
26
|
+
exports.UnauthenticatedRequestError = UnauthenticatedRequestError;
|
27
|
+
class FailedRequestError extends Error {
|
28
|
+
constructor(status, message) {
|
29
|
+
super(`Failed request: ${status}: ${message}`);
|
30
|
+
this.name = 'FailedRequestError';
|
31
|
+
}
|
32
|
+
}
|
33
|
+
exports.FailedRequestError = FailedRequestError;
|
@@ -0,0 +1,28 @@
|
|
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.readableStreamToBuffer = void 0;
|
13
|
+
function readableStreamToBuffer({ stream, }) {
|
14
|
+
return __awaiter(this, void 0, void 0, function* () {
|
15
|
+
const reader = stream.getReader();
|
16
|
+
const chunks = [];
|
17
|
+
let done = false;
|
18
|
+
while (!done) {
|
19
|
+
const { done: streamDone, value } = yield reader.read();
|
20
|
+
done = streamDone;
|
21
|
+
if (!done) {
|
22
|
+
chunks.push(value);
|
23
|
+
}
|
24
|
+
}
|
25
|
+
return Buffer.concat(chunks);
|
26
|
+
});
|
27
|
+
}
|
28
|
+
exports.readableStreamToBuffer = readableStreamToBuffer;
|
@@ -0,0 +1,34 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.TurboFactory = void 0;
|
4
|
+
/**
|
5
|
+
* Copyright (C) 2022-2023 Permanent Data Solutions, Inc. All Rights Reserved.
|
6
|
+
*
|
7
|
+
* This program is free software: you can redistribute it and/or modify
|
8
|
+
* it under the terms of the GNU Affero General Public License as published by
|
9
|
+
* the Free Software Foundation, either version 3 of the License, or
|
10
|
+
* (at your option) any later version.
|
11
|
+
*
|
12
|
+
* This program is distributed in the hope that it will be useful,
|
13
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
15
|
+
* GNU Affero General Public License for more details.
|
16
|
+
*
|
17
|
+
* You should have received a copy of the GNU Affero General Public License
|
18
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
19
|
+
*/
|
20
|
+
const factory_js_1 = require("../common/factory.js");
|
21
|
+
const index_js_1 = require("../common/index.js");
|
22
|
+
const signer_js_1 = require("./signer.js");
|
23
|
+
class TurboFactory extends factory_js_1.TurboBaseFactory {
|
24
|
+
static authenticated({ privateKey, paymentServiceConfig = {}, uploadServiceConfig = {}, }) {
|
25
|
+
const signer = new signer_js_1.TurboWebArweaveSigner({ privateKey });
|
26
|
+
const paymentService = new index_js_1.TurboAuthenticatedPaymentService(Object.assign(Object.assign({}, paymentServiceConfig), { signer }));
|
27
|
+
const uploadService = new index_js_1.TurboAuthenticatedUploadService(Object.assign(Object.assign({}, uploadServiceConfig), { signer }));
|
28
|
+
return new index_js_1.TurboAuthenticatedClient({
|
29
|
+
uploadService,
|
30
|
+
paymentService,
|
31
|
+
});
|
32
|
+
}
|
33
|
+
}
|
34
|
+
exports.TurboFactory = TurboFactory;
|
@@ -0,0 +1,36 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
3
|
+
if (k2 === undefined) k2 = k;
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
7
|
+
}
|
8
|
+
Object.defineProperty(o, k2, desc);
|
9
|
+
}) : (function(o, m, k, k2) {
|
10
|
+
if (k2 === undefined) k2 = k;
|
11
|
+
o[k2] = m[k];
|
12
|
+
}));
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
15
|
+
};
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
17
|
+
/**
|
18
|
+
* Copyright (C) 2022-2023 Permanent Data Solutions, Inc. All Rights Reserved.
|
19
|
+
*
|
20
|
+
* This program is free software: you can redistribute it and/or modify
|
21
|
+
* it under the terms of the GNU Affero General Public License as published by
|
22
|
+
* the Free Software Foundation, either version 3 of the License, or
|
23
|
+
* (at your option) any later version.
|
24
|
+
*
|
25
|
+
* This program is distributed in the hope that it will be useful,
|
26
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
27
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
28
|
+
* GNU Affero General Public License for more details.
|
29
|
+
*
|
30
|
+
* You should have received a copy of the GNU Affero General Public License
|
31
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
32
|
+
*/
|
33
|
+
__exportStar(require("./factory.js"), exports);
|
34
|
+
__exportStar(require("./signer.js"), exports);
|
35
|
+
__exportStar(require("../common/index.js"), exports);
|
36
|
+
__exportStar(require("../types.js"), exports);
|
@@ -0,0 +1,71 @@
|
|
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
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
12
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
13
|
+
};
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
15
|
+
exports.TurboWebArweaveSigner = void 0;
|
16
|
+
/**
|
17
|
+
* Copyright (C) 2022-2023 Permanent Data Solutions, Inc. All Rights Reserved.
|
18
|
+
*
|
19
|
+
* This program is free software: you can redistribute it and/or modify
|
20
|
+
* it under the terms of the GNU Affero General Public License as published by
|
21
|
+
* the Free Software Foundation, either version 3 of the License, or
|
22
|
+
* (at your option) any later version.
|
23
|
+
*
|
24
|
+
* This program is distributed in the hope that it will be useful,
|
25
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
26
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
27
|
+
* GNU Affero General Public License for more details.
|
28
|
+
*
|
29
|
+
* You should have received a copy of the GNU Affero General Public License
|
30
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
31
|
+
*/
|
32
|
+
const arbundles_1 = require("arbundles");
|
33
|
+
const arweave_1 = __importDefault(require("arweave"));
|
34
|
+
const node_crypto_1 = require("node:crypto");
|
35
|
+
const base64_js_1 = require("../utils/base64.js");
|
36
|
+
const readableStream_js_1 = require("../utils/readableStream.js");
|
37
|
+
class TurboWebArweaveSigner {
|
38
|
+
constructor({ privateKey }) {
|
39
|
+
this.privateKey = privateKey;
|
40
|
+
this.signer = new arbundles_1.ArweaveSigner(this.privateKey);
|
41
|
+
}
|
42
|
+
signDataItem({ fileStreamFactory, }) {
|
43
|
+
return __awaiter(this, void 0, void 0, function* () {
|
44
|
+
// TODO: converts the readable stream to a buffer bc incrementally signing ReadableStreams is not trivial
|
45
|
+
const buffer = yield (0, readableStream_js_1.readableStreamToBuffer)({
|
46
|
+
stream: fileStreamFactory(),
|
47
|
+
// TODO: add payload size to get performance improvements
|
48
|
+
});
|
49
|
+
const signedDataItem = (0, arbundles_1.createData)(buffer, this.signer);
|
50
|
+
yield signedDataItem.sign(this.signer);
|
51
|
+
return signedDataItem.getRaw();
|
52
|
+
});
|
53
|
+
}
|
54
|
+
// NOTE: this might be better in a parent class or elsewhere - easy enough to leave in here now and does require specific environment version of crypto
|
55
|
+
generateSignedRequestHeaders() {
|
56
|
+
var _a;
|
57
|
+
return __awaiter(this, void 0, void 0, function* () {
|
58
|
+
// a bit hacky - but arweave exports cause issues in tests vs. browser
|
59
|
+
const arweave = (_a = arweave_1.default.default) !== null && _a !== void 0 ? _a : arweave_1.default;
|
60
|
+
const nonce = (0, node_crypto_1.randomBytes)(16).toString('hex');
|
61
|
+
const buffer = Buffer.from(nonce);
|
62
|
+
const signature = yield arweave.crypto.sign(this.privateKey, buffer, {});
|
63
|
+
return {
|
64
|
+
'x-public-key': this.privateKey.n,
|
65
|
+
'x-nonce': nonce,
|
66
|
+
'x-signature': (0, base64_js_1.toB64Url)(Buffer.from(signature)),
|
67
|
+
};
|
68
|
+
});
|
69
|
+
}
|
70
|
+
}
|
71
|
+
exports.TurboWebArweaveSigner = TurboWebArweaveSigner;
|