login.js 1.61 KB
Newer Older
陈帅's avatar
陈帅 committed
1
import { routerRedux } from 'dva/router';
afc163's avatar
afc163 committed
2
import { fakeAccountLogin } from '../services/api';
ddcat1115's avatar
ddcat1115 committed
3
import { setAuthority } from '../utils/authority';
陈帅's avatar
陈帅 committed
4
import { reloadAuthorized } from '../utils/Authorized';
5 6 7 8 9 10 11 12 13

export default {
  namespace: 'login',

  state: {
    status: undefined,
  },

  effects: {
afc163's avatar
afc163 committed
14
    *login({ payload }, { call, put }) {
ddcat1115's avatar
ddcat1115 committed
15
      const response = yield call(fakeAccountLogin, payload);
16
      yield put({
17
        type: 'changeLoginStatus',
18 19
        payload: response,
      });
afc163's avatar
afc163 committed
20 21
      // Login successfully
      if (response.status === 'ok') {
陈帅's avatar
陈帅 committed
22
        reloadAuthorized();
23 24 25 26 27 28 29 30 31 32 33
        const urlParams = new URL(window.location.href);
        let redirect = urlParams.searchParams.get('redirect');
        if (redirect) {
          const redirectUrlParams = new URL(redirect);
          if (redirectUrlParams.origin === urlParams.origin) {
            redirect = redirect.substr(urlParams.origin.length);
          } else {
            window.location.href = redirect;
            return;
          }
        }
34
        yield put(routerRedux.replace(redirect || '/'));
afc163's avatar
afc163 committed
35
      }
36
    },
37 38 39 40 41 42 43 44 45 46 47 48
    *logout(_, { put }) {
      yield put({
        type: 'changeLoginStatus',
        payload: {
          status: false,
          currentAuthority: 'guest',
        },
      });
      reloadAuthorized();
      yield put(
        routerRedux.push(`/user/login?redirect=${encodeURIComponent(window.location.href)}`)
      );
ddcat1115's avatar
fix #52  
ddcat1115 committed
49
    },
50 51 52
  },

  reducers: {
53
    changeLoginStatus(state, { payload }) {
ddcat1115's avatar
ddcat1115 committed
54
      setAuthority(payload.currentAuthority);
55 56 57 58 59 60 61 62
      return {
        ...state,
        status: payload.status,
        type: payload.type,
      };
    },
  },
};