2020-10-26 02:32:04 +03:00
|
|
|
import socketCluster, { SCClientSocket } from 'socketcluster-client';
|
2019-01-03 17:14:25 +03:00
|
|
|
import { stringify } from 'jsan';
|
2020-10-26 02:32:04 +03:00
|
|
|
import { Dispatch, MiddlewareAPI } from 'redux';
|
2019-01-03 17:14:25 +03:00
|
|
|
import socketOptions from '../constants/socketOptions';
|
|
|
|
import * as actions from '../constants/socketActionTypes';
|
|
|
|
import { getActiveInstance } from '../reducers/instances';
|
|
|
|
import {
|
2019-01-10 21:51:14 +03:00
|
|
|
UPDATE_STATE,
|
|
|
|
REMOVE_INSTANCE,
|
|
|
|
LIFTED_ACTION,
|
|
|
|
UPDATE_REPORTS,
|
|
|
|
GET_REPORT_REQUEST,
|
|
|
|
GET_REPORT_ERROR,
|
2020-08-08 23:26:39 +03:00
|
|
|
GET_REPORT_SUCCESS,
|
2019-01-03 17:14:25 +03:00
|
|
|
} from '../constants/actionTypes';
|
2020-10-26 02:32:04 +03:00
|
|
|
import {
|
|
|
|
showNotification,
|
|
|
|
importState,
|
|
|
|
StoreAction,
|
|
|
|
EmitAction,
|
|
|
|
LiftedActionAction,
|
|
|
|
Request,
|
|
|
|
DispatchAction,
|
|
|
|
UpdateReportsRequest,
|
|
|
|
} from '../actions';
|
2019-01-03 17:14:25 +03:00
|
|
|
import { nonReduxDispatch } from '../utils/monitorActions';
|
2020-10-26 02:32:04 +03:00
|
|
|
import { StoreState } from '../reducers';
|
2019-01-03 17:14:25 +03:00
|
|
|
|
2020-10-26 02:32:04 +03:00
|
|
|
let socket: SCClientSocket;
|
|
|
|
let store: MiddlewareAPI<Dispatch<StoreAction>, StoreState>;
|
2019-01-03 17:14:25 +03:00
|
|
|
|
2020-10-26 02:32:04 +03:00
|
|
|
function emit({ message: type, id, instanceId, action, state }: EmitAction) {
|
2019-01-10 21:51:14 +03:00
|
|
|
socket.emit(id ? 'sc-' + id : 'respond', { type, action, state, instanceId });
|
2019-01-03 17:14:25 +03:00
|
|
|
}
|
|
|
|
|
2020-10-26 02:32:04 +03:00
|
|
|
function startMonitoring(channel: string) {
|
2019-01-03 17:14:25 +03:00
|
|
|
if (channel !== store.getState().socket.baseChannel) return;
|
|
|
|
store.dispatch({ type: actions.EMIT, message: 'START' });
|
|
|
|
}
|
|
|
|
|
2020-10-26 02:32:04 +03:00
|
|
|
function dispatchRemoteAction({
|
|
|
|
message,
|
|
|
|
action,
|
|
|
|
state,
|
|
|
|
toAll,
|
|
|
|
}: LiftedActionAction) {
|
2019-01-03 17:14:25 +03:00
|
|
|
const instances = store.getState().instances;
|
|
|
|
const instanceId = getActiveInstance(instances);
|
|
|
|
const id = !toAll && instances.options[instanceId].connectionId;
|
|
|
|
store.dispatch({
|
|
|
|
type: actions.EMIT,
|
|
|
|
message,
|
|
|
|
action,
|
2019-01-10 21:51:14 +03:00
|
|
|
state: nonReduxDispatch(
|
|
|
|
store,
|
|
|
|
message,
|
|
|
|
instanceId,
|
2020-10-26 02:32:04 +03:00
|
|
|
action as DispatchAction,
|
2019-01-10 21:51:14 +03:00
|
|
|
state,
|
|
|
|
instances
|
|
|
|
),
|
2019-01-03 17:14:25 +03:00
|
|
|
instanceId,
|
2020-08-08 23:26:39 +03:00
|
|
|
id,
|
2019-01-03 17:14:25 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-10-26 02:32:04 +03:00
|
|
|
interface RequestBase {
|
|
|
|
id?: string;
|
|
|
|
instanceId?: string;
|
|
|
|
}
|
|
|
|
interface DisconnectedAction extends RequestBase {
|
|
|
|
type: 'DISCONNECTED';
|
|
|
|
id: string;
|
|
|
|
}
|
|
|
|
interface StartAction extends RequestBase {
|
|
|
|
type: 'START';
|
|
|
|
id: string;
|
|
|
|
}
|
|
|
|
interface ErrorAction extends RequestBase {
|
|
|
|
type: 'ERROR';
|
|
|
|
payload: string;
|
|
|
|
}
|
|
|
|
interface RequestWithData extends RequestBase {
|
|
|
|
data: Request;
|
|
|
|
}
|
|
|
|
type MonitoringRequest =
|
|
|
|
| DisconnectedAction
|
|
|
|
| StartAction
|
|
|
|
| ErrorAction
|
|
|
|
| Request;
|
|
|
|
|
|
|
|
function monitoring(request: MonitoringRequest) {
|
2019-01-03 17:14:25 +03:00
|
|
|
if (request.type === 'DISCONNECTED') {
|
|
|
|
store.dispatch({
|
|
|
|
type: REMOVE_INSTANCE,
|
2020-08-08 23:26:39 +03:00
|
|
|
id: request.id,
|
2019-01-03 17:14:25 +03:00
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (request.type === 'START') {
|
|
|
|
store.dispatch({ type: actions.EMIT, message: 'START', id: request.id });
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (request.type === 'ERROR') {
|
|
|
|
store.dispatch(showNotification(request.payload));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
store.dispatch({
|
|
|
|
type: UPDATE_STATE,
|
2021-06-18 06:56:36 +03:00
|
|
|
request: (request as unknown as RequestWithData).data
|
|
|
|
? { ...(request as unknown as RequestWithData).data, id: request.id }
|
2020-10-26 02:32:04 +03:00
|
|
|
: request,
|
2019-01-03 17:14:25 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
const instances = store.getState().instances;
|
|
|
|
const instanceId = request.instanceId || request.id;
|
|
|
|
if (
|
2019-01-10 21:51:14 +03:00
|
|
|
instances.sync &&
|
|
|
|
instanceId === instances.selected &&
|
2019-01-03 17:14:25 +03:00
|
|
|
(request.type === 'ACTION' || request.type === 'STATE')
|
|
|
|
) {
|
|
|
|
socket.emit('respond', {
|
|
|
|
type: 'SYNC',
|
|
|
|
state: stringify(instances.states[instanceId]),
|
|
|
|
id: request.id,
|
2020-08-08 23:26:39 +03:00
|
|
|
instanceId,
|
2019-01-03 17:14:25 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-26 02:32:04 +03:00
|
|
|
function subscribe(
|
|
|
|
channelName: string,
|
|
|
|
subscription: typeof UPDATE_STATE | typeof UPDATE_REPORTS
|
|
|
|
) {
|
2019-01-03 17:14:25 +03:00
|
|
|
const channel = socket.subscribe(channelName);
|
|
|
|
if (subscription === UPDATE_STATE) channel.watch(monitoring);
|
|
|
|
else {
|
2020-10-26 02:32:04 +03:00
|
|
|
const watcher = (request: UpdateReportsRequest) => {
|
2019-01-03 17:14:25 +03:00
|
|
|
store.dispatch({ type: subscription, request });
|
|
|
|
};
|
|
|
|
channel.watch(watcher);
|
|
|
|
socket.on(channelName, watcher);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function handleConnection() {
|
2020-08-08 23:26:39 +03:00
|
|
|
socket.on('connect', (status) => {
|
2019-01-03 17:14:25 +03:00
|
|
|
store.dispatch({
|
|
|
|
type: actions.CONNECT_SUCCESS,
|
|
|
|
payload: {
|
|
|
|
id: status.id,
|
|
|
|
authState: socket.authState,
|
2020-08-08 23:26:39 +03:00
|
|
|
socketState: socket.state,
|
2019-01-03 17:14:25 +03:00
|
|
|
},
|
2020-08-08 23:26:39 +03:00
|
|
|
error: status.authError,
|
2019-01-03 17:14:25 +03:00
|
|
|
});
|
|
|
|
if (socket.authState !== actions.AUTHENTICATED) {
|
|
|
|
store.dispatch({ type: actions.AUTH_REQUEST });
|
|
|
|
}
|
|
|
|
});
|
2020-08-08 23:26:39 +03:00
|
|
|
socket.on('disconnect', (code) => {
|
2019-01-03 17:14:25 +03:00
|
|
|
store.dispatch({ type: actions.DISCONNECTED, code });
|
|
|
|
});
|
|
|
|
|
2020-08-08 23:26:39 +03:00
|
|
|
socket.on('subscribe', (channel) => {
|
2019-01-03 17:14:25 +03:00
|
|
|
store.dispatch({ type: actions.SUBSCRIBE_SUCCESS, channel });
|
|
|
|
});
|
2020-08-08 23:26:39 +03:00
|
|
|
socket.on('unsubscribe', (channel) => {
|
2019-01-03 17:14:25 +03:00
|
|
|
socket.unsubscribe(channel);
|
|
|
|
socket.unwatch(channel);
|
|
|
|
socket.off(channel);
|
|
|
|
store.dispatch({ type: actions.UNSUBSCRIBE, channel });
|
|
|
|
});
|
2020-08-08 23:26:39 +03:00
|
|
|
socket.on('subscribeFail', (error) => {
|
2019-01-10 21:51:14 +03:00
|
|
|
store.dispatch({
|
|
|
|
type: actions.SUBSCRIBE_ERROR,
|
|
|
|
error,
|
2020-08-08 23:26:39 +03:00
|
|
|
status: 'subscribeFail',
|
2019-01-10 21:51:14 +03:00
|
|
|
});
|
2019-01-03 17:14:25 +03:00
|
|
|
});
|
2020-08-08 23:26:39 +03:00
|
|
|
socket.on('dropOut', (error) => {
|
2019-01-03 17:14:25 +03:00
|
|
|
store.dispatch({ type: actions.SUBSCRIBE_ERROR, error, status: 'dropOut' });
|
|
|
|
});
|
|
|
|
|
2020-08-08 23:26:39 +03:00
|
|
|
socket.on('error', (error) => {
|
2019-01-03 17:14:25 +03:00
|
|
|
store.dispatch({ type: actions.CONNECT_ERROR, error });
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function connect() {
|
|
|
|
if (process.env.NODE_ENV === 'test') return;
|
|
|
|
const connection = store.getState().connection;
|
|
|
|
try {
|
2020-08-09 04:18:45 +03:00
|
|
|
socket = socketCluster.create(
|
2019-01-03 17:14:25 +03:00
|
|
|
connection.type === 'remotedev' ? socketOptions : connection.options
|
|
|
|
);
|
2020-10-26 02:32:04 +03:00
|
|
|
handleConnection();
|
2019-01-03 17:14:25 +03:00
|
|
|
} catch (error) {
|
|
|
|
store.dispatch({ type: actions.CONNECT_ERROR, error });
|
|
|
|
store.dispatch(showNotification(error.message || error));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function disconnect() {
|
|
|
|
socket.disconnect();
|
|
|
|
socket.off();
|
|
|
|
}
|
|
|
|
|
|
|
|
function login() {
|
2020-10-26 02:32:04 +03:00
|
|
|
socket.emit('login', {}, (error: Error, baseChannel: string) => {
|
2019-01-03 17:14:25 +03:00
|
|
|
if (error) {
|
|
|
|
store.dispatch({ type: actions.AUTH_ERROR, error });
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
store.dispatch({ type: actions.AUTH_SUCCESS, baseChannel });
|
|
|
|
store.dispatch({
|
|
|
|
type: actions.SUBSCRIBE_REQUEST,
|
|
|
|
channel: baseChannel,
|
2020-08-08 23:26:39 +03:00
|
|
|
subscription: UPDATE_STATE,
|
2019-01-03 17:14:25 +03:00
|
|
|
});
|
|
|
|
store.dispatch({
|
|
|
|
type: actions.SUBSCRIBE_REQUEST,
|
|
|
|
channel: 'report',
|
2020-08-08 23:26:39 +03:00
|
|
|
subscription: UPDATE_REPORTS,
|
2019-01-03 17:14:25 +03:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-10-26 02:32:04 +03:00
|
|
|
function getReport(reportId: unknown) {
|
|
|
|
socket.emit(
|
|
|
|
'getReport',
|
|
|
|
reportId,
|
|
|
|
(error: Error, data: { payload: string }) => {
|
|
|
|
if (error) {
|
|
|
|
store.dispatch({ type: GET_REPORT_ERROR, error });
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
store.dispatch({ type: GET_REPORT_SUCCESS, data });
|
|
|
|
store.dispatch(importState(data.payload));
|
2019-01-03 17:14:25 +03:00
|
|
|
}
|
2020-10-26 02:32:04 +03:00
|
|
|
);
|
2019-01-03 17:14:25 +03:00
|
|
|
}
|
|
|
|
|
2020-10-26 02:32:04 +03:00
|
|
|
export default function api(
|
|
|
|
inStore: MiddlewareAPI<Dispatch<StoreAction>, StoreState>
|
|
|
|
) {
|
2019-01-03 17:14:25 +03:00
|
|
|
store = inStore;
|
2020-10-26 02:32:04 +03:00
|
|
|
return (next: Dispatch<StoreAction>) => (action: StoreAction) => {
|
2019-01-03 17:14:25 +03:00
|
|
|
const result = next(action);
|
2020-10-26 02:32:04 +03:00
|
|
|
switch (action.type) {
|
2019-01-10 21:51:14 +03:00
|
|
|
case actions.CONNECT_REQUEST:
|
|
|
|
connect();
|
|
|
|
break;
|
2019-01-03 17:14:25 +03:00
|
|
|
case actions.RECONNECT:
|
|
|
|
disconnect();
|
|
|
|
if (action.options.type !== 'disabled') connect();
|
|
|
|
break;
|
2019-01-10 21:51:14 +03:00
|
|
|
case actions.AUTH_REQUEST:
|
|
|
|
login();
|
|
|
|
break;
|
|
|
|
case actions.SUBSCRIBE_REQUEST:
|
|
|
|
subscribe(action.channel, action.subscription);
|
|
|
|
break;
|
|
|
|
case actions.SUBSCRIBE_SUCCESS:
|
|
|
|
startMonitoring(action.channel);
|
|
|
|
break;
|
|
|
|
case actions.EMIT:
|
|
|
|
if (socket) emit(action);
|
|
|
|
break;
|
|
|
|
case LIFTED_ACTION:
|
|
|
|
dispatchRemoteAction(action);
|
|
|
|
break;
|
|
|
|
case GET_REPORT_REQUEST:
|
|
|
|
getReport(action.report);
|
|
|
|
break;
|
2019-01-03 17:14:25 +03:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
};
|
|
|
|
}
|