summaryrefslogtreecommitdiff
path: root/src/store/modules/Authentication/AuthenticanStore.js
blob: a574331b49138854bb9584cfd3bccba04d113f47 (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
import api from '@/store/api';
import Cookies from 'js-cookie';
import router from '@/router';
import { EncryptStorage } from 'encrypt-storage';

const AuthenticationStore = {
  namespaced: true,
  state: {
    authError: false,
    xsrfCookie: Cookies.get('XSRF-TOKEN'),
    isAuthenticatedCookie: Cookies.get('IsAuthenticated'),
  },
  getters: {
    authError: (state) => state.authError,
    isLoggedIn: (state) => {
      return (
        state.xsrfCookie !== undefined || state.isAuthenticatedCookie == 'true'
      );
    },
    token: (state) => state.xsrfCookie,
    role: () => {
      const encryptStorage = new EncryptStorage('ZAaZi(P,m5+BcM|UTox5');
      return encryptStorage.getItem('storedUserrole');
    },
  },
  mutations: {
    authSuccess(state) {
      state.authError = false;
      state.xsrfCookie = Cookies.get('XSRF-TOKEN');
    },
    authError(state, authError = true) {
      state.authError = authError;
    },
    logout(state) {
      Cookies.remove('XSRF-TOKEN');
      Cookies.remove('IsAuthenticated');
      localStorage.removeItem('storedUsername');
      state.xsrfCookie = undefined;
      state.isAuthenticatedCookie = undefined;
    },
    setRole(state, role) {
      const encryptStorage = new EncryptStorage('ZAaZi(P,m5+BcM|UTox5');
      encryptStorage.setItem('storedUserrole', role);
    },
  },
  actions: {
    login({ commit, dispatch }, { username, password }) {
      commit('authError', false);
      return api
        .post('/login', { data: [username, password] })
        .then(() => {
          dispatch('getUser', username)
            .then((response) => {
              if (response.data?.RoleId) {
                commit('setRole', response.data.RoleId);
              }
            })
            .catch((error) => {
              commit('authError');
              throw new Error(error);
            });

          commit('authSuccess');
        })
        .catch((error) => {
          commit('authError');
          throw new Error(error);
        });
    },
    logout({ commit }) {
      api
        .post('/logout', { data: [] })
        .then(() => commit('logout'))
        .then(() => router.go('/login'))
        .catch((error) => console.log(error));
    },
    checkPasswordChangeRequired({ dispatch }, username) {
      dispatch('getUser', username)
        .then(({ data: { PasswordChangeRequired } }) => PasswordChangeRequired)
        .catch((error) => console.log(error));
    },
    resetStoreState({ state }) {
      state.authError = false;
      state.xsrfCookie = Cookies.get('XSRF-TOKEN');
      state.isAuthenticatedCookie = Cookies.get('IsAuthenticated');
    },
    getUser(_, username) {
      return api.get(`/redfish/v1/AccountService/Accounts/${username}`);
    },
  },
};

export default AuthenticationStore;