Compare commits
83 Commits
Author | SHA1 | Date | |
---|---|---|---|
a8a91b4db2 | |||
67c4b06c4d | |||
7693b52066 | |||
30a02ae48b | |||
241182ed2e | |||
3d82038ec3 | |||
300d62ed12 | |||
a5e849aa17 | |||
83807d7c5c | |||
39d3a0f2f8 | |||
904a48d414 | |||
e2acb28756 | |||
92e4379bd2 | |||
e0ce732ee1 | |||
98be0f036c | |||
54fca17142 | |||
1a7634e8db | |||
8830b825ac | |||
123324bf43 | |||
4761ff31cf | |||
430c3ea13a | |||
6dd3782b0d | |||
06aa721247 | |||
f728c56016 | |||
f512acdfaa | |||
331a098851 | |||
a8053a6e20 | |||
a62f3eb750 | |||
4b53044e8f | |||
2db2c80130 | |||
8b23eaf194 | |||
a03c54001f | |||
7bc404ba21 | |||
ac2a1559b0 | |||
57b37cb327 | |||
8b17e814cc | |||
f4b8cde347 | |||
3189d4d274 | |||
c2d134a6ea | |||
7552dc1e9f | |||
fe91459510 | |||
0e0ffb7634 | |||
37bb052774 | |||
3c7683d40e | |||
c19f27e873 | |||
c1a03fec0f | |||
8b650c5ea7 | |||
4fc6e327ec | |||
7991baf2bf | |||
d033780015 | |||
eae46e6461 | |||
785acfaba4 | |||
5a4dceb75d | |||
a17834a8f0 | |||
01765fa50f | |||
547c159dc4 | |||
046d7d646d | |||
f6985bd7b2 | |||
241e44e19d | |||
99561166e2 | |||
0e95774f30 | |||
011af15866 | |||
77a13786d1 | |||
d0e4c1c44a | |||
1c8d6bf96e | |||
95c5fb7e83 | |||
2165a8f677 | |||
aa52ceeeca | |||
78e57394c9 | |||
5f9f670546 | |||
4cac5c1b1c | |||
8d6c8494c4 | |||
3fb7375a42 | |||
c64a72ea9d | |||
c8c481fda0 | |||
bafa94c6ac | |||
a28c96356f | |||
bc7069e72c | |||
5ba41150be | |||
317a9f2189 | |||
850032bd03 | |||
c009cd337d | |||
76cb8a36fc |
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,5 +1,6 @@
|
|||||||
.nogit/
|
.nogit/
|
||||||
node_modules/
|
node_modules/
|
||||||
|
dist/
|
||||||
coverage/
|
coverage/
|
||||||
public/
|
public/
|
||||||
pages/
|
pages/
|
||||||
|
@ -3,93 +3,123 @@ image: hosttoday/ht-docker-node:npmci
|
|||||||
|
|
||||||
cache:
|
cache:
|
||||||
paths:
|
paths:
|
||||||
- .yarn/
|
- .npmci_cache/
|
||||||
key: "$CI_BUILD_STAGE"
|
key: "$CI_BUILD_STAGE"
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- security
|
- security
|
||||||
- test
|
- test
|
||||||
- release
|
- release
|
||||||
- trigger
|
- metadata
|
||||||
- pages
|
|
||||||
|
|
||||||
|
# ====================
|
||||||
|
# security stage
|
||||||
|
# ====================
|
||||||
mirror:
|
mirror:
|
||||||
stage: security
|
stage: security
|
||||||
script:
|
script:
|
||||||
- npmci git mirror
|
- npmci git mirror
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- docker
|
||||||
|
- notpriv
|
||||||
|
|
||||||
snyk:
|
snyk:
|
||||||
stage: security
|
stage: security
|
||||||
script:
|
script:
|
||||||
- npmci command yarn global add snyk
|
- npmci npm prepare
|
||||||
- npmci command yarn install --ignore-scripts
|
- npmci command npm install -g snyk
|
||||||
|
- npmci command npm install --ignore-scripts
|
||||||
- npmci command snyk test
|
- npmci command snyk test
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- docker
|
||||||
|
- notpriv
|
||||||
|
|
||||||
testLEGACY:
|
# ====================
|
||||||
stage: test
|
# test stage
|
||||||
script:
|
# ====================
|
||||||
- npmci node install legacy
|
|
||||||
- npmci npm install
|
|
||||||
- npmci npm test
|
|
||||||
coverage: /\d+.?\d+?\%\s*coverage/
|
|
||||||
tags:
|
|
||||||
- docker
|
|
||||||
allow_failure: true
|
|
||||||
|
|
||||||
testLTS:
|
testLTS:
|
||||||
stage: test
|
stage: test
|
||||||
script:
|
script:
|
||||||
|
- npmci npm prepare
|
||||||
- npmci node install lts
|
- npmci node install lts
|
||||||
- npmci npm install
|
- npmci npm install
|
||||||
- npmci npm test
|
- npmci npm test
|
||||||
coverage: /\d+.?\d+?\%\s*coverage/
|
coverage: /\d+.?\d+?\%\s*coverage/
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- docker
|
||||||
|
- notpriv
|
||||||
|
|
||||||
testSTABLE:
|
testSTABLE:
|
||||||
stage: test
|
stage: test
|
||||||
script:
|
script:
|
||||||
|
- npmci npm prepare
|
||||||
- npmci node install stable
|
- npmci node install stable
|
||||||
- npmci npm install
|
- npmci npm install
|
||||||
- npmci npm test
|
- npmci npm test
|
||||||
coverage: /\d+.?\d+?\%\s*coverage/
|
coverage: /\d+.?\d+?\%\s*coverage/
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- docker
|
||||||
|
- notpriv
|
||||||
|
|
||||||
release:
|
release:
|
||||||
stage: release
|
stage: release
|
||||||
script:
|
script:
|
||||||
- npmci npm prepare
|
- npmci node install stable
|
||||||
- npmci npm publish
|
- npmci npm publish
|
||||||
only:
|
only:
|
||||||
- tags
|
- tags
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- docker
|
||||||
|
- notpriv
|
||||||
|
|
||||||
|
# ====================
|
||||||
|
# metadata stage
|
||||||
|
# ====================
|
||||||
|
codequality:
|
||||||
|
stage: metadata
|
||||||
|
image: docker:stable
|
||||||
|
allow_failure: true
|
||||||
|
services:
|
||||||
|
- docker:stable-dind
|
||||||
|
script:
|
||||||
|
- export SP_VERSION=$(echo "$CI_SERVER_VERSION" | sed 's/^\([0-9]*\)\.\([0-9]*\).*/\1-\2-stable/')
|
||||||
|
- docker run
|
||||||
|
--env SOURCE_CODE="$PWD"
|
||||||
|
--volume "$PWD":/code
|
||||||
|
--volume /var/run/docker.sock:/var/run/docker.sock
|
||||||
|
"registry.gitlab.com/gitlab-org/security-products/codequality:$SP_VERSION" /code
|
||||||
|
artifacts:
|
||||||
|
paths: [codeclimate.json]
|
||||||
|
tags:
|
||||||
|
- docker
|
||||||
|
- priv
|
||||||
|
|
||||||
trigger:
|
trigger:
|
||||||
stage: trigger
|
stage: metadata
|
||||||
script:
|
script:
|
||||||
- npmci trigger
|
- npmci trigger
|
||||||
only:
|
only:
|
||||||
- tags
|
- tags
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- docker
|
||||||
|
- notpriv
|
||||||
|
|
||||||
pages:
|
pages:
|
||||||
image: hosttoday/ht-docker-node:npmci
|
image: hosttoday/ht-docker-node:npmci
|
||||||
stage: pages
|
stage: metadata
|
||||||
script:
|
script:
|
||||||
- npmci command yarn global add npmpage
|
- npmci command npm install -g typedoc typescript
|
||||||
- npmci command npmpage
|
- npmci npm prepare
|
||||||
|
- npmci npm install
|
||||||
|
- npmci command typedoc --module "commonjs" --target "ES2016" --out public/ ts/
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- docker
|
||||||
|
- notpriv
|
||||||
only:
|
only:
|
||||||
- tags
|
- tags
|
||||||
artifacts:
|
artifacts:
|
||||||
expire_in: 1 week
|
expire_in: 1 week
|
||||||
paths:
|
paths:
|
||||||
- public
|
- public
|
||||||
|
allow_failure: true
|
||||||
|
1
dist/index.d.ts
vendored
1
dist/index.d.ts
vendored
@ -1 +0,0 @@
|
|||||||
export * from './smartuniverse.classes.smartuniverse';
|
|
7
dist/index.js
vendored
7
dist/index.js
vendored
@ -1,7 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
function __export(m) {
|
|
||||||
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
|
|
||||||
}
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
__export(require("./smartuniverse.classes.smartuniverse"));
|
|
||||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUFBLDJEQUFzRCJ9
|
|
11
dist/smartuniverse.classes.smartuniverse.d.ts
vendored
11
dist/smartuniverse.classes.smartuniverse.d.ts
vendored
@ -1,11 +0,0 @@
|
|||||||
export interface ISmartUniverseConstructorOptions {
|
|
||||||
port: number | string;
|
|
||||||
}
|
|
||||||
export declare class SmartUniverse {
|
|
||||||
private options;
|
|
||||||
private universeVersionStore;
|
|
||||||
private readonly universeVersion;
|
|
||||||
private smartexpressServer;
|
|
||||||
constructor(optionsArg: ISmartUniverseConstructorOptions);
|
|
||||||
init(): Promise<void>;
|
|
||||||
}
|
|
45
dist/smartuniverse.classes.smartuniverse.js
vendored
45
dist/smartuniverse.classes.smartuniverse.js
vendored
@ -1,45 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
||||||
return new (P || (P = Promise))(function (resolve, reject) {
|
|
||||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
||||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
||||||
function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
|
|
||||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
||||||
});
|
|
||||||
};
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
const plugins = require("./smartuniverse.plugins");
|
|
||||||
const smartexpress_1 = require("smartexpress");
|
|
||||||
const paths = require("./smartuniverse.paths");
|
|
||||||
class SmartUniverse {
|
|
||||||
get universeVersion() {
|
|
||||||
if (this.universeVersionStore) {
|
|
||||||
return this.universeVersionStore;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
const packageJson = plugins.smartfile.fs.toObjectSync(paths.packageJson);
|
|
||||||
this.universeVersionStore = packageJson.version;
|
|
||||||
return this.universeVersionStore;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
constructor(optionsArg) {
|
|
||||||
this.options = optionsArg;
|
|
||||||
}
|
|
||||||
init() {
|
|
||||||
return __awaiter(this, void 0, void 0, function* () {
|
|
||||||
this.smartexpressServer = new plugins.smartexpress.Server({
|
|
||||||
cors: true,
|
|
||||||
defaultAnswer: `smartuniverse server ${this.universeVersion}`,
|
|
||||||
forceSsl: false,
|
|
||||||
port: this.options.port
|
|
||||||
});
|
|
||||||
const addRoute = new smartexpress_1.Route(this.smartexpressServer, 'addMessage');
|
|
||||||
const addHandler = new smartexpress_1.Handler('PUT', requestBody => {
|
|
||||||
return 'hi';
|
|
||||||
});
|
|
||||||
// await this.smartexpressServer.addRoute()
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
exports.SmartUniverse = SmartUniverse;
|
|
||||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic21hcnR1bml2ZXJzZS5jbGFzc2VzLnNtYXJ0dW5pdmVyc2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy9zbWFydHVuaXZlcnNlLmNsYXNzZXMuc21hcnR1bml2ZXJzZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7O0FBQUEsbURBQW1EO0FBRW5ELCtDQUFzRDtBQUV0RCwrQ0FBK0M7QUFNL0M7SUFHRSxJQUFZLGVBQWU7UUFDekIsRUFBRSxDQUFDLENBQUMsSUFBSSxDQUFDLG9CQUFvQixDQUFDLENBQUMsQ0FBQztZQUM5QixNQUFNLENBQUMsSUFBSSxDQUFDLG9CQUFvQixDQUFDO1FBQ25DLENBQUM7UUFBQyxJQUFJLENBQUMsQ0FBQztZQUNOLE1BQU0sV0FBVyxHQUFHLE9BQU8sQ0FBQyxTQUFTLENBQUMsRUFBRSxDQUFDLFlBQVksQ0FBQyxLQUFLLENBQUMsV0FBVyxDQUFDLENBQUM7WUFDekUsSUFBSSxDQUFDLG9CQUFvQixHQUFHLFdBQVcsQ0FBQyxPQUFPLENBQUM7WUFDaEQsTUFBTSxDQUFDLElBQUksQ0FBQyxvQkFBb0IsQ0FBQztRQUNuQyxDQUFDO0lBQ0gsQ0FBQztJQUVELFlBQVksVUFBNEM7UUFDdEQsSUFBSSxDQUFDLE9BQU8sR0FBRyxVQUFVLENBQUM7SUFDNUIsQ0FBQztJQUVZLElBQUk7O1lBQ2YsSUFBSSxDQUFDLGtCQUFrQixHQUFHLElBQUksT0FBTyxDQUFDLFlBQVksQ0FBQyxNQUFNLENBQUM7Z0JBQ3hELElBQUksRUFBRSxJQUFJO2dCQUNWLGFBQWEsRUFBRSx3QkFBd0IsSUFBSSxDQUFDLGVBQWUsRUFBRTtnQkFDN0QsUUFBUSxFQUFFLEtBQUs7Z0JBQ2YsSUFBSSxFQUFFLElBQUksQ0FBQyxPQUFPLENBQUMsSUFBSTthQUN4QixDQUFDLENBQUM7WUFFSCxNQUFNLFFBQVEsR0FBRyxJQUFJLG9CQUFLLENBQUMsSUFBSSxDQUFDLGtCQUFrQixFQUFFLFlBQVksQ0FBQyxDQUFDO1lBQ2xFLE1BQU0sVUFBVSxHQUFHLElBQUksc0JBQU8sQ0FBQyxLQUFLLEVBQUUsV0FBVyxDQUFDLEVBQUU7Z0JBQ2xELE1BQU0sQ0FBQyxJQUFJLENBQUM7WUFDZCxDQUFDLENBQUMsQ0FBQztZQUNILDJDQUEyQztRQUM3QyxDQUFDO0tBQUE7Q0FDRjtBQS9CRCxzQ0ErQkMifQ==
|
|
1
dist/smartuniverse.cli.d.ts
vendored
1
dist/smartuniverse.cli.d.ts
vendored
@ -1 +0,0 @@
|
|||||||
export {};
|
|
12
dist/smartuniverse.cli.js
vendored
12
dist/smartuniverse.cli.js
vendored
@ -1,12 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
const plugins = require("./smartuniverse.plugins");
|
|
||||||
const index_1 = require("./index");
|
|
||||||
process.env.CLI = 'true';
|
|
||||||
const universeCli = new plugins.smartcli.Smartcli();
|
|
||||||
universeCli.standardTask().then(argvArg => {
|
|
||||||
const standardUniverse = new index_1.SmartUniverse({
|
|
||||||
port: 8765
|
|
||||||
});
|
|
||||||
});
|
|
||||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic21hcnR1bml2ZXJzZS5jbGkuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy9zbWFydHVuaXZlcnNlLmNsaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOztBQUFBLG1EQUFtRDtBQUVuRCxtQ0FBd0M7QUFFeEMsT0FBTyxDQUFDLEdBQUcsQ0FBQyxHQUFHLEdBQUcsTUFBTSxDQUFDO0FBRXpCLE1BQU0sV0FBVyxHQUFHLElBQUksT0FBTyxDQUFDLFFBQVEsQ0FBQyxRQUFRLEVBQUUsQ0FBQztBQUVwRCxXQUFXLENBQUMsWUFBWSxFQUFFLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxFQUFFO0lBQ3hDLE1BQU0sZ0JBQWdCLEdBQUcsSUFBSSxxQkFBYSxDQUFDO1FBQ3pDLElBQUksRUFBRSxJQUFJO0tBQ1gsQ0FBQyxDQUFDO0FBQ0wsQ0FBQyxDQUFDLENBQUMifQ==
|
|
1
dist/smartuniverse.paths.d.ts
vendored
1
dist/smartuniverse.paths.d.ts
vendored
@ -1 +0,0 @@
|
|||||||
export declare const packageJson: string;
|
|
5
dist/smartuniverse.paths.js
vendored
5
dist/smartuniverse.paths.js
vendored
@ -1,5 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
const plugins = require("./smartuniverse.plugins");
|
|
||||||
exports.packageJson = plugins.path.join(__dirname, '../package.json');
|
|
||||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic21hcnR1bml2ZXJzZS5wYXRocy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uL3RzL3NtYXJ0dW5pdmVyc2UucGF0aHMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7QUFBQSxtREFBbUQ7QUFFdEMsUUFBQSxXQUFXLEdBQUcsT0FBTyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsU0FBUyxFQUFFLGlCQUFpQixDQUFDLENBQUMifQ==
|
|
5
dist/smartuniverse.plugins.d.ts
vendored
5
dist/smartuniverse.plugins.d.ts
vendored
@ -1,5 +0,0 @@
|
|||||||
import * as path from 'path';
|
|
||||||
import * as smartcli from 'smartcli';
|
|
||||||
import * as smartexpress from 'smartexpress';
|
|
||||||
import * as smartfile from 'smartfile';
|
|
||||||
export { path, smartcli, smartexpress, smartfile };
|
|
11
dist/smartuniverse.plugins.js
vendored
11
dist/smartuniverse.plugins.js
vendored
@ -1,11 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
const path = require("path");
|
|
||||||
exports.path = path;
|
|
||||||
const smartcli = require("smartcli");
|
|
||||||
exports.smartcli = smartcli;
|
|
||||||
const smartexpress = require("smartexpress");
|
|
||||||
exports.smartexpress = smartexpress;
|
|
||||||
const smartfile = require("smartfile");
|
|
||||||
exports.smartfile = smartfile;
|
|
||||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic21hcnR1bml2ZXJzZS5wbHVnaW5zLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvc21hcnR1bml2ZXJzZS5wbHVnaW5zLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7O0FBQUEsNkJBQTZCO0FBS3BCLG9CQUFJO0FBSmIscUNBQXFDO0FBSXRCLDRCQUFRO0FBSHZCLDZDQUE2QztBQUdwQixvQ0FBWTtBQUZyQyx1Q0FBdUM7QUFFQSw4QkFBUyJ9
|
|
19
license
Normal file
19
license
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
Copyright (c) 2018 Lossless GmbH (hello@lossless.com)
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
@ -1,7 +1,17 @@
|
|||||||
{
|
{
|
||||||
|
"gitzone": {
|
||||||
|
"module": {
|
||||||
|
"githost": "gitlab.com",
|
||||||
|
"gitscope": "pushrocks",
|
||||||
|
"gitrepo": "smartuniverse",
|
||||||
|
"shortDescription": "messaging service for micro services",
|
||||||
|
"npmPackagename": "@pushrocks/smartuniverse",
|
||||||
|
"license": "MIT",
|
||||||
|
"projectDomain": "push.rocks"
|
||||||
|
}
|
||||||
|
},
|
||||||
"npmci": {
|
"npmci": {
|
||||||
"npmGlobalTools": [
|
"npmGlobalTools": [],
|
||||||
"npmts"
|
"npmAccessLevel": "public"
|
||||||
]
|
|
||||||
}
|
}
|
||||||
}
|
}
|
3046
package-lock.json
generated
Normal file
3046
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
32
package.json
32
package.json
@ -1,21 +1,39 @@
|
|||||||
{
|
{
|
||||||
"name": "smartuniverse",
|
"name": "@pushrocks/smartuniverse",
|
||||||
"version": "1.0.2",
|
"version": "1.0.42",
|
||||||
|
"private": false,
|
||||||
"description": "messaging service for your micro services",
|
"description": "messaging service for your micro services",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"typings": "dist/index.d.ts",
|
"typings": "dist/index.d.ts",
|
||||||
"author": "Lossless GmbH",
|
"author": "Lossless GmbH",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "(npmts)",
|
"test": "(tstest test/)",
|
||||||
|
"build": "(tsbuild)",
|
||||||
"format": "(gitzone format)"
|
"format": "(gitzone format)"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"tapbundle": "^2.0.0"
|
"@gitzone/tsbuild": "^2.1.8",
|
||||||
|
"@gitzone/tstest": "^1.0.20",
|
||||||
|
"@pushrocks/tapbundle": "^3.0.9",
|
||||||
|
"@types/node": "^11.13.4",
|
||||||
|
"tslint": "^5.15.0",
|
||||||
|
"tslint-config-prettier": "^1.18.0"
|
||||||
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"rxjs": "*"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"smartcli": "^2.0.12",
|
"@pushrocks/lik": "^3.0.5",
|
||||||
"smartexpress": "^1.0.19",
|
"@pushrocks/smartdelay": "^2.0.3",
|
||||||
"smartfile": "^4.2.28"
|
"@pushrocks/smartexpress": "^3.0.18",
|
||||||
|
"@pushrocks/smartfile": "^7.0.2",
|
||||||
|
"@pushrocks/smarthash": "^2.0.4",
|
||||||
|
"@pushrocks/smartpromise": "^3.0.2",
|
||||||
|
"@pushrocks/smartrequest": "^1.1.14",
|
||||||
|
"@pushrocks/smartrx": "^2.0.3",
|
||||||
|
"@pushrocks/smartsocket": "^1.1.27",
|
||||||
|
"@pushrocks/smarttime": "^3.0.7",
|
||||||
|
"@pushrocks/smartunique": "^3.0.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
56
readme.md
Normal file
56
readme.md
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
# @pushrocks/smartuniverse
|
||||||
|
|
||||||
|
messaging service for micro services
|
||||||
|
|
||||||
|
## Availabililty and Links
|
||||||
|
|
||||||
|
- [npmjs.org (npm package)](https://www.npmjs.com/package/@pushrocks/smartuniverse)
|
||||||
|
- [gitlab.com (source)](https://gitlab.com/pushrocks/smartuniverse)
|
||||||
|
- [github.com (source mirror)](https://github.com/pushrocks/smartuniverse)
|
||||||
|
- [docs (typedoc)](https://pushrocks.gitlab.io/smartuniverse/)
|
||||||
|
|
||||||
|
## Status for master
|
||||||
|
|
||||||
|
[](https://gitlab.com/pushrocks/smartuniverse/commits/master)
|
||||||
|
[](https://gitlab.com/pushrocks/smartuniverse/commits/master)
|
||||||
|
[](https://www.npmjs.com/package/@pushrocks/smartuniverse)
|
||||||
|
[](https://snyk.io/test/npm/@pushrocks/smartuniverse)
|
||||||
|
[](https://nodejs.org/dist/latest-v10.x/docs/api/)
|
||||||
|
[](https://nodejs.org/dist/latest-v10.x/docs/api/)
|
||||||
|
[](https://prettier.io/)
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
Use TypeScript for best in class instellisense.
|
||||||
|
|
||||||
|
### What is smartuniverse all about?
|
||||||
|
|
||||||
|
Think WhatsApp, but for your microservices architecture. It allows your services to securely talk to each other in **private, shielded channels** without having to expose anything to the outside world. This allows the use of **reactive programming across your entire stack**.
|
||||||
|
|
||||||
|
### Server side
|
||||||
|
every universe has a server that manages messages.
|
||||||
|
Think Kafka, but without Kafka.
|
||||||
|
|
||||||
|
```typescript
|
||||||
|
import * as smartuniverse from '@pushrocks/smartuniverse';
|
||||||
|
|
||||||
|
const myUniverse = new smartuniverse.Universe({
|
||||||
|
messageExpiryInMilliseconds: 60000 // the standard time in milliseconds until a message expires
|
||||||
|
});
|
||||||
|
|
||||||
|
// create as many channels as you like
|
||||||
|
myUniverse.addChannel('awesomeChannel', 'awesomeChannelPass');
|
||||||
|
myUniverse.addChannel('awesomeChannel2', 'jhkjhfsdf87eerkjslkfja9');
|
||||||
|
|
||||||
|
myUniverse.start(8765); // start the server and provide the port on which to listen on
|
||||||
|
```
|
||||||
|
|
||||||
|
### Client side
|
||||||
|
All your microservices represents clients in the universe that may talk to each other using the universe server.
|
||||||
|
|
||||||
|
For further information read the linked docs at the top of this readme.
|
||||||
|
|
||||||
|
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
|
||||||
|
> | By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy.html)
|
||||||
|
|
||||||
|
[](https://maintainedby.lossless.com)
|
68
test/test.ts
68
test/test.ts
@ -1,12 +1,70 @@
|
|||||||
import { expect, tap } from 'tapbundle';
|
// tslint:disable-next-line:no-implicit-dependencies
|
||||||
|
import { expect, tap } from '@pushrocks/tapbundle';
|
||||||
import * as smartuniverse from '../ts/index';
|
import * as smartuniverse from '../ts/index';
|
||||||
|
|
||||||
let testSmartUniverse: smartuniverse.SmartUniverse;
|
import { Observable } from 'rxjs';
|
||||||
|
|
||||||
|
let testUniverse: smartuniverse.Universe;
|
||||||
|
let testClientUniverse: smartuniverse.ClientUniverse;
|
||||||
|
let testClientChannel: smartuniverse.ClientUniverseChannel;
|
||||||
|
|
||||||
|
const testChannelData = {
|
||||||
|
channelName: 'awesomeTestChannel',
|
||||||
|
channelPass: 'awesomeChannelPAss'
|
||||||
|
};
|
||||||
|
|
||||||
tap.test('first test', async () => {
|
tap.test('first test', async () => {
|
||||||
testSmartUniverse = new smartuniverse.SmartUniverse({
|
testUniverse = new smartuniverse.Universe({
|
||||||
port: 8765
|
messageExpiryInMilliseconds: 1000
|
||||||
})
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
tap.test('add a message to the SmartUniverse', async () => {
|
||||||
|
await testUniverse.start(8765);
|
||||||
|
});
|
||||||
|
|
||||||
|
// testing message handling
|
||||||
|
tap.test('create smartuniverse client', async () => {
|
||||||
|
testClientUniverse = new smartuniverse.ClientUniverse({
|
||||||
|
serverAddress: 'http://localhost:8765'
|
||||||
|
});
|
||||||
|
expect(testClientUniverse).to.be.instanceof(smartuniverse.ClientUniverse);
|
||||||
|
});
|
||||||
|
|
||||||
|
tap.test('should add a channel to the universe', async () => {
|
||||||
|
await testUniverse.addChannel(
|
||||||
|
testChannelData.channelName,
|
||||||
|
testChannelData.channelPass
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
tap.test('should add the same channel to the client universe in the same way', async () => {
|
||||||
|
await testClientUniverse.addChannel(
|
||||||
|
testChannelData.channelName,
|
||||||
|
testChannelData.channelPass
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
tap.test('should get a observable correctly', async () => {
|
||||||
|
testClientChannel = await testClientUniverse.getChannel(testChannelData.channelName);
|
||||||
|
expect(testClientChannel).to.be.instanceof(smartuniverse.ClientUniverseChannel);
|
||||||
|
});
|
||||||
|
|
||||||
|
tap.test('should send a message correctly', async () => {
|
||||||
|
await testClientUniverse.sendMessage({
|
||||||
|
messageText: 'hello',
|
||||||
|
targetChannelName: testChannelData.channelName
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
tap.test('should receive a message correctly', async () => {});
|
||||||
|
|
||||||
|
tap.test('should disconnect the client correctly', async () => {
|
||||||
|
testClientUniverse.close();
|
||||||
|
});
|
||||||
|
|
||||||
|
tap.test('should end the server correctly', async tools => {
|
||||||
|
await testUniverse.stopServer();
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.start();
|
tap.start();
|
||||||
|
12
ts/index.ts
12
ts/index.ts
@ -1 +1,11 @@
|
|||||||
export * from './smartuniverse.classes.smartuniverse';
|
// Client classes
|
||||||
|
export * from './smartuniverse.classes.clientuniverse';
|
||||||
|
export * from './smartuniverse.classes.clientuniversechannel';
|
||||||
|
|
||||||
|
// Server classes
|
||||||
|
export * from './smartuniverse.classes.universe';
|
||||||
|
export * from './smartuniverse.classes.universecache';
|
||||||
|
export * from './smartuniverse.classes.universechannel';
|
||||||
|
export * from './smartuniverse.classes.universemessage';
|
||||||
|
|
||||||
|
export * from './interfaces';
|
||||||
|
15
ts/interfaces/http.interfaces.ts
Normal file
15
ts/interfaces/http.interfaces.ts
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
export interface IServerGetMessagesRequestBody {
|
||||||
|
channel: string;
|
||||||
|
topic?: string;
|
||||||
|
youngerThan: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* the interface for a standard request
|
||||||
|
*/
|
||||||
|
export interface IServerPutMessageRequestBody {
|
||||||
|
channel: string;
|
||||||
|
passphrase: string;
|
||||||
|
message: string;
|
||||||
|
payload: any;
|
||||||
|
}
|
3
ts/interfaces/index.ts
Normal file
3
ts/interfaces/index.ts
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
export * from './http.interfaces';
|
||||||
|
export * from './universechannel.interfaces';
|
||||||
|
export * from './universemessage.interfaces';
|
1
ts/interfaces/universechannel.interfaces.ts
Normal file
1
ts/interfaces/universechannel.interfaces.ts
Normal file
@ -0,0 +1 @@
|
|||||||
|
export interface IUniverseChannel {}
|
15
ts/interfaces/universemessage.interfaces.ts
Normal file
15
ts/interfaces/universemessage.interfaces.ts
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
export interface IMessageCreator {
|
||||||
|
messageText: string;
|
||||||
|
payload?: string | number | any;
|
||||||
|
payloadStringType?: 'Buffer' | 'string' | 'object';
|
||||||
|
targetChannelName: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface IUniverseMessage extends IMessageCreator {
|
||||||
|
id: string;
|
||||||
|
/**
|
||||||
|
* time of creation
|
||||||
|
*/
|
||||||
|
timestamp: number;
|
||||||
|
passphrase: string;
|
||||||
|
}
|
103
ts/smartuniverse.classes.clientuniverse.ts
Normal file
103
ts/smartuniverse.classes.clientuniverse.ts
Normal file
@ -0,0 +1,103 @@
|
|||||||
|
import * as plugins from './smartuniverse.plugins';
|
||||||
|
|
||||||
|
import { Objectmap } from '@pushrocks/lik';
|
||||||
|
import { Observable } from 'rxjs';
|
||||||
|
import { Smartsocket, SmartsocketClient } from '@pushrocks/smartsocket';
|
||||||
|
import * as url from 'url';
|
||||||
|
|
||||||
|
import * as interfaces from './interfaces';
|
||||||
|
|
||||||
|
import {
|
||||||
|
ClientUniverseChannel,
|
||||||
|
UniverseMessage
|
||||||
|
} from './';
|
||||||
|
|
||||||
|
export interface IClientOptions {
|
||||||
|
serverAddress: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* this class is for client side only!!!
|
||||||
|
* allows connecting to a universe server
|
||||||
|
*/
|
||||||
|
export class ClientUniverse {
|
||||||
|
public options;
|
||||||
|
public socketClient: plugins.smartsocket.SmartsocketClient;
|
||||||
|
public observableIntake: plugins.smartrx.ObservableIntake<UniverseMessage>;
|
||||||
|
|
||||||
|
public channelCache = new Objectmap<ClientUniverseChannel>();
|
||||||
|
|
||||||
|
constructor(optionsArg: IClientOptions) {
|
||||||
|
this.options = optionsArg;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* adds a channel to the channelcache
|
||||||
|
* TODO: verify channel before adding it to the channel cache
|
||||||
|
*/
|
||||||
|
public async addChannel (channelNameArg: string, passphraseArg: string) {
|
||||||
|
const existingChannel = this.getChannel(channelNameArg);
|
||||||
|
|
||||||
|
if (existingChannel) {
|
||||||
|
throw new Error('channel exists');
|
||||||
|
}
|
||||||
|
|
||||||
|
// lets create the channel
|
||||||
|
ClientUniverseChannel.createClientUniverseChannel(
|
||||||
|
this,
|
||||||
|
channelNameArg,
|
||||||
|
passphraseArg
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gets a channel from the channelcache
|
||||||
|
* @param channelName
|
||||||
|
* @param passphraseArg
|
||||||
|
*/
|
||||||
|
public async getChannel(channelName: string): Promise<ClientUniverseChannel> {
|
||||||
|
await this.checkConnection();
|
||||||
|
const clientUniverseChannel = this.channelCache.find(channel => {
|
||||||
|
return channel.name === channelName;
|
||||||
|
})
|
||||||
|
return clientUniverseChannel;
|
||||||
|
}
|
||||||
|
|
||||||
|
public async sendMessage(messageArg: interfaces.IMessageCreator) {
|
||||||
|
const requestBody: interfaces.IUniverseMessage = {
|
||||||
|
id: plugins.smartunique.shortId(),
|
||||||
|
timestamp: Date.now(),
|
||||||
|
passphrase: (await this.getChannel(messageArg.targetChannelName)).passphrase,
|
||||||
|
...messageArg,
|
||||||
|
|
||||||
|
};
|
||||||
|
const requestBodyString = JSON.stringify(requestBody);
|
||||||
|
// TODO: User websocket connection if available
|
||||||
|
const response = await plugins.smartrequest.postJson(`${this.options.serverAddress}/sendmessage` , {
|
||||||
|
requestBody: requestBodyString
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public close() {
|
||||||
|
this.socketClient.disconnect();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* checks the connection towards a universe server
|
||||||
|
* since password validation is done through other means, a connection should always be possible
|
||||||
|
*/
|
||||||
|
private async checkConnection(): Promise<void> {
|
||||||
|
if (!this.socketClient && !this.observableIntake) {
|
||||||
|
const parsedURL = url.parse(this.options.serverAddress);
|
||||||
|
this.socketClient = new SmartsocketClient({
|
||||||
|
alias: process.env.SOCKET_ALIAS || 'someclient',
|
||||||
|
password: 'UniverseClient',
|
||||||
|
port: parseInt(parsedURL.port, 10),
|
||||||
|
role: 'UniverseClient',
|
||||||
|
url: parsedURL.hostname
|
||||||
|
});
|
||||||
|
this.observableIntake = new plugins.smartrx.ObservableIntake();
|
||||||
|
this.socketClient.connect();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
51
ts/smartuniverse.classes.clientuniversechannel.ts
Normal file
51
ts/smartuniverse.classes.clientuniversechannel.ts
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
import * as plugins from './smartuniverse.plugins';
|
||||||
|
import * as interfaces from './interfaces';
|
||||||
|
|
||||||
|
import { ClientUniverse } from './';
|
||||||
|
|
||||||
|
export class ClientUniverseChannel implements interfaces.IUniverseChannel {
|
||||||
|
// ======
|
||||||
|
// STATIC
|
||||||
|
// ======
|
||||||
|
/**
|
||||||
|
* creates a channel and adds it to the cache of clientUniverseArg
|
||||||
|
* @param clientUniverseArg
|
||||||
|
* @param channelNameArg
|
||||||
|
* @param passphraseArg
|
||||||
|
*/
|
||||||
|
public static async createClientUniverseChannel(
|
||||||
|
clientUniverseArg: ClientUniverse,
|
||||||
|
channelNameArg: string,
|
||||||
|
passphraseArg: string
|
||||||
|
): Promise<ClientUniverseChannel> {
|
||||||
|
const clientChannel = new ClientUniverseChannel(clientUniverseArg, channelNameArg, passphraseArg);
|
||||||
|
clientUniverseArg.channelCache.add(clientChannel);
|
||||||
|
await clientChannel.subscribe();
|
||||||
|
return clientChannel;
|
||||||
|
}
|
||||||
|
|
||||||
|
// ========
|
||||||
|
// INSTANCE
|
||||||
|
// ========
|
||||||
|
|
||||||
|
// properties
|
||||||
|
public name: string;
|
||||||
|
public passphrase: string;
|
||||||
|
|
||||||
|
// refs
|
||||||
|
public clientUniverse: ClientUniverse;
|
||||||
|
|
||||||
|
constructor(clientUniverseArg: ClientUniverse, nameArg: string, passphraseArg: string) {
|
||||||
|
this.clientUniverse = clientUniverseArg;
|
||||||
|
this.name = nameArg;
|
||||||
|
this.passphrase = passphraseArg;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* subscribes to a channel
|
||||||
|
* tells the universe about this instances interest into a channel
|
||||||
|
*/
|
||||||
|
public async subscribe() {
|
||||||
|
this.clientUniverse.socketClient;
|
||||||
|
}
|
||||||
|
}
|
32
ts/smartuniverse.classes.clientuniversemessage.ts
Normal file
32
ts/smartuniverse.classes.clientuniversemessage.ts
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
import * as plugins from './smartuniverse.plugins';
|
||||||
|
|
||||||
|
import * as interfaces from './interfaces';
|
||||||
|
|
||||||
|
export class ClientUniverseMessage implements interfaces.IUniverseMessage {
|
||||||
|
// ======
|
||||||
|
// STATIC
|
||||||
|
// ======
|
||||||
|
public static createMessageFromPayload(messageDescriptor: interfaces.IUniverseMessage) {
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
// ========
|
||||||
|
// INSTANCE
|
||||||
|
// ========
|
||||||
|
|
||||||
|
public id: string;
|
||||||
|
|
||||||
|
public timestamp: number;
|
||||||
|
public smartTimestamp: plugins.smarttime.TimeStamp;
|
||||||
|
|
||||||
|
public messageText: string;
|
||||||
|
public passphrase: string;
|
||||||
|
public payload: any;
|
||||||
|
public payloadStringType;
|
||||||
|
public targetChannelName: string;
|
||||||
|
constructor(messageArg, payloadArg) {}
|
||||||
|
|
||||||
|
getAsJsonForPayload () {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
@ -1,42 +0,0 @@
|
|||||||
import * as plugins from './smartuniverse.plugins';
|
|
||||||
|
|
||||||
import { Handler, Route, Server } from 'smartexpress';
|
|
||||||
|
|
||||||
import * as paths from './smartuniverse.paths';
|
|
||||||
|
|
||||||
export interface ISmartUniverseConstructorOptions {
|
|
||||||
port: number | string;
|
|
||||||
}
|
|
||||||
|
|
||||||
export class SmartUniverse {
|
|
||||||
private options: ISmartUniverseConstructorOptions;
|
|
||||||
private universeVersionStore: string;
|
|
||||||
private get universeVersion() {
|
|
||||||
if (this.universeVersionStore) {
|
|
||||||
return this.universeVersionStore;
|
|
||||||
} else {
|
|
||||||
const packageJson = plugins.smartfile.fs.toObjectSync(paths.packageJson);
|
|
||||||
this.universeVersionStore = packageJson.version;
|
|
||||||
return this.universeVersionStore;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
private smartexpressServer: plugins.smartexpress.Server;
|
|
||||||
constructor(optionsArg: ISmartUniverseConstructorOptions) {
|
|
||||||
this.options = optionsArg;
|
|
||||||
}
|
|
||||||
|
|
||||||
public async init() {
|
|
||||||
this.smartexpressServer = new plugins.smartexpress.Server({
|
|
||||||
cors: true,
|
|
||||||
defaultAnswer: `smartuniverse server ${this.universeVersion}`,
|
|
||||||
forceSsl: false,
|
|
||||||
port: this.options.port
|
|
||||||
});
|
|
||||||
|
|
||||||
const addRoute = new Route(this.smartexpressServer, 'addMessage');
|
|
||||||
const addHandler = new Handler('PUT', requestBody => {
|
|
||||||
return 'hi';
|
|
||||||
});
|
|
||||||
// await this.smartexpressServer.addRoute()
|
|
||||||
}
|
|
||||||
}
|
|
126
ts/smartuniverse.classes.universe.ts
Normal file
126
ts/smartuniverse.classes.universe.ts
Normal file
@ -0,0 +1,126 @@
|
|||||||
|
import * as plugins from './smartuniverse.plugins';
|
||||||
|
|
||||||
|
import { Handler, Route, Server } from '@pushrocks/smartexpress';
|
||||||
|
import { UniverseCache, UniverseChannel, UniverseMessage } from './';
|
||||||
|
|
||||||
|
import * as paths from './smartuniverse.paths';
|
||||||
|
|
||||||
|
import * as interfaces from './interfaces';
|
||||||
|
|
||||||
|
export interface ISmartUniverseConstructorOptions {
|
||||||
|
messageExpiryInMilliseconds: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* main class that setsup a Universe
|
||||||
|
*/
|
||||||
|
export class Universe {
|
||||||
|
// subinstances
|
||||||
|
public universeCache: UniverseCache;
|
||||||
|
|
||||||
|
// options
|
||||||
|
private options: ISmartUniverseConstructorOptions;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* stores the version of the universe server running
|
||||||
|
* this is done since the version is exposed through the api and multiple fs actions are avoided this way.
|
||||||
|
*/
|
||||||
|
private universeVersionStore: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* get the currently running version of smartuniverse
|
||||||
|
*/
|
||||||
|
public get universeVersion() {
|
||||||
|
if (this.universeVersionStore) {
|
||||||
|
return this.universeVersionStore;
|
||||||
|
} else {
|
||||||
|
const packageJson = plugins.smartfile.fs.toObjectSync(paths.packageJson);
|
||||||
|
this.universeVersionStore = packageJson.version;
|
||||||
|
return this.universeVersionStore;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* the smartexpress server used
|
||||||
|
*/
|
||||||
|
private smartexpressServer: plugins.smartexpress.Server;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* the smartsocket used
|
||||||
|
*/
|
||||||
|
private smartsocket: plugins.smartsocket.Smartsocket;
|
||||||
|
|
||||||
|
constructor(optionsArg: ISmartUniverseConstructorOptions) {
|
||||||
|
this.options = optionsArg;
|
||||||
|
this.universeCache = new UniverseCache(this.options.messageExpiryInMilliseconds);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* adds a channel to the Universe
|
||||||
|
*/
|
||||||
|
public async addChannel(nameArg: string, passphraseArg: string) {
|
||||||
|
const newChannel = UniverseChannel.createChannel(this.universeCache, nameArg, passphraseArg);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* initiates a server
|
||||||
|
*/
|
||||||
|
public async start(portArg: number | string) {
|
||||||
|
// lets create the base smartexpress server
|
||||||
|
this.smartexpressServer = new plugins.smartexpress.Server({
|
||||||
|
cors: true,
|
||||||
|
defaultAnswer: async () => {
|
||||||
|
return `smartuniverse server ${this.universeVersion}`;
|
||||||
|
},
|
||||||
|
forceSsl: false,
|
||||||
|
port: portArg
|
||||||
|
});
|
||||||
|
|
||||||
|
// lets create the http request route
|
||||||
|
this.smartexpressServer.addRoute('/sendmessage', new Handler('POST', async (req, res) => {
|
||||||
|
const universeMessageInstance = new UniverseMessage(req.body);
|
||||||
|
this.universeCache.addMessage(universeMessageInstance);
|
||||||
|
}));
|
||||||
|
|
||||||
|
// add websocket upgrade
|
||||||
|
this.smartsocket = new plugins.smartsocket.Smartsocket({
|
||||||
|
port: 12345 // fix this within smartsocket
|
||||||
|
});
|
||||||
|
|
||||||
|
// add a role for the clients
|
||||||
|
const ClientRole = new plugins.smartsocket.SocketRole({
|
||||||
|
name: 'clientuniverse',
|
||||||
|
passwordHash: 'clientuniverse' // authentication happens on another level
|
||||||
|
});
|
||||||
|
|
||||||
|
// add the role to smartsocket
|
||||||
|
this.smartsocket.addSocketRoles([ClientRole]);
|
||||||
|
|
||||||
|
const SubscriptionSocketFunction = new plugins.smartsocket.SocketFunction({
|
||||||
|
allowedRoles: [ClientRole],
|
||||||
|
funcName: 'channelSubscription',
|
||||||
|
funcDef: () => {
|
||||||
|
console.log('a client connected');
|
||||||
|
} // TODO: implement an action upon connection of clients
|
||||||
|
});
|
||||||
|
|
||||||
|
// add smartsocket to the running smartexpress app
|
||||||
|
this.smartsocket.setExternalServer('express', this.smartexpressServer as any);
|
||||||
|
|
||||||
|
// start the socket
|
||||||
|
this.smartsocket.start();
|
||||||
|
|
||||||
|
// start the smartexpress instance
|
||||||
|
await this.smartexpressServer.start();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* stop everything
|
||||||
|
*/
|
||||||
|
public async stopServer() {
|
||||||
|
await this.smartsocket.stop();
|
||||||
|
await this.smartexpressServer.stop();
|
||||||
|
}
|
||||||
|
}
|
63
ts/smartuniverse.classes.universecache.ts
Normal file
63
ts/smartuniverse.classes.universecache.ts
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
import * as plugins from './smartuniverse.plugins';
|
||||||
|
|
||||||
|
import { UniverseChannel } from './smartuniverse.classes.universechannel';
|
||||||
|
import { UniverseMessage } from './smartuniverse.classes.universemessage';
|
||||||
|
|
||||||
|
import { Objectmap } from '@pushrocks/lik';
|
||||||
|
|
||||||
|
import { Observable, from } from 'rxjs';
|
||||||
|
import { filter } from 'rxjs/operators';
|
||||||
|
import { rxjs } from '@pushrocks/smartrx';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* universe store handles the creation, storage and retrieval of messages.
|
||||||
|
*/
|
||||||
|
export class UniverseCache {
|
||||||
|
// ========
|
||||||
|
// INSTANCE
|
||||||
|
// ========
|
||||||
|
public standardMessageExpiry: number;
|
||||||
|
public destructionTime: number = 60000;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* stores messages for this instance
|
||||||
|
*/
|
||||||
|
public messageMap = new Objectmap<UniverseMessage>();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* stores the channels that are available within the universe
|
||||||
|
*/
|
||||||
|
public channelMap = new Objectmap<UniverseChannel>();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* allows messages to be processed in a blacklist mode for further analysis
|
||||||
|
*/
|
||||||
|
public blackListChannel = new UniverseChannel(this, 'blacklist', 'nada');
|
||||||
|
|
||||||
|
constructor(standardMessageExpiryArg: number) {
|
||||||
|
this.standardMessageExpiry = standardMessageExpiryArg;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* add a message to the UniverseCache
|
||||||
|
* @param messageArg
|
||||||
|
* @param attachedPayloadArg
|
||||||
|
*/
|
||||||
|
public async addMessage(messageArg: UniverseMessage) {
|
||||||
|
messageArg.setUniverseCache(this);
|
||||||
|
UniverseChannel.authorizeAMessageForAChannel(this, messageArg);
|
||||||
|
this.messageMap.add(messageArg);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Read a message from the UniverseCache
|
||||||
|
*/
|
||||||
|
public readMessagesYoungerThan(unixTimeArg?: number): Observable<UniverseMessage> {
|
||||||
|
const messageObservable = from(this.messageMap.getArray()).pipe(
|
||||||
|
filter(messageArg => {
|
||||||
|
return messageArg.smartTimestamp.isYoungerThanMilliSeconds(this.destructionTime);
|
||||||
|
})
|
||||||
|
);
|
||||||
|
return messageObservable;
|
||||||
|
}
|
||||||
|
}
|
92
ts/smartuniverse.classes.universechannel.ts
Normal file
92
ts/smartuniverse.classes.universechannel.ts
Normal file
@ -0,0 +1,92 @@
|
|||||||
|
import * as plugins from './smartuniverse.plugins';
|
||||||
|
|
||||||
|
import { Objectmap } from '@pushrocks/lik';
|
||||||
|
import { UniverseCache } from './smartuniverse.classes.universecache';
|
||||||
|
import { UniverseMessage } from './smartuniverse.classes.universemessage';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* enables messages to stay within a certain scope.
|
||||||
|
*/
|
||||||
|
export class UniverseChannel {
|
||||||
|
// ======
|
||||||
|
// STATIC
|
||||||
|
// ======
|
||||||
|
|
||||||
|
/**
|
||||||
|
* creates new channels
|
||||||
|
* @param channelArg the name of the topic
|
||||||
|
* @param passphraseArg the secret thats used for a certain topic.
|
||||||
|
*/
|
||||||
|
public static createChannel(
|
||||||
|
universeCacheArg: UniverseCache,
|
||||||
|
channelNameArg: string,
|
||||||
|
passphraseArg: string
|
||||||
|
) {
|
||||||
|
const newChannel = new UniverseChannel(universeCacheArg, channelNameArg, passphraseArg);
|
||||||
|
universeCacheArg.channelMap.add(newChannel);
|
||||||
|
return newChannel;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* returns boolean wether certain channel exists
|
||||||
|
*/
|
||||||
|
public static async doesChannelExists(universeCacheArg: UniverseCache, channelNameArg: string) {
|
||||||
|
const channel = universeCacheArg.channelMap.find(channelArg => {
|
||||||
|
return channelArg.name === channelNameArg;
|
||||||
|
});
|
||||||
|
if (channel) {
|
||||||
|
return true;
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static authorizeAMessageForAChannel(
|
||||||
|
universeCacheArg: UniverseCache,
|
||||||
|
universeMessageArg: UniverseMessage
|
||||||
|
) {
|
||||||
|
const foundChannel = universeCacheArg.channelMap.find(universeChannel => {
|
||||||
|
const result = universeChannel.authenticate(universeMessageArg);
|
||||||
|
return result;
|
||||||
|
});
|
||||||
|
if (foundChannel) {
|
||||||
|
universeMessageArg.authenticated = true;
|
||||||
|
universeMessageArg.universeChannelList.add(foundChannel);
|
||||||
|
return foundChannel;
|
||||||
|
} else {
|
||||||
|
universeMessageArg.authenticated = false;
|
||||||
|
universeMessageArg.universeChannelList.add(universeCacheArg.blackListChannel);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ========
|
||||||
|
// INSTANCE
|
||||||
|
// ========
|
||||||
|
/**
|
||||||
|
* the name of the channel
|
||||||
|
*/
|
||||||
|
public name: string;
|
||||||
|
public universeCacheInstance: UniverseCache;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* the passphrase for the channel
|
||||||
|
*/
|
||||||
|
public passphrase: string;
|
||||||
|
|
||||||
|
constructor(universeCacheArg: UniverseCache, channelNameArg: string, passphraseArg: string) {
|
||||||
|
this.name = channelNameArg;
|
||||||
|
this.passphrase = passphraseArg;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* authenticates a client on the server side
|
||||||
|
*/
|
||||||
|
public authenticate(universeMessageArg: UniverseMessage): boolean {
|
||||||
|
return (
|
||||||
|
this.name === universeMessageArg.targetChannelName &&
|
||||||
|
this.passphrase === universeMessageArg.passphrase
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
public pushToClients(messageArg: UniverseMessage) {}
|
||||||
|
}
|
99
ts/smartuniverse.classes.universemessage.ts
Normal file
99
ts/smartuniverse.classes.universemessage.ts
Normal file
@ -0,0 +1,99 @@
|
|||||||
|
import * as plugins from './smartuniverse.plugins';
|
||||||
|
import * as interfaces from './interfaces';
|
||||||
|
|
||||||
|
import { Objectmap } from '@pushrocks/lik';
|
||||||
|
|
||||||
|
import { Timer, TimeStamp } from '@pushrocks/smarttime';
|
||||||
|
import { Universe } from './smartuniverse.classes.universe';
|
||||||
|
import { UniverseChannel } from './smartuniverse.classes.universechannel';
|
||||||
|
import { UniverseCache } from './smartuniverse.classes.universecache';
|
||||||
|
import { IUniverseMessage } from './interfaces';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* represents a message within a universe
|
||||||
|
* acts as a container to save message states like authentication status
|
||||||
|
*/
|
||||||
|
export class UniverseMessage implements interfaces.IUniverseMessage {
|
||||||
|
|
||||||
|
public id: string;
|
||||||
|
|
||||||
|
public timestamp: number;
|
||||||
|
public smartTimestamp: TimeStamp;
|
||||||
|
|
||||||
|
public messageText: string;
|
||||||
|
public passphrase: string;
|
||||||
|
public payload: any;
|
||||||
|
public payloadStringType;
|
||||||
|
public targetChannelName: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* the UniverseCache the message is attached to
|
||||||
|
*/
|
||||||
|
public universeCache: UniverseCache;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* enables unprotected grouping of messages for efficiency purposes.
|
||||||
|
*/
|
||||||
|
public universeChannelList = new Objectmap<UniverseChannel>();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* wether the message is authenticated
|
||||||
|
*/
|
||||||
|
public authenticated: boolean = null;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* a destruction timer for this message
|
||||||
|
*/
|
||||||
|
public destructionTimer: Timer; // a timer to take care of message destruction
|
||||||
|
|
||||||
|
/**
|
||||||
|
* the constructor to create a universe message
|
||||||
|
* @param messageArg
|
||||||
|
* @param attachedPayloadArg
|
||||||
|
*/
|
||||||
|
constructor(messageDescriptor: IUniverseMessage) {
|
||||||
|
this.smartTimestamp = new TimeStamp(this.timestamp);
|
||||||
|
this.messageText = messageDescriptor.messageText;
|
||||||
|
this.targetChannelName = messageDescriptor.targetChannelName;
|
||||||
|
this.passphrase = messageDescriptor.passphrase;
|
||||||
|
this.payload = messageDescriptor.payload;
|
||||||
|
// prevent memory issues
|
||||||
|
this.fallBackDestruction();
|
||||||
|
}
|
||||||
|
|
||||||
|
public setUniverseCache(universeCacheArg: UniverseCache) {
|
||||||
|
this.universeCache = universeCacheArg;
|
||||||
|
}
|
||||||
|
|
||||||
|
public setDestructionTimer(selfdestructAfterArg: number) {
|
||||||
|
if (selfdestructAfterArg) {
|
||||||
|
this.destructionTimer = new Timer(selfdestructAfterArg);
|
||||||
|
this.destructionTimer.start();
|
||||||
|
|
||||||
|
// set up self destruction by removing this from the parent messageCache
|
||||||
|
this.destructionTimer.completed.then(async () => {
|
||||||
|
this.universeCache.messageMap.remove(this);
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
this.fallBackDestruction();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* handles bad messages for further analysis
|
||||||
|
*/
|
||||||
|
public handleAsBadMessage() {
|
||||||
|
console.log('received a bad message');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* prevents memory leaks if channels have no default
|
||||||
|
*/
|
||||||
|
private fallBackDestruction() {
|
||||||
|
plugins.smartdelay.delayFor(1000).then(() => {
|
||||||
|
if (!this.destructionTimer) {
|
||||||
|
this.setDestructionTimer(6000);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
@ -1,13 +0,0 @@
|
|||||||
import * as plugins from './smartuniverse.plugins';
|
|
||||||
|
|
||||||
import { SmartUniverse } from './index';
|
|
||||||
|
|
||||||
process.env.CLI = 'true';
|
|
||||||
|
|
||||||
const universeCli = new plugins.smartcli.Smartcli();
|
|
||||||
|
|
||||||
universeCli.standardTask().then(argvArg => {
|
|
||||||
const standardUniverse = new SmartUniverse({
|
|
||||||
port: 8765
|
|
||||||
});
|
|
||||||
});
|
|
@ -1,6 +1,31 @@
|
|||||||
|
// node native
|
||||||
import * as path from 'path';
|
import * as path from 'path';
|
||||||
import * as smartcli from 'smartcli';
|
|
||||||
import * as smartexpress from 'smartexpress';
|
|
||||||
import * as smartfile from 'smartfile';
|
|
||||||
|
|
||||||
export { path, smartcli, smartexpress, smartfile };
|
export { path };
|
||||||
|
|
||||||
|
// pushrocks scope
|
||||||
|
import * as lik from '@pushrocks/lik';
|
||||||
|
import * as smarthash from '@pushrocks/smarthash';
|
||||||
|
import * as smartdelay from '@pushrocks/smartdelay';
|
||||||
|
import * as smartexpress from '@pushrocks/smartexpress';
|
||||||
|
import * as smartfile from '@pushrocks/smartfile';
|
||||||
|
import * as smartpromise from '@pushrocks/smartpromise';
|
||||||
|
import * as smartrequest from '@pushrocks/smartrequest';
|
||||||
|
import * as smartrx from '@pushrocks/smartrx';
|
||||||
|
import * as smartsocket from '@pushrocks/smartsocket';
|
||||||
|
import * as smarttime from '@pushrocks/smarttime';
|
||||||
|
import * as smartunique from '@pushrocks/smartunique';
|
||||||
|
|
||||||
|
export {
|
||||||
|
lik,
|
||||||
|
smarthash,
|
||||||
|
smartdelay,
|
||||||
|
smartexpress,
|
||||||
|
smartfile,
|
||||||
|
smartpromise,
|
||||||
|
smartrx,
|
||||||
|
smartrequest,
|
||||||
|
smartsocket,
|
||||||
|
smarttime,
|
||||||
|
smartunique
|
||||||
|
};
|
||||||
|
21
tslint.json
21
tslint.json
@ -1,6 +1,17 @@
|
|||||||
{
|
{
|
||||||
"extends": [
|
"extends": ["tslint:latest", "tslint-config-prettier"],
|
||||||
"tslint:latest",
|
"rules": {
|
||||||
"tslint-config-prettier"
|
"semicolon": [true, "always"],
|
||||||
]
|
"no-console": false,
|
||||||
}
|
"ordered-imports": false,
|
||||||
|
"object-literal-sort-keys": false,
|
||||||
|
"member-ordering": {
|
||||||
|
"options":{
|
||||||
|
"order": [
|
||||||
|
"static-method"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"defaultSeverity": "warning"
|
||||||
|
}
|
||||||
|
Reference in New Issue
Block a user