summaryrefslogtreecommitdiff
path: root/src/store/modules/Configuration/FirmwareStore.js
blob: c99e7eb8b58e2676eb5a64b3c33c41ea1fa42740 (plain)
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
import api from '@/store/api';
import i18n from '@/i18n';

/**
 * Get backup firmware image from SoftwareImages
 * The backup is whichever image is not the current
 * or "ActiveSoftwareImage"
 * @param {Array} list
 * @param {String} currentLocation
 */
function getBackupFirmwareLocation(list, currentLocation) {
  return list
    .map(item => item['@odata.id'])
    .find(location => {
      const id = location.split('/').pop();
      const currentId = currentLocation.split('/').pop();
      return id !== currentId;
    });
}

const FirmwareStore = {
  namespaced: true,
  state: {
    bmcFirmware: {
      currentVersion: null,
      currentState: null,
      currentLocation: null,
      backupVersion: null,
      backupState: null,
      backupLocation: null
    },
    hostFirmware: {
      currentVersion: null,
      currentState: null,
      currentLocation: null,
      backupVersion: null,
      backupState: null,
      backupLocation: null
    },
    applyTime: null
  },
  getters: {
    bmcFirmwareCurrentVersion: state => state.bmcFirmware.currentVersion,
    bmcFirmwareCurrentState: state => state.bmcFirmware.currentState,
    bmcFirmwareBackupVersion: state => state.bmcFirmware.backupVersion,
    bmcFirmwareBackupState: state => state.bmcFirmware.backupState,
    hostFirmwareCurrentVersion: state => state.hostFirmware.currentVersion,
    hostFirmwareCurrentState: state => state.hostFirmware.currentState,
    hostFirmwareBackupVersion: state => state.hostFirmware.backupVersion,
    hostFirmwareBackupState: state => state.hostFirmware.backupState
  },
  mutations: {
    setBmcFirmwareCurrent: (state, { version, location, status }) => {
      state.bmcFirmware.currentVersion = version;
      state.bmcFirmware.currentState = status;
      state.bmcFirmware.currentLocation = location;
    },
    setBmcFirmwareBackup: (state, { version, location, status }) => {
      state.bmcFirmware.backupVersion = version;
      state.bmcFirmware.backupState = status;
      state.bmcFirmware.backupLocation = location;
    },
    setHostFirmwareCurrent: (state, { version, location, status }) => {
      state.hostFirmware.currentVersion = version;
      state.hostFirmware.currentState = status;
      state.hostFirmware.currentLocation = location;
    },
    setHostFirmwareBackup: (state, { version, location, status }) => {
      state.hostFirmware.backupVersion = version;
      state.hostFirmware.backupState = status;
      state.hostFirmware.backupLocation = location;
    },
    setApplyTime: (state, applyTime) => (state.applyTime = applyTime)
  },
  actions: {
    async getFirmwareInformation({ dispatch }) {
      return await api.all([
        dispatch('getBmcFirmware'),
        dispatch('getHostFirmware')
      ]);
    },
    async getBmcFirmware({ commit }) {
      return await api
        .get('/redfish/v1/Managers/bmc')
        .then(({ data: { Links } }) => {
          const currentLocation = Links.ActiveSoftwareImage['@odata.id'];
          // Check SoftwareImages list for not ActiveSoftwareImage id
          const backupLocation = getBackupFirmwareLocation(
            Links.SoftwareImages,
            currentLocation
          );
          return { currentLocation, backupLocation };
        })
        .then(async ({ currentLocation, backupLocation }) => {
          const currentData = await api.get(currentLocation);
          let backupData = {};

          if (backupLocation) {
            backupData = await api.get(backupLocation);
          }

          commit('setBmcFirmwareCurrent', {
            version: currentData?.data?.Version,
            location: currentData?.data?.['@odata.id'],
            status: currentData?.data?.Status?.State
          });
          commit('setBmcFirmwareBackup', {
            version: backupData.data?.Version,
            location: backupData.data?.['@odata.id'],
            status: backupData.data?.Status?.State
          });
        })
        .catch(error => console.log(error));
    },
    async getHostFirmware({ commit }) {
      return await api
        .get('/redfish/v1/Systems/system/Bios')
        .then(({ data: { Links } }) => {
          const currentLocation = Links.ActiveSoftwareImage['@odata.id'];
          const backupLocation = getBackupFirmwareLocation(
            Links.SoftwareImages,
            currentLocation
          );
          return { currentLocation, backupLocation };
        })
        .then(async ({ currentLocation, backupLocation }) => {
          const currentData = await api.get(currentLocation);
          let backupData = {};

          if (backupLocation) {
            backupData = await api.get(backupLocation);
          }

          commit('setHostFirmwareCurrent', {
            version: currentData?.data?.Version,
            location: currentData?.data?.['@odata.id'],
            status: currentData?.data?.Status?.State
          });
          commit('setHostFirmwareBackup', {
            version: backupData.data?.Version,
            location: backupData.data?.['@odata.id'],
            status: backupData.data?.Status?.State
          });
        })
        .catch(error => console.log(error));
    },
    getUpdateServiceApplyTime({ commit }) {
      api
        .get('/redfish/v1/UpdateService')
        .then(({ data }) => {
          const applyTime =
            data.HttpPushUriOptions.HttpPushUriApplyTime.ApplyTime;
          commit('setApplyTime', applyTime);
        })
        .catch(error => console.log(error));
    },
    setApplyTimeImmediate({ commit }) {
      const data = {
        HttpPushUriOptions: {
          HttpPushUriApplyTime: {
            ApplyTime: 'Immediate'
          }
        }
      };
      return api
        .patch('/redfish/v1/UpdateService', data)
        .then(() => commit('setApplyTime', 'Immediate'))
        .catch(error => console.log(error));
    },
    async uploadFirmware({ state, dispatch }, image) {
      if (state.applyTime !== 'Immediate') {
        // ApplyTime must be set to Immediate before making
        // request to update firmware
        await dispatch('setApplyTimeImmediate');
      }
      return await api
        .post('/redfish/v1/UpdateService', image, {
          headers: { 'Content-Type': 'application/octet-stream' }
        })
        .then(() => dispatch('getSystemFirwareVersion'))
        .then(() => i18n.t('pageFirmware.toast.successUploadMessage'))
        .catch(error => {
          console.log(error);
          throw new Error(i18n.t('pageFirmware.toast.errorUploadAndReboot'));
        });
    },
    async uploadFirmwareTFTP({ state, dispatch }, { address, filename }) {
      const data = {
        TransferProtocol: 'TFTP',
        ImageURI: `${address}/${filename}`
      };
      if (state.applyTime !== 'Immediate') {
        // ApplyTime must be set to Immediate before making
        // request to update firmware
        await dispatch('setApplyTimeImmediate');
      }
      return await api
        .post(
          '/redfish/v1/UpdateService/Actions/UpdateService.SimpleUpdate',
          data
        )
        .then(() => dispatch('getSystemFirwareVersion'))
        .then(() => i18n.t('pageFirmware.toast.successUploadMessage'))
        .catch(error => {
          console.log(error);
          throw new Error(i18n.t('pageFirmware.toast.errorUploadAndReboot'));
        });
    },
    async swtichBmcFirmware({ state }) {
      const backupLoaction = state.bmcFirmware.backupLoaction;
      const data = {
        Links: {
          ActiveSoftwareImage: {
            '@odata.id': backupLoaction
          }
        }
      };
      return await api
        .patch('/redfish/v1/Managers/bmc', data)
        .then(() => i18n.t('pageFirmware.toast.successRebootFromBackup'))
        .catch(error => {
          console.log(error);
          throw new Error(i18n.t('pageFirmware.toast.errorRebootFromBackup'));
        });
    }
  }
};

export default FirmwareStore;