@scrypted/server 0.80.0 → 0.82.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/dist/fetch/http-fetch.d.ts +13 -0
- package/dist/fetch/http-fetch.js +130 -0
- package/dist/fetch/http-fetch.js.map +1 -0
- package/dist/fetch/index.d.ts +43 -0
- package/dist/fetch/index.js +115 -0
- package/dist/fetch/index.js.map +1 -0
- package/dist/plugin/plugin-remote-worker.js +10 -1
- package/dist/plugin/plugin-remote-worker.js.map +1 -1
- package/dist/runtime.js +6 -5
- package/dist/runtime.js.map +1 -1
- package/dist/scrypted-server-main.js +2 -2
- package/dist/scrypted-server-main.js.map +1 -1
- package/dist/services/plugin.d.ts +1 -0
- package/dist/services/plugin.js +13 -3
- package/dist/services/plugin.js.map +1 -1
- package/dist/services/service-control.js +3 -2
- package/dist/services/service-control.js.map +1 -1
- package/package.json +5 -5
- package/src/fetch/http-fetch.ts +161 -0
- package/src/fetch/index.ts +178 -0
- package/src/plugin/plugin-remote-worker.ts +11 -3
- package/src/runtime.ts +7 -6
- package/src/scrypted-server-main.ts +1 -1
- package/src/services/plugin.ts +12 -1
- package/src/services/service-control.ts +3 -2
- package/dist/http-fetch-helpers.d.ts +0 -16
- package/dist/http-fetch-helpers.js +0 -60
- package/dist/http-fetch-helpers.js.map +0 -1
- package/src/http-fetch-helpers.ts +0 -61
package/src/runtime.ts
CHANGED
@@ -1,4 +1,3 @@
|
|
1
|
-
import net from 'net';
|
2
1
|
import { Device, DeviceInformation, DeviceProvider, EngineIOHandler, HttpRequest, HttpRequestHandler, ScryptedDevice, ScryptedInterface, ScryptedInterfaceMethod, ScryptedInterfaceProperty, ScryptedNativeId, ScryptedUser as SU } from '@scrypted/types';
|
3
2
|
import AdmZip from 'adm-zip';
|
4
3
|
import crypto from 'crypto';
|
@@ -9,6 +8,7 @@ import { ParamsDictionary } from 'express-serve-static-core';
|
|
9
8
|
import fs from 'fs';
|
10
9
|
import http, { ServerResponse } from 'http';
|
11
10
|
import https from 'https';
|
11
|
+
import net from 'net';
|
12
12
|
import type { spawn as ptySpawn } from 'node-pty-prebuilt-multiarch';
|
13
13
|
import path from 'path';
|
14
14
|
import { ParsedQs } from 'qs';
|
@@ -17,8 +17,10 @@ import { PassThrough } from 'stream';
|
|
17
17
|
import tar from 'tar';
|
18
18
|
import { URL } from "url";
|
19
19
|
import WebSocket, { Server as WebSocketServer } from "ws";
|
20
|
+
import { computeClusterObjectHash } from './cluster/cluster-hash';
|
21
|
+
import { ClusterObject } from './cluster/connect-rpc-object';
|
20
22
|
import { Plugin, PluginDevice, ScryptedAlert, ScryptedUser } from './db-types';
|
21
|
-
import {
|
23
|
+
import { httpFetch } from './fetch/http-fetch';
|
22
24
|
import { createResponseInterface } from './http-interfaces';
|
23
25
|
import { getDisplayName, getDisplayRoom, getDisplayType, getProvidedNameOrDefault, getProvidedRoomOrDefault, getProvidedTypeOrDefault } from './infer-defaults';
|
24
26
|
import { IOServer } from './io';
|
@@ -35,17 +37,15 @@ import { getPluginVolume } from './plugin/plugin-volume';
|
|
35
37
|
import { NodeForkWorker } from './plugin/runtime/node-fork-worker';
|
36
38
|
import { PythonRuntimeWorker } from './plugin/runtime/python-worker';
|
37
39
|
import { RuntimeWorker, RuntimeWorkerOptions } from './plugin/runtime/runtime-worker';
|
38
|
-
import { ClusterObject } from './cluster/connect-rpc-object';
|
39
40
|
import { getIpAddress, SCRYPTED_INSECURE_PORT, SCRYPTED_SECURE_PORT } from './server-settings';
|
40
41
|
import { AddressSettings } from './services/addresses';
|
41
42
|
import { Alerts } from './services/alerts';
|
42
43
|
import { CORSControl } from './services/cors';
|
43
44
|
import { Info } from './services/info';
|
44
|
-
import { PluginComponent } from './services/plugin';
|
45
|
+
import { getNpmPackageInfo, PluginComponent } from './services/plugin';
|
45
46
|
import { ServiceControl } from './services/service-control';
|
46
47
|
import { UsersService } from './services/users';
|
47
48
|
import { getState, ScryptedStateManager, setState } from './state';
|
48
|
-
import { computeClusterObjectHash } from './cluster/cluster-hash';
|
49
49
|
|
50
50
|
interface DeviceProxyPair {
|
51
51
|
handler: PluginDeviceProxyHandler;
|
@@ -619,7 +619,8 @@ export class ScryptedRuntime extends PluginHttp<HttpPluginData> {
|
|
619
619
|
}
|
620
620
|
console.log('installing package', pkg, version);
|
621
621
|
|
622
|
-
const { body: tarball } = await
|
622
|
+
const { body: tarball } = await httpFetch( {
|
623
|
+
url: `${registry.versions[version].dist.tarball}`,
|
623
624
|
// force ipv4 in case of busted ipv6.
|
624
625
|
family: 4,
|
625
626
|
});
|
@@ -16,13 +16,13 @@ import semver from 'semver';
|
|
16
16
|
import { install as installSourceMapSupport } from 'source-map-support';
|
17
17
|
import { createSelfSignedCertificate, CURRENT_SELF_SIGNED_CERTIFICATE_VERSION } from './cert';
|
18
18
|
import { Plugin, ScryptedUser, Settings } from './db-types';
|
19
|
-
import { getNpmPackageInfo } from './http-fetch-helpers';
|
20
19
|
import Level from './level';
|
21
20
|
import { PluginError } from './plugin/plugin-error';
|
22
21
|
import { getScryptedVolume } from './plugin/plugin-volume';
|
23
22
|
import { RPCResultError } from './rpc';
|
24
23
|
import { ScryptedRuntime } from './runtime';
|
25
24
|
import { getHostAddresses, SCRYPTED_DEBUG_PORT, SCRYPTED_INSECURE_PORT, SCRYPTED_SECURE_PORT } from './server-settings';
|
25
|
+
import { getNpmPackageInfo } from './services/plugin';
|
26
26
|
import { setScryptedUserPassword, UsersService } from './services/users';
|
27
27
|
import { sleep } from './sleep';
|
28
28
|
import { ONE_DAY_MILLISECONDS, UserToken } from './usertoken';
|
package/src/services/plugin.ts
CHANGED
@@ -1,11 +1,22 @@
|
|
1
1
|
import { ScryptedInterfaceProperty, ScryptedNativeId } from "@scrypted/types";
|
2
2
|
import semver from 'semver';
|
3
3
|
import { Plugin } from '../db-types';
|
4
|
-
import { getNpmPackageInfo } from "../http-fetch-helpers";
|
5
4
|
import { hasMixinCycle } from "../mixin/mixin-cycle";
|
6
5
|
import { ScryptedRuntime } from "../runtime";
|
7
6
|
import { sleep } from "../sleep";
|
8
7
|
import { getState } from "../state";
|
8
|
+
import { httpFetch } from "../fetch/http-fetch";
|
9
|
+
|
10
|
+
|
11
|
+
export async function getNpmPackageInfo(pkg: string) {
|
12
|
+
const { body } = await httpFetch({
|
13
|
+
url: `https://registry.npmjs.org/${pkg}`,
|
14
|
+
// force ipv4 in case of busted ipv6.
|
15
|
+
family: 4,
|
16
|
+
responseType: 'json',
|
17
|
+
});
|
18
|
+
return body;
|
19
|
+
}
|
9
20
|
|
10
21
|
export class PluginComponent {
|
11
22
|
scrypted: ScryptedRuntime;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import fs from 'fs';
|
2
|
-
import {
|
2
|
+
import { httpFetch } from "../fetch/http-fetch";
|
3
3
|
import { ScryptedRuntime } from "../runtime";
|
4
4
|
|
5
5
|
export class ServiceControl {
|
@@ -23,7 +23,8 @@ export class ServiceControl {
|
|
23
23
|
const webhookUpdate = process.env.SCRYPTED_WEBHOOK_UPDATE;
|
24
24
|
if (webhookUpdate) {
|
25
25
|
const webhookUpdateAuthorization = process.env.SCRYPTED_WEBHOOK_UPDATE_AUTHORIZATION;
|
26
|
-
await
|
26
|
+
await httpFetch({
|
27
|
+
url: webhookUpdate,
|
27
28
|
headers: {
|
28
29
|
Authorization: webhookUpdateAuthorization,
|
29
30
|
}
|
@@ -1,16 +0,0 @@
|
|
1
|
-
/// <reference types="node" />
|
2
|
-
/// <reference types="node" />
|
3
|
-
import { RequestOptions } from 'http';
|
4
|
-
export declare function getNpmPackageInfo(pkg: string): Promise<any>;
|
5
|
-
export declare function fetchJSON(url: string, init?: RequestOptions): Promise<{
|
6
|
-
json: any;
|
7
|
-
headers: import("http").IncomingHttpHeaders;
|
8
|
-
}>;
|
9
|
-
export declare function fetchPostJSON(url: string, postBody: any, init?: RequestOptions): Promise<{
|
10
|
-
json: any;
|
11
|
-
headers: import("http").IncomingHttpHeaders;
|
12
|
-
}>;
|
13
|
-
export declare function fetchBuffer(url: string, init?: RequestOptions, body?: Buffer): Promise<{
|
14
|
-
headers: import("http").IncomingHttpHeaders;
|
15
|
-
body: Buffer;
|
16
|
-
}>;
|
@@ -1,60 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.fetchBuffer = exports.fetchPostJSON = exports.fetchJSON = exports.getNpmPackageInfo = void 0;
|
4
|
-
const events_1 = require("events");
|
5
|
-
const follow_redirects_1 = require("follow-redirects");
|
6
|
-
async function getNpmPackageInfo(pkg) {
|
7
|
-
const { json } = await fetchJSON(`https://registry.npmjs.org/${pkg}`, {
|
8
|
-
// force ipv4 in case of busted ipv6.
|
9
|
-
family: 4,
|
10
|
-
});
|
11
|
-
return json;
|
12
|
-
}
|
13
|
-
exports.getNpmPackageInfo = getNpmPackageInfo;
|
14
|
-
async function fetchJSON(url, init) {
|
15
|
-
init ||= {};
|
16
|
-
init.headers = {
|
17
|
-
...init.headers,
|
18
|
-
Accept: 'application/json',
|
19
|
-
};
|
20
|
-
const { body, headers } = await fetchBuffer(url, init);
|
21
|
-
return {
|
22
|
-
json: JSON.parse(body.toString()),
|
23
|
-
headers,
|
24
|
-
};
|
25
|
-
}
|
26
|
-
exports.fetchJSON = fetchJSON;
|
27
|
-
async function fetchPostJSON(url, postBody, init) {
|
28
|
-
init ||= {};
|
29
|
-
init.method = 'POST';
|
30
|
-
init.headers = {
|
31
|
-
...init.headers,
|
32
|
-
Accept: 'application/json',
|
33
|
-
'Content-Type': 'application/json',
|
34
|
-
};
|
35
|
-
const { body, headers } = await fetchBuffer(url, init, Buffer.from(JSON.stringify(postBody)));
|
36
|
-
return {
|
37
|
-
json: JSON.parse(body.toString()),
|
38
|
-
headers,
|
39
|
-
};
|
40
|
-
}
|
41
|
-
exports.fetchPostJSON = fetchPostJSON;
|
42
|
-
async function fetchBuffer(url, init, body) {
|
43
|
-
const proto = url.startsWith('https:') ? follow_redirects_1.https : follow_redirects_1.http;
|
44
|
-
const request = proto.request(url, {
|
45
|
-
...init,
|
46
|
-
});
|
47
|
-
if (body)
|
48
|
-
request.write(body);
|
49
|
-
request.end();
|
50
|
-
const [response] = await (0, events_1.once)(request, 'response');
|
51
|
-
const buffers = [];
|
52
|
-
response.on('data', buffer => buffers.push(buffer));
|
53
|
-
await (0, events_1.once)(response, 'end');
|
54
|
-
return {
|
55
|
-
headers: response.headers,
|
56
|
-
body: Buffer.concat(buffers),
|
57
|
-
};
|
58
|
-
}
|
59
|
-
exports.fetchBuffer = fetchBuffer;
|
60
|
-
//# sourceMappingURL=http-fetch-helpers.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"http-fetch-helpers.js","sourceRoot":"","sources":["../src/http-fetch-helpers.ts"],"names":[],"mappings":";;;AAAA,mCAA8B;AAC9B,uDAA+C;AAGxC,KAAK,UAAU,iBAAiB,CAAC,GAAW;IAC/C,MAAM,EAAE,IAAI,EAAE,GAAG,MAAM,SAAS,CAAC,8BAA8B,GAAG,EAAE,EAAE;QAClE,qCAAqC;QACrC,MAAM,EAAE,CAAC;KACZ,CAAC,CAAC;IACH,OAAO,IAAI,CAAC;AAChB,CAAC;AAND,8CAMC;AAEM,KAAK,UAAU,SAAS,CAAC,GAAW,EAAE,IAAqB;IAC9D,IAAI,KAAK,EAAE,CAAC;IACZ,IAAI,CAAC,OAAO,GAAG;QACX,GAAG,IAAI,CAAC,OAAO;QACf,MAAM,EAAE,kBAAkB;KAC7B,CAAC;IACF,MAAM,EAAE,IAAI,EAAE,OAAO,EAAE,GAAG,MAAM,WAAW,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;IACvD,OAAO;QACH,IAAI,EAAE,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC;QACjC,OAAO;KACV,CAAA;AACL,CAAC;AAXD,8BAWC;AAEM,KAAK,UAAU,aAAa,CAAC,GAAW,EAAE,QAAa,EAAE,IAAqB;IACjF,IAAI,KAAK,EAAE,CAAC;IACZ,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;IACrB,IAAI,CAAC,OAAO,GAAG;QACX,GAAG,IAAI,CAAC,OAAO;QACf,MAAM,EAAE,kBAAkB;QAC1B,cAAc,EAAE,kBAAkB;KACrC,CAAC;IAEF,MAAM,EAAE,IAAI,EAAE,OAAO,EAAE,GAAG,MAAM,WAAW,CAAC,GAAG,EAAE,IAAI,EAAE,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC;IAC9F,OAAO;QACH,IAAI,EAAE,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC;QACjC,OAAO;KACV,CAAA;AACL,CAAC;AAdD,sCAcC;AAEM,KAAK,UAAU,WAAW,CAAC,GAAW,EAAE,IAAqB,EAAE,IAAa;IAC/E,MAAM,KAAK,GAAG,GAAG,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,wBAAK,CAAC,CAAC,CAAC,uBAAI,CAAC;IAEtD,MAAM,OAAO,GAAG,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE;QAC/B,GAAG,IAAI;KACV,CAAC,CAAC;IACH,IAAI,IAAI;QACJ,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;IACxB,OAAO,CAAC,GAAG,EAAE,CAAC;IACd,MAAM,CAAC,QAAQ,CAAC,GAAG,MAAM,IAAA,aAAI,EAAC,OAAO,EAAE,UAAU,CAAsB,CAAC;IAExE,MAAM,OAAO,GAAa,EAAE,CAAC;IAC7B,QAAQ,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC;IACpD,MAAM,IAAA,aAAI,EAAC,QAAQ,EAAE,KAAK,CAAC,CAAC;IAE5B,OAAO;QACH,OAAO,EAAE,QAAQ,CAAC,OAAO;QACzB,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC;KAC/B,CAAC;AACN,CAAC;AAnBD,kCAmBC"}
|
@@ -1,61 +0,0 @@
|
|
1
|
-
import { once } from 'events';
|
2
|
-
import { http, https } from 'follow-redirects';
|
3
|
-
import { RequestOptions, IncomingMessage } from 'http';
|
4
|
-
|
5
|
-
export async function getNpmPackageInfo(pkg: string) {
|
6
|
-
const { json } = await fetchJSON(`https://registry.npmjs.org/${pkg}`, {
|
7
|
-
// force ipv4 in case of busted ipv6.
|
8
|
-
family: 4,
|
9
|
-
});
|
10
|
-
return json;
|
11
|
-
}
|
12
|
-
|
13
|
-
export async function fetchJSON(url: string, init?: RequestOptions) {
|
14
|
-
init ||= {};
|
15
|
-
init.headers = {
|
16
|
-
...init.headers,
|
17
|
-
Accept: 'application/json',
|
18
|
-
};
|
19
|
-
const { body, headers } = await fetchBuffer(url, init);
|
20
|
-
return {
|
21
|
-
json: JSON.parse(body.toString()),
|
22
|
-
headers,
|
23
|
-
}
|
24
|
-
}
|
25
|
-
|
26
|
-
export async function fetchPostJSON(url: string, postBody: any, init?: RequestOptions) {
|
27
|
-
init ||= {};
|
28
|
-
init.method = 'POST';
|
29
|
-
init.headers = {
|
30
|
-
...init.headers,
|
31
|
-
Accept: 'application/json',
|
32
|
-
'Content-Type': 'application/json',
|
33
|
-
};
|
34
|
-
|
35
|
-
const { body, headers } = await fetchBuffer(url, init, Buffer.from(JSON.stringify(postBody)));
|
36
|
-
return {
|
37
|
-
json: JSON.parse(body.toString()),
|
38
|
-
headers,
|
39
|
-
}
|
40
|
-
}
|
41
|
-
|
42
|
-
export async function fetchBuffer(url: string, init?: RequestOptions, body?: Buffer) {
|
43
|
-
const proto = url.startsWith('https:') ? https : http;
|
44
|
-
|
45
|
-
const request = proto.request(url, {
|
46
|
-
...init,
|
47
|
-
});
|
48
|
-
if (body)
|
49
|
-
request.write(body);
|
50
|
-
request.end();
|
51
|
-
const [response] = await once(request, 'response') as IncomingMessage[];
|
52
|
-
|
53
|
-
const buffers: Buffer[] = [];
|
54
|
-
response.on('data', buffer => buffers.push(buffer));
|
55
|
-
await once(response, 'end');
|
56
|
-
|
57
|
-
return {
|
58
|
-
headers: response.headers,
|
59
|
-
body: Buffer.concat(buffers),
|
60
|
-
};
|
61
|
-
}
|