blob: 25f5b550f41a52b805919c6c70f63489e65ca8f2 [file] [log] [blame]
<template>
<b-container>
<b-row align-v="start" align-h="center">
<b-col style="min-width: 300px; max-width: 100%" class="text-center">
<h2>Welcome to Custos</h2>
<p class="h2-sub">Sign up and start authenticating</p>
<div class="main-links">
<b-link href="http://airavata.apache.org/custos/">Learn more</b-link>
<b-link class="ml-5"
href="https://cwiki.apache.org/confluence/display/CUSTOS/Gateways+2020%3ACustos+Tutorial">
Get started
</b-link>
</div>
<img class="w-100" src="./../../assets/custos_home.png">
</b-col>
<b-col style="max-width: 600px;min-width: 300px;" align-h="center">
<b-card class="w-100 login-card">
<div class="p-2">
<h3 class="mb-2">(Recommended Option)</h3>
<b-button class="primary-btn w-100 text-center mt-2" variant="warning"
v-on:click="this.loadAuthURL">
Register or Login with your Institution Identity
</b-button>
</div>
</b-card>
<b-card class="w-100 mt-3 login-card">
<form v-on:submit.prevent="this.login" class="p-2">
<h3 class="mb-3">Login with Custos Explorer</h3>
<div class="p-2">
<label class="form-input-label" for="form-input-username">Username</label>
<b-form-input id="form-input-username" v-model="username"
placeholder="Username"></b-form-input>
</div>
<div class="p-2">
<label class="form-input-label" for="form-input-password">Password</label>
<b-form-input id="form-input-password" type="password" v-model="password"
placeholder="Password"></b-form-input>
</div>
<b-button class="primary-btn w-100 text-center mt-3" type="submit" variant="warning"
v-on:click="this.login" :disabled="this.loginDisabled">
Login
<b-spinner small v-if="this.loginDisabled"></b-spinner>
</b-button>
<div v-if="this.loginError" class="text-danger w-100 mt-4 text-left form-error-message">
Invalid Username or Password
</div>
<p class="mt-3 w-100 additional-links text-center">
Don't have an account?
<router-link to="/register">Create an account</router-link>
</p>
</form>
</b-card>
<p class="mt-3 w-100 additional-links">
How to user Custos?
<b-link href="https://cwiki.apache.org/confluence/display/CUSTOS/Gateways+2020%3ACustos+Tutorial">
Tutorial
</b-link>
| All about
<b-link href="http://airavata.apache.org/custos/">Custos</b-link>
</p>
</b-col>
</b-row>
</b-container>
</template>
<script>
import config from "@/config";
import store from "@/store";
export default {
name: 'Landing',
props: {
msg: String,
seen: Boolean,
todos: Array
},
data: function () {
return {
username: "",
password: "",
custosId: null,
custosSec: null,
loginDisabled: false,
redirectURI: null,
loginError: false
}
},
methods: {
async login() {
this.loginDisabled = true
if (this.username != null && this.username != '' && this.password != null && this.password != '') {
let params = {
client_id: this.custosId, client_sec: this.custosSec, username: this.username,
password: this.password, token_endpoint: this.tokenEndpoint
};
let data = {
client_id: this.custosId,
client_sec: this.custosSec
}
await this.$store.dispatch('identity/authenticateLocally', params)
let resp = await this.$store.dispatch('identity/isAuthenticated', data)
if (resp) {
await this.$router.push('workspace')
} else {
this.loginError = true
}
} else {
this.loginError = true
}
this.loginDisabled = false
},
async callDismissed() {
this.loginError = false
},
async loadAuthURL() {
let params = {client_id: this.custosId, redirect_uri: this.redirectURI};
await this.$store.dispatch('identity/fetchAuthorizationEndpoint', params)
window.location.href = this.$store.getters['identity/getAuthorizationEndpoint']
}
},
async mounted() {
this.custosId = config.value('clientId')
this.custosSec = config.value('clientSec')
this.redirectURI = config.value('redirectURI')
this.tokenEndpoint = "https://custos.scigap.org/apiserver/identity-management/v1.0.0/token"
let data = {
client_id: this.custosId,
client_sec: this.custosSec
}
if (await store.dispatch('identity/isAuthenticated', data) === true) {
await this.$router.push('workspace')
}
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
h2 {
font-family: Avenir;
font-size: 35px;
font-weight: 900;
color: #203a43;
}
.h2-sub {
font-family: Avenir-Roman;
font-size: 22px;
color: #203a43;
}
h3 {
font-family: Avenir;
font-size: 15px;
font-weight: 600;
text-align: center;
color: #203a43;
}
.h3-sub {
font-family: Avenir-Roman;
font-size: 20px;
text-align: left;
color: #203a43;
}
.form-input-label {
font-family: Avenir;
font-weight: 900;
text-align: left;
float: left;
color: #203a43;
}
.primary-btn {
background-color: #ea6a0a;
font-family: Avenir;
font-size: 14px;
font-weight: 900;
text-align: left;
color: #ffffff;
}
.primary-btn:hover {
background-color: #da640b;
}
.form-error-message {
font-family: Avenir;
font-size: 14px;
font-weight: 900;
text-align: left;
}
.login-card {
box-shadow: -1px 1px 6px 2px #ebebeb;
border-radius: 10px;
border: none;
}
.login-card .form-input-label {
font-weight: 500;
font-size: 15px;
}
.main-links a {
font-family: Avenir;
font-size: 20px;
font-weight: 600;
color: #ea6a0a;
}
.additional-links {
font-size: 13px;
}
.additional-links a {
color: #ea6a0a;
}
</style>