Skip to content

Commit 7727b87

Browse files
committed
fix build
Signed-off-by: ryjiang <jiangruiyi@gmail.com>
1 parent 776b3d5 commit 7727b87

File tree

4 files changed

+40
-20
lines changed

4 files changed

+40
-20
lines changed

server/src/app.ts

+12-6
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import {
1818
ErrorMiddleware,
1919
ReqHeaderMiddleware,
2020
} from './middleware';
21-
import { CLIENT_TTL, SimpleQueue } from './utils';
21+
import { CLIENT_TTL, SimpleQueue, isElectron } from './utils';
2222
import { getIp } from './utils/Network';
2323
import { DescribeIndexRes, MilvusClient } from './types';
2424
import { initWebSocket } from './socket';
@@ -73,7 +73,9 @@ app.use(express.json({ limit: '150MB' }));
7373
// TransformResInterceptor
7474
app.use(TransformResMiddleware);
7575
// LoggingInterceptor
76-
app.use(LoggingMiddleware);
76+
if (!isElectron()) {
77+
app.use(LoggingMiddleware);
78+
}
7779
// All headers operations
7880
app.use(ReqHeaderMiddleware);
7981
// use router
@@ -96,8 +98,12 @@ const PORT = process.env.SERVER_PORT || 3000;
9698

9799
// start server
98100
server.listen(PORT, () => {
99-
const ips = getIp();
100-
ips.forEach(ip => {
101-
console.info(chalk.cyanBright(`Attu server started: http://${ip}:${PORT}`));
102-
});
101+
if (!isElectron()) {
102+
const ips = getIp();
103+
ips.forEach(ip => {
104+
console.info(
105+
chalk.cyanBright(`Attu server started: http://${ip}:${PORT}`)
106+
);
107+
});
108+
}
103109
});

server/src/middleware/index.ts

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Request, Response, NextFunction } from 'express';
22
import morgan from 'morgan';
33
import chalk from 'chalk';
4-
import { MILVUS_CLIENT_ID, HTTP_STATUS_CODE } from '../utils';
4+
import { MILVUS_CLIENT_ID, HTTP_STATUS_CODE, isElectron } from '../utils';
55
import { HttpError } from 'http-errors';
66
import HttpErrors from 'http-errors';
77
import { clientCache } from '../app';
@@ -77,11 +77,13 @@ export const ErrorMiddleware = (
7777
next: NextFunction
7878
) => {
7979
const statusCode = err.statusCode || 500;
80-
console.log(
81-
chalk.blue.bold(req.method, req.url),
82-
chalk.magenta.bold(statusCode),
83-
chalk.red.bold(err)
84-
);
80+
if (!isElectron()) {
81+
console.log(
82+
chalk.blue.bold(req.method, req.url),
83+
chalk.magenta.bold(statusCode),
84+
chalk.red.bold(err)
85+
);
86+
}
8587
// Boolean property that indicates if the app sent HTTP headers for the response.
8688
// Here to prevent sending response after header has been sent.
8789
if (res.headersSent) {

server/src/socket.ts

+15-7
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { Server, Socket } from 'socket.io';
33
import * as http from 'http';
44
import chalk from 'chalk';
5-
import { WS_EVENTS } from './utils';
5+
import { WS_EVENTS, isElectron } from './utils';
66

77
export let io: Server;
88
export let clients = new Map<string, Socket>();
@@ -19,23 +19,31 @@ export function initWebSocket(server: http.Server) {
1919
// register client
2020
socket.on(WS_EVENTS.REGISTER, (clientId: string) => {
2121
clients.set(clientId, socket);
22-
console.info(chalk.green(`ws client connected ${clientId}`));
22+
if (!isElectron()) {
23+
console.info(chalk.green(`ws client connected ${clientId}`));
24+
}
2325

2426
socket.on('disconnect', () => {
25-
console.info(chalk.green(`ws client disconnected ${clientId}`));
27+
if (!isElectron()) {
28+
console.info(chalk.green(`ws client disconnected ${clientId}`));
29+
}
2630
clients.delete(clientId);
2731
});
2832

2933
socket.on('error', (error: Error) => {
30-
console.error(
31-
chalk.red(`ws client error ${clientId}: ${error.message}`)
32-
);
34+
if (!isElectron()) {
35+
console.error(
36+
chalk.red(`ws client error ${clientId}: ${error.message}`)
37+
);
38+
}
3339
});
3440
});
3541
});
3642

3743
// Handle server-level errors
3844
io.on('error', (error: Error) => {
39-
console.error(chalk.red(`ws server error: ${error.message}`));
45+
if (!isElectron()) {
46+
console.error(chalk.red(`ws server error: ${error.message}`));
47+
}
4048
});
4149
}

server/src/utils/Helper.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -169,4 +169,8 @@ export const getKeyValueListFromJsonString = (json: string): KeyValuePair[] => {
169169
}
170170
};
171171

172-
export const cloneObj = (obj: any) => JSON.parse(JSON.stringify(obj));
172+
export const cloneObj = (obj: any) => JSON.parse(JSON.stringify(obj));
173+
174+
export const isElectron = () => {
175+
return process.versions && !!process.versions.electron;
176+
};

0 commit comments

Comments
 (0)