user.js 4.76 KB
Newer Older
sunhongwei's avatar
sunhongwei committed
1 2
import {login, logout, getInfo, socialLogin, socialLogin2} from '@/api/login'
import { getToken, setToken, removeToken } from '@/utils/auth'
dcy's avatar
dcy committed
3 4
import {getNotReadInternalMessageTotal,} from '@/api/system/internalMessage'
import {taskTodoCount} from "@/api/bpm/task";
sunhongwei's avatar
sunhongwei committed
5 6 7 8 9 10 11 12

const user = {
  state: {
    token: getToken(),
    id: 0, // 用户编号
    name: '',
    avatar: '',
    roles: [],
dcy's avatar
dcy committed
13 14
    permissions: [],
    notMessage:0,
dcy's avatar
dcy committed
15
    matterNum:0
sunhongwei's avatar
sunhongwei committed
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
  },

  mutations: {
    SET_ID: (state, id) => {
      state.id = id
    },
    SET_TOKEN: (state, token) => {
      state.token = token
    },
    SET_NAME: (state, name) => {
      state.name = name
    },
    SET_AVATAR: (state, avatar) => {
      state.avatar = avatar
    },
    SET_ROLES: (state, roles) => {
      state.roles = roles
    },
    SET_PERMISSIONS: (state, permissions) => {
      state.permissions = permissions
dcy's avatar
dcy committed
36 37 38
    },
    NOt_MESSAGE:(state, notMessage)=>{
      state.notMessage = notMessage;
dcy's avatar
dcy committed
39 40 41
    },
    GET_MAATER:(state, matterNum) => {
      state.matterNum = matterNum;
sunhongwei's avatar
sunhongwei committed
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
    }
  },

  actions: {
    // 登录
    Login({ commit }, userInfo) {
      const username = userInfo.username.trim()
      const password = userInfo.password
      const code = userInfo.code
      const uuid = userInfo.uuid
      return new Promise((resolve, reject) => {
        login(username, password, code, uuid).then(res => {
          res = res.data;
          setToken(res.token)
          commit('SET_TOKEN', res.token)
          resolve()
        }).catch(error => {
          reject(error)
        })
      })
    },

    // 社交登录
    SocialLogin({ commit }, userInfo) {
      const code = userInfo.code
      const state = userInfo.state
      const type = userInfo.type
      return new Promise((resolve, reject) => {
        socialLogin(type, code, state).then(res => {
          res = res.data;
          setToken(res.token)
          commit('SET_TOKEN', res.token)
          resolve()
        }).catch(error => {
          reject(error)
        })
      })
    },

    // 社交登录
    SocialLogin2({ commit }, userInfo) {
      const code = userInfo.code
      const state = userInfo.state
      const type = userInfo.type
      const username = userInfo.username.trim()
      const password = userInfo.password
      return new Promise((resolve, reject) => {
        socialLogin2(type, code, state, username, password).then(res => {
          res = res.data;
          setToken(res.token)
          commit('SET_TOKEN', res.token)
          resolve()
        }).catch(error => {
          reject(error)
        })
      })
    },

    // 获取用户信息
    GetInfo({ commit, state }) {
      return new Promise((resolve, reject) => {
        getInfo().then(res => {
          // 没有 data 数据,赋予个默认值
          if (!res) {
            res = {
              data: {
                roles: [],
                user: {
                  id: '',
                  avatar: '',
dragondean@qq.com's avatar
dragondean@qq.com committed
112
                  nickname: ''
sunhongwei's avatar
sunhongwei committed
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
                }
              }
            }
          }

          res = res.data; // 读取 data 数据
          const user = res.user
          const avatar = user.avatar === "" ? require("@/assets/images/profile.jpg") : user.avatar;
          if (res.roles && res.roles.length > 0) { // 验证返回的roles是否是一个非空数组
            commit('SET_ROLES', res.roles)
            commit('SET_PERMISSIONS', res.permissions)
          } else {
            commit('SET_ROLES', ['ROLE_DEFAULT'])
          }
          commit('SET_ID', user.id)
dragondean@qq.com's avatar
dragondean@qq.com committed
128
          commit('SET_NAME', user.nickname)
sunhongwei's avatar
sunhongwei committed
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
          commit('SET_AVATAR', avatar)
          resolve(res)
        }).catch(error => {
          reject(error)
        })
      })
    },

    // 退出系统
    LogOut({ commit, state }) {
      return new Promise((resolve, reject) => {
        logout(state.token).then(() => {
          commit('SET_TOKEN', '')
          commit('SET_ROLES', [])
          commit('SET_PERMISSIONS', [])
          removeToken()
          resolve()
        }).catch(error => {
          reject(error)
        })
      })
    },

    // 前端 登出
    FedLogOut({ commit }) {
      return new Promise(resolve => {
        commit('SET_TOKEN', '')
        removeToken()
        resolve()
      })
dcy's avatar
dcy committed
159 160 161 162 163 164 165 166 167 168 169 170
    },
  //  获取未登录消息
    getNotMessage({commit}){
      return new Promise((resolve, reject) =>{
        getNotReadInternalMessageTotal().then((r)=>{
          commit('NOt_MESSAGE',r.data);
          resolve()
        }).catch(error =>{
          reject(error);
        })
      })
    },
dcy's avatar
dcy committed
171 172 173 174 175 176 177 178 179 180 181
  //获取待办事项
    getToDoList({commit}){
      return new Promise((resolve,reject) =>{
        taskTodoCount().then(r => {
          commit('GET_MAATER',r.data)
          resolve()
        }).catch(err => {
          reject(err)
        })
      })
    }
sunhongwei's avatar
sunhongwei committed
182 183 184 185
  }
}

export default user