@stuntman/server 0.1.6 → 0.1.7

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/README.md CHANGED
@@ -31,7 +31,7 @@ pnpm stuntman
31
31
 
32
32
  Stuntman uses [config](https://github.com/node-config/node-config)
33
33
 
34
- You can create `config/default.json` with settings of your liking matching `ServerConfig` type
34
+ You can create `config/default.json` with settings of your liking matching `Stuntman.Config` type
35
35
 
36
36
  ## Running as a package
37
37
 
@@ -55,9 +55,9 @@ node ./node_modules/.bin/stuntman
55
55
 
56
56
  ```ts
57
57
  import { Mock } from '../mock';
58
- import { serverConfig } from '@stuntman/shared';
58
+ import { stuntmanConfig } from '@stuntman/shared';
59
59
 
60
- const mock = new Mock(serverConfig);
60
+ const mock = new Mock(stuntmanConfig);
61
61
 
62
62
  mock.start();
63
63
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stuntman/server",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "Stuntman - HTTP proxy / mock server with API",
5
5
  "main": "dist/index.js",
6
6
  "repository": {
@@ -69,8 +69,8 @@
69
69
  "test": "SUPPRESS_NO_CONFIG_WARNING=1 jest",
70
70
  "clean": "rm -fr dist",
71
71
  "build": "tsc && cp -rv src/api/webgui dist/api",
72
- "lint": "prettier --check . && eslint . --ext ts",
73
- "lint:fix": "prettier --write ./{src,test} && eslint ./{src,test} --ext ts --fix",
72
+ "lint": "prettier --check \"./{src,test}/**/*\" && eslint \"./{src,test}/**/*\"",
73
+ "lint:fix": "prettier --write \"./{src,test}/**/*\" && eslint \"./{src,test}/**/*\" --fix",
74
74
  "start": "node ./dist/bin/stuntman.js",
75
75
  "start:dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' ./src/bin/stuntman.ts",
76
76
  "start:debug": "node --inspect-brk=0.0.0.0 ./node_modules/.bin/ts-node --transpile-only ./src/bin/stuntman.ts"
package/src/api/api.ts CHANGED
@@ -19,67 +19,81 @@ const API_KEY_HEADER = 'x-api-key';
19
19
 
20
20
  export class API {
21
21
  protected options: Required<ApiOptions>;
22
- protected apiApp: ExpressServer;
22
+ protected webGuiOptions: Stuntman.WebGuiConfig;
23
+ protected apiApp: ExpressServer | null = null;
23
24
  trafficStore: LRUCache<string, Stuntman.LogEntry>;
24
25
  server: http.Server | null = null;
25
- auth: (req: Request, type: 'read' | 'write') => void;
26
- authReadOnly: (req: Request, res: Response, next: NextFunction) => void;
27
- authReadWrite: (req: Request, res: Response, next: NextFunction) => void;
28
26
 
29
- constructor(options: ApiOptions, webGuiOptions?: Stuntman.WebGuiConfig) {
27
+ constructor(options: ApiOptions, webGuiOptions: Stuntman.WebGuiConfig = { disabled: false }) {
30
28
  if (!options.apiKeyReadOnly !== !options.apiKeyReadWrite) {
31
29
  throw new Error('apiKeyReadOnly and apiKeyReadWrite options need to be set either both or none');
32
30
  }
33
31
  this.options = options;
32
+ this.webGuiOptions = webGuiOptions;
34
33
 
35
34
  this.trafficStore = getTrafficStore(this.options.mockUuid);
36
- this.apiApp = express();
37
-
38
- this.apiApp.use(express.json());
39
- this.apiApp.use(express.text());
35
+ this.auth = this.auth.bind(this);
36
+ this.authReadOnly = this.authReadOnly.bind(this);
37
+ this.authReadWrite = this.authReadWrite.bind(this);
38
+ }
40
39
 
41
- this.auth = (req: Request, type: 'read' | 'write'): void => {
42
- if (!this.options.apiKeyReadOnly && !this.options.apiKeyReadWrite) {
43
- return;
44
- }
45
- const hasValidReadKey = req.header(API_KEY_HEADER) === this.options.apiKeyReadOnly;
46
- const hasValidWriteKey = req.header(API_KEY_HEADER) === this.options.apiKeyReadWrite;
47
- const hasValidKey = type === 'read' ? hasValidReadKey || hasValidWriteKey : hasValidWriteKey;
48
- if (!hasValidKey) {
49
- throw new AppError({ httpCode: HttpCode.UNAUTHORIZED, message: 'unauthorized' });
50
- }
40
+ private auth(req: Request, type: 'read' | 'write'): void {
41
+ if (!this.options.apiKeyReadOnly && !this.options.apiKeyReadWrite) {
51
42
  return;
52
- };
43
+ }
44
+ const hasValidReadKey = req.header(API_KEY_HEADER) === this.options.apiKeyReadOnly;
45
+ const hasValidWriteKey = req.header(API_KEY_HEADER) === this.options.apiKeyReadWrite;
46
+ const hasValidKey = type === 'read' ? hasValidReadKey || hasValidWriteKey : hasValidWriteKey;
47
+ if (!hasValidKey) {
48
+ throw new AppError({ httpCode: HttpCode.UNAUTHORIZED, message: 'unauthorized' });
49
+ }
50
+ return;
51
+ }
53
52
 
54
- this.authReadOnly = (req: Request, res: Response, next: NextFunction): void => {
55
- this.auth(req, 'read');
56
- next();
57
- };
53
+ protected authReadOnly(req: Request, _res: Response, next: NextFunction): void {
54
+ this.auth(req, 'read');
55
+ next();
56
+ }
58
57
 
59
- this.authReadWrite = (req: Request, res: Response, next: NextFunction): void => {
60
- this.auth(req, 'write');
61
- next();
62
- };
58
+ protected authReadWrite(req: Request, _res: Response, next: NextFunction): void {
59
+ this.auth(req, 'write');
60
+ next();
61
+ }
62
+
63
+ private initApi() {
64
+ this.apiApp = express();
63
65
 
64
- this.apiApp.use((req: Request, res: Response, next: NextFunction) => {
66
+ this.apiApp.use(express.json());
67
+ this.apiApp.use(express.text());
68
+
69
+ this.apiApp.use((req: Request, _res: Response, next: NextFunction) => {
65
70
  RequestContext.bind(req, this.options.mockUuid);
66
71
  next();
67
72
  });
68
73
 
69
- this.apiApp.get('/rule', this.authReadOnly, async (req, res) => {
74
+ this.apiApp.get('/rule', this.authReadOnly.bind, async (_req, res) => {
70
75
  res.send(stringify(await getRuleExecutor(this.options.mockUuid).getRules()));
71
76
  });
72
77
 
73
78
  this.apiApp.get('/rule/:ruleId', this.authReadOnly, async (req, res) => {
79
+ if (!req.params.ruleId) {
80
+ throw new AppError({ httpCode: HttpCode.BAD_REQUEST, message: 'missing ruleId' });
81
+ }
74
82
  res.send(stringify(await getRuleExecutor(this.options.mockUuid).getRule(req.params.ruleId)));
75
83
  });
76
84
 
77
85
  this.apiApp.get('/rule/:ruleId/disable', this.authReadWrite, (req, res) => {
86
+ if (!req.params.ruleId) {
87
+ throw new AppError({ httpCode: HttpCode.BAD_REQUEST, message: 'missing ruleId' });
88
+ }
78
89
  getRuleExecutor(this.options.mockUuid).disableRule(req.params.ruleId);
79
90
  res.send();
80
91
  });
81
92
 
82
93
  this.apiApp.get('/rule/:ruleId/enable', this.authReadWrite, (req, res) => {
94
+ if (!req.params.ruleId) {
95
+ throw new AppError({ httpCode: HttpCode.BAD_REQUEST, message: 'missing ruleId' });
96
+ }
83
97
  getRuleExecutor(this.options.mockUuid).enableRule(req.params.ruleId);
84
98
  res.send();
85
99
  });
@@ -98,11 +112,14 @@ export class API {
98
112
  );
99
113
 
100
114
  this.apiApp.get('/rule/:ruleId/remove', this.authReadWrite, async (req, res) => {
115
+ if (!req.params.ruleId) {
116
+ throw new AppError({ httpCode: HttpCode.BAD_REQUEST, message: 'missing ruleId' });
117
+ }
101
118
  await getRuleExecutor(this.options.mockUuid).removeRule(req.params.ruleId);
102
119
  res.send();
103
120
  });
104
121
 
105
- this.apiApp.get('/traffic', this.authReadOnly, (req, res) => {
122
+ this.apiApp.get('/traffic', this.authReadOnly, (_req, res) => {
106
123
  const serializedTraffic: Stuntman.LogEntry[] = [];
107
124
  for (const value of this.trafficStore.values()) {
108
125
  serializedTraffic.push(value);
@@ -111,6 +128,9 @@ export class API {
111
128
  });
112
129
 
113
130
  this.apiApp.get('/traffic/:ruleIdOrLabel', this.authReadOnly, (req, res) => {
131
+ if (!req.params.ruleIdOrLabel) {
132
+ throw new AppError({ httpCode: HttpCode.BAD_REQUEST, message: 'missing ruleIdOrLabel' });
133
+ }
114
134
  const serializedTraffic: Stuntman.LogEntry[] = [];
115
135
  for (const value of this.trafficStore.values()) {
116
136
  if (value.mockRuleId === req.params.ruleIdOrLabel || (value.labels || []).includes(req.params.ruleIdOrLabel)) {
@@ -120,13 +140,13 @@ export class API {
120
140
  res.json(serializedTraffic);
121
141
  });
122
142
 
123
- if (!webGuiOptions?.disabled) {
143
+ if (!this.webGuiOptions.disabled) {
124
144
  this.apiApp.set('views', __dirname + '/webgui');
125
145
  this.apiApp.set('view engine', 'pug');
126
146
  this.initWebGui();
127
147
  }
128
148
 
129
- this.apiApp.all(/.*/, (req: Request, res: Response) => res.status(404).send());
149
+ this.apiApp.all(/.*/, (_req: Request, res: Response) => res.status(404).send());
130
150
 
131
151
  this.apiApp.use((error: Error | AppError, req: Request, res: Response) => {
132
152
  const ctx: RequestContext | null = RequestContext.get(req);
@@ -152,7 +172,10 @@ export class API {
152
172
  }
153
173
 
154
174
  private initWebGui() {
155
- this.apiApp.get('/webgui/rules', this.authReadOnly, async (req, res) => {
175
+ if (!this.apiApp) {
176
+ throw new Error('initialization error');
177
+ }
178
+ this.apiApp.get('/webgui/rules', this.authReadOnly, async (_req, res) => {
156
179
  const rules: Record<string, string> = {};
157
180
  for (const rule of await getRuleExecutor(this.options.mockUuid).getRules()) {
158
181
  rules[rule.id] = serializeJavascript(liveRuleToRule(rule), { unsafe: true });
@@ -160,7 +183,7 @@ export class API {
160
183
  res.render('rules', { rules: escapedSerialize(rules), INDEX_DTS, ruleKeys: Object.keys(rules) });
161
184
  });
162
185
 
163
- this.apiApp.get('/webgui/traffic', this.authReadOnly, async (req, res) => {
186
+ this.apiApp.get('/webgui/traffic', this.authReadOnly, async (_req, res) => {
164
187
  const serializedTraffic: Stuntman.LogEntry[] = [];
165
188
  for (const value of this.trafficStore.values()) {
166
189
  serializedTraffic.push(value);
@@ -208,6 +231,10 @@ export class API {
208
231
  if (this.server) {
209
232
  throw new Error('mock server already started');
210
233
  }
234
+ this.initApi();
235
+ if (!this.apiApp) {
236
+ throw new Error('initialization error');
237
+ }
211
238
  this.server = this.apiApp.listen(this.options.port, () => {
212
239
  logger.info(`API listening on ${this.options.port}`);
213
240
  });
@@ -22,6 +22,7 @@ html
22
22
  div(style='margin-left: 240px')
23
23
  #container(style='height: 400px')
24
24
  script.
25
+ /* eslint no-undef: 0 */
25
26
  const uuidv4 = () => {
26
27
  function getRandomSymbol(symbol) {
27
28
  var array;
@@ -72,7 +73,6 @@ html
72
73
  }
73
74
  const editor = monaco.editor.create(document.getElementById('container'), {
74
75
  theme: 'vs-dark',
75
- autoIndent: true,
76
76
  formatOnPaste: true,
77
77
  formatOnType: true,
78
78
  automaticLayout: true,
@@ -135,7 +135,7 @@ html
135
135
 
136
136
  window.newRule = () => {
137
137
  const ruleId = uuidv4();
138
- const emptyRule = `import type * as Stuntman from \'stuntman\';\n\nvar STUNTMAN_RULE: Stuntman.Rule = { id: '${ruleId}', matches: (req: Stuntman.Request) => true, ttlSeconds: 600, actions: { mockResponse: { status: '200', body: '${ruleId}' }} };`;
138
+ const emptyRule = `import type * as Stuntman from 'stuntman';\n\nvar STUNTMAN_RULE: Stuntman.Rule = { id: '${ruleId}', matches: (req: Stuntman.Request) => true, ttlSeconds: 600, actions: { mockResponse: { status: '200', body: '${ruleId}' }} };`;
139
139
  models[ruleId] = monaco.editor.createModel(emptyRule, 'typescript', `file:///${ruleId}.ts`);
140
140
  const ruleKeyNode = document.getElementById('ruleKeys').firstChild;
141
141
  const ruleKeyNodeClone = ruleKeyNode.cloneNode(true);
@@ -21,8 +21,8 @@ button.rule {
21
21
  }
22
22
 
23
23
  ul.no-bullets {
24
- list-style-type: none; /* Remove bullets */
25
- padding: 0; /* Remove padding */
26
- margin: 0; /* Remove margins */
24
+ list-style-type: none;
25
+ padding: 0;
26
+ margin: 0;
27
27
  text-align: left;
28
28
  }
@@ -12,6 +12,7 @@ html
12
12
  div(style='margin-left: 220px')
13
13
  #container(style='height: 800px')
14
14
  script.
15
+ /* eslint no-undef: 0 */
15
16
  require.config({
16
17
  paths: {
17
18
  vs: 'https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.35.0/min/vs',
@@ -1,8 +1,8 @@
1
1
  #!/usr/bin/env node
2
2
 
3
3
  import { Mock } from '../mock';
4
- import { serverConfig } from '@stuntman/shared';
4
+ import { stuntmanConfig } from '@stuntman/shared';
5
5
 
6
- const mock = new Mock(serverConfig);
6
+ const mock = new Mock(stuntmanConfig);
7
7
 
8
8
  mock.start();
package/src/ipUtils.ts CHANGED
@@ -55,7 +55,7 @@ export class IPUtils {
55
55
  return;
56
56
  }
57
57
  logger.debug({ ip: addresses, hostname }, 'resolved hostname');
58
- resolve([addresses[0], ...addresses.slice(1)]);
58
+ resolve([addresses[0]!, ...addresses.slice(1)]);
59
59
  };
60
60
  if (options?.useExternalDns) {
61
61
  if (!this.externalDns) {