File size: 1,714 Bytes
246d201
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import { createSlice } from "@reduxjs/toolkit";

export enum ActionSecurityRisk {
  UNKNOWN = -1,
  LOW = 0,
  MEDIUM = 1,
  HIGH = 2,
}

export type SecurityAnalyzerLog = {
  id: number;
  content: string;
  security_risk: ActionSecurityRisk;
  confirmation_state?: "awaiting_confirmation" | "confirmed" | "rejected";
  confirmed_changed: boolean;
};

const initialLogs: SecurityAnalyzerLog[] = [];

export const securityAnalyzerSlice = createSlice({
  name: "securityAnalyzer",
  initialState: {
    logs: initialLogs,
  },
  reducers: {
    appendSecurityAnalyzerInput: (state, action) => {
      const log = {
        id: action.payload.id,
        content:
          action.payload.args.command ||
          action.payload.args.code ||
          action.payload.args.content ||
          action.payload.message,
        security_risk: action.payload.args.security_risk as ActionSecurityRisk,
        confirmation_state: action.payload.args.confirmation_state,
        confirmed_changed: false,
      };

      const existingLog = state.logs.find(
        (stateLog) =>
          stateLog.id === log.id ||
          (stateLog.confirmation_state === "awaiting_confirmation" &&
            stateLog.content === log.content),
      );

      if (existingLog) {
        if (existingLog.confirmation_state !== log.confirmation_state) {
          existingLog.confirmation_state = log.confirmation_state;
          existingLog.confirmed_changed = true;
        }
      } else {
        state.logs.push(log);
      }
    },
  },
});

export const { appendSecurityAnalyzerInput } = securityAnalyzerSlice.actions;

export default securityAnalyzerSlice.reducer;