view client/src/store/user.js @ 1363:d0c4d17ee7ab

add missing authors * add missing authors to license headers after checking in /client/src/
author Fadi Abbud <fadi.abbud@intevation.de>
date Mon, 26 Nov 2018 12:18:55 +0100
parents ca33ad696594
children 2ea2a14f7b25
line wrap: on
line source

/* This is Free Software under GNU Affero General Public License v >= 3.0
 * without warranty, see README.md and license for details.
 *
 * SPDX-License-Identifier: AGPL-3.0-or-later
 * License-Filename: LICENSES/AGPL-3.0.txt
 *
 * Copyright (C) 2018 by via donau
 *   – Österreichische Wasserstraßen-Gesellschaft mbH
 * Software engineering by Intevation GmbH
 *
 * Author(s):
 * Thomas Junk <thomas.junk@intevation.de>
 * Markus Kottländer <markus@intevation.de>
 */

import { HTTP } from "../lib/http";

const init = () => {
  return {
    isAuthenticated: false,
    expires: null,
    roles: [],
    user: ""
  };
};

export default {
  init,
  namespaced: true,
  state: init(),
  getters: {
    isWaterwayAdmin: state => {
      return state.roles.includes("waterway_admin");
    },
    isSysAdmin: state => {
      return state.roles.includes("sys_admin");
    }
  },
  mutations: {
    authSuccess: (state, data) => {
      const { token, user, expires, roles } = data;
      localStorage.setItem("expires", expires);
      localStorage.setItem("roles", roles);
      localStorage.setItem("token", token);
      localStorage.setItem("user", user);
      state.expires = expires;
      state.roles = roles;
      state.user = user;
      state.authenticated = true;
    },
    clearAuth: () => {
      localStorage.removeItem("expires");
      localStorage.removeItem("roles");
      localStorage.removeItem("token");
      localStorage.removeItem("user");
    },
    setUser: (state, name) => {
      state.user = name;
    },
    setRoles: (state, roles) => {
      state.roles = roles;
    },
    setExpires: (state, expires) => {
      state.expires = expires;
    },
    setIsAuthenticate: state => {
      state.isAuthenticated = true;
    }
  },
  actions: {
    login({ commit }, user) {
      // using POST is a bit more secure than GET
      return new Promise((resolve, reject) => {
        HTTP.post("/login", user)
          .then(response => {
            commit("authSuccess", response.data);
            resolve(response);
          })
          .catch(error => {
            commit("reset", null, { root: true });
            commit("clearAuth");
            reject(error);
          });
      });
    }
  }
};