@maiyunnet/kebab 2.0.3 → 2.0.5

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.
Files changed (89) hide show
  1. package/index.d.ts +14 -0
  2. package/index.js +1 -1
  3. package/lib/buffer.d.ts +25 -0
  4. package/lib/captcha.d.ts +12 -0
  5. package/lib/consistent.d.ts +20 -0
  6. package/lib/core.d.ts +85 -0
  7. package/lib/crypto.d.ts +47 -0
  8. package/lib/db.d.ts +88 -0
  9. package/lib/dns.d.ts +75 -0
  10. package/lib/fs.d.ts +49 -0
  11. package/lib/jwt.d.ts +30 -0
  12. package/lib/kv.d.ts +111 -0
  13. package/lib/lan.d.ts +10 -0
  14. package/lib/net/formdata.d.ts +23 -0
  15. package/lib/net/request.d.ts +23 -0
  16. package/lib/net/response.d.ts +14 -0
  17. package/lib/net.d.ts +65 -0
  18. package/lib/s3.d.ts +35 -0
  19. package/lib/scan.d.ts +31 -0
  20. package/lib/session.d.ts +22 -0
  21. package/lib/sql.d.ts +57 -0
  22. package/lib/ssh/sftp.d.ts +40 -0
  23. package/lib/ssh/shell.d.ts +13 -0
  24. package/lib/ssh.d.ts +24 -0
  25. package/lib/text.d.ts +40 -0
  26. package/lib/time.d.ts +22 -0
  27. package/lib/ws.d.ts +87 -0
  28. package/lib/zip.d.ts +40 -0
  29. package/lib/zlib.d.ts +25 -0
  30. package/main.d.ts +1 -0
  31. package/package.json +1 -1
  32. package/sys/child.d.ts +1 -0
  33. package/sys/cmd.d.ts +1 -0
  34. package/sys/ctr.d.ts +96 -0
  35. package/sys/master.d.ts +1 -0
  36. package/sys/mod.d.ts +205 -0
  37. package/sys/route.d.ts +31 -0
  38. package/tsconfig.json +1 -1
  39. package/www/example/ctr/main.d.ts +4 -0
  40. package/www/example/ctr/middle.d.ts +6 -0
  41. package/www/example/ctr/test.d.ts +94 -0
  42. package/www/example/mod/test.d.ts +20 -0
  43. package/www/example/mod/testdata.d.ts +9 -0
  44. package/www/example/ws/mproxy.d.ts +4 -0
  45. package/www/example/ws/rproxy.d.ts +4 -0
  46. package/www/example/ws/test.d.ts +7 -0
  47. package/index.ts +0 -33
  48. package/lib/buffer.ts +0 -152
  49. package/lib/captcha.ts +0 -63
  50. package/lib/consistent.ts +0 -219
  51. package/lib/core.ts +0 -880
  52. package/lib/crypto.ts +0 -384
  53. package/lib/db.ts +0 -719
  54. package/lib/dns.ts +0 -405
  55. package/lib/fs.ts +0 -527
  56. package/lib/jwt.ts +0 -276
  57. package/lib/kv.ts +0 -1489
  58. package/lib/lan.ts +0 -87
  59. package/lib/net/formdata.ts +0 -166
  60. package/lib/net/request.ts +0 -150
  61. package/lib/net/response.ts +0 -59
  62. package/lib/net.ts +0 -662
  63. package/lib/s3.ts +0 -235
  64. package/lib/scan.ts +0 -364
  65. package/lib/session.ts +0 -230
  66. package/lib/sql.ts +0 -1149
  67. package/lib/ssh/sftp.ts +0 -508
  68. package/lib/ssh/shell.ts +0 -123
  69. package/lib/ssh.ts +0 -191
  70. package/lib/text.ts +0 -626
  71. package/lib/time.ts +0 -254
  72. package/lib/ws.ts +0 -523
  73. package/lib/zip.ts +0 -447
  74. package/lib/zlib.ts +0 -350
  75. package/main.ts +0 -27
  76. package/sys/child.ts +0 -678
  77. package/sys/cmd.ts +0 -225
  78. package/sys/ctr.ts +0 -904
  79. package/sys/master.ts +0 -355
  80. package/sys/mod.ts +0 -1871
  81. package/sys/route.ts +0 -1113
  82. package/www/example/ctr/main.ts +0 -9
  83. package/www/example/ctr/middle.ts +0 -26
  84. package/www/example/ctr/test.ts +0 -3218
  85. package/www/example/mod/test.ts +0 -47
  86. package/www/example/mod/testdata.ts +0 -30
  87. package/www/example/ws/mproxy.ts +0 -16
  88. package/www/example/ws/rproxy.ts +0 -14
  89. package/www/example/ws/test.ts +0 -36
@@ -1,47 +0,0 @@
1
- import * as lCore from '~/lib/core';
2
- import sMod from '~/sys/mod';
3
- import types from '~/types';
4
-
5
- /*
6
- CREATE TABLE `m_test` (
7
- `id` INT NOT NULL AUTO_INCREMENT,
8
- `token` CHAR(16) NOT NULL COLLATE 'ascii_bin',
9
- `point` POINT NOT NULL,
10
- `polygon` POLYGON NULL DEFAULT NULL,
11
- `json` JSON NULL DEFAULT NULL,
12
- `time_add` BIGINT NOT NULL,
13
- PRIMARY KEY (`id`) USING BTREE,
14
- UNIQUE INDEX `token` (`token`) USING BTREE,
15
- INDEX `time_add` (`time_add`) USING BTREE
16
- ) ENGINE=InnoDB COLLATE=utf8mb4_general_ci;
17
- */
18
-
19
- export default class extends sMod {
20
-
21
- protected static _$table = 'test';
22
-
23
- protected static _$primary = 'id';
24
-
25
- protected static _$key = 'token';
26
-
27
- /* eslint-disable @typescript-eslint/naming-convention */
28
-
29
- public id!: number;
30
-
31
- public token!: string;
32
-
33
- public point!: { 'x': number; 'y': number; };
34
-
35
- public polygon!: Array<Array<{ 'x': number; 'y': number; }>>;
36
-
37
- public json!: types.Json;
38
-
39
- public time_add!: number;
40
-
41
- /* eslint-enable */
42
-
43
- protected _keyGenerator(): string {
44
- return 'test_' + lCore.rand(0, 5).toString();
45
- }
46
-
47
- }
@@ -1,30 +0,0 @@
1
- import sMod from '~/sys/mod';
2
- /*
3
- CREATE TABLE `m_test_data_0` (
4
- `id` bigint NOT NULL AUTO_INCREMENT,
5
- `test_id` bigint NOT NULL,
6
- `content` varchar(128) COLLATE ascii_bin NOT NULL,
7
- `time_add` bigint NOT NULL,
8
- PRIMARY KEY (`id`)
9
- ) ENGINE=InnoDB DEFAULT CHARSET=ascii COLLATE=ascii_bin;
10
- */
11
-
12
- export default class extends sMod {
13
-
14
- protected static _$table = 'test_data';
15
-
16
- protected static _$primary = 'id';
17
-
18
- /* eslint-disable @typescript-eslint/naming-convention */
19
-
20
- public id!: number;
21
-
22
- public test_id!: number;
23
-
24
- public content!: string;
25
-
26
- public time_add!: number;
27
-
28
- /* eslint-enable */
29
-
30
- }
@@ -1,16 +0,0 @@
1
- import * as sCtr from '~/sys/ctr';
2
- import * as lWs from '~/lib/ws';
3
-
4
- export default class extends sCtr.Ctr {
5
-
6
- public async onLoad(): Promise<boolean> {
7
- console.log('WebSocket mproxy test onLoad.');
8
- const rtn = await lWs.mproxy(this, '123456');
9
- if (rtn > 0) {
10
- return false;
11
- }
12
- console.log('WebSocket mproxy error: ' + rtn);
13
- return false;
14
- }
15
-
16
- }
@@ -1,14 +0,0 @@
1
- import * as sCtr from '~/sys/ctr';
2
- import * as lWs from '~/lib/ws';
3
-
4
- export default class extends sCtr.Ctr {
5
-
6
- public async onLoad(): Promise<boolean> {
7
- console.log('WebSocket rproxy test onLoad.');
8
- if (await lWs.rproxy(this, `ws${this._config.const.https ? 's' : ''}://${this._config.const.host}/test`)) {
9
- return false;
10
- }
11
- return true;
12
- }
13
-
14
- }
@@ -1,36 +0,0 @@
1
- import * as sCtr from '~/sys/ctr';
2
- import * as lCrypto from '~/lib/crypto';
3
-
4
- export default class extends sCtr.Ctr {
5
-
6
- private _nick: string = '';
7
-
8
- public onLoad(): boolean {
9
- console.log('WebSocket test onLoad.');
10
- setTimeout(() => {
11
- if (!this._nick) {
12
- return;
13
- }
14
- this._writeText('Other message, host: ' + this._config.const.host);
15
- }, 2000);
16
- return true;
17
- }
18
-
19
- public onData(data: Buffer | string): string {
20
- if (typeof data !== 'string') {
21
- return '';
22
- }
23
- if (data.startsWith('Hello: ')) {
24
- this._nick = data.slice(7);
25
- return 'Base64: ' + lCrypto.base64Encode(data);
26
- }
27
- // --- 用户消息 ---
28
- return '<b>' + this._nick + ':</b> ' + data;
29
- }
30
-
31
- public onClose(): void {
32
- console.log('WebSocket test onClose, nick: ' + this._nick);
33
- this._nick = '';
34
- }
35
-
36
- }