import React, { Component } from "react"; import CustomInput from "components/CustomInput.jsx"; import CustomMessages from "components/CustomMessages.jsx"; import io from "io"; import config from "config"; export default class Login extends Component { constructor() { super(); CustomInput.initialize(this); } login = () => { this.messages.clearErrorSuccess(); if (CustomInput.hasInvalidInput(this.input)) { this.messages.clearAddError("Some fields are incorrect. Please fix them before continuing."); } else { io.getSocket(socket => { socket.emit("users.login", this.input.email.getValue(), this.input.password.getValue(), res => { if (res.status === "success") { const date = new Date(); date.setTime(new Date().getTime() + (2 * 365 * 24 * 60 * 60 * 1000)); const secure = (config.cookie.secure) ? "secure=true; " : ""; let domain = ""; if (config.cookie.domain !== "localhost") domain = ` domain=${ config.cookie.domain };`; document.cookie = `${ config.cookie.sidName }=${ res.SID }; expires=${ date.toGMTString() }; ${ domain }${ secure }path=/`; location.reload(); // if we could avoid this, then that would be better } else { this.messages.addError(res.message); } }); }); } } githubRedirect() { localStorage.setItem("github_redirect", window.location.pathname); } render() { return (
By logging in/registering you agree to our Terms of Service and Privacy Policy.