mirror of
https://github.com/BobbyWibowo/lolisafe.git
synced 2024-12-13 16:06:21 +00:00
8724d45ce0
* Refactored all instances of "An error occurred" by appending an exclamation mark. * Added the ability to add/remove files to/from album (API route: /api/albums/addfiles - https://s.fiery.me/dCAqLEQ9.mp4). * Added the ability to purge files associated with an album when deleting the said album (set "purge" key to true in the JSON POST request to /api/albums/delete). * Updated icons. * Some other refactors, probably.
65 lines
1.7 KiB
JavaScript
65 lines
1.7 KiB
JavaScript
/* global swal, axios */
|
|
|
|
const page = {}
|
|
|
|
page.do = dest => {
|
|
const user = document.getElementById('user').value
|
|
const pass = document.getElementById('pass').value
|
|
|
|
if (user === undefined || user === null || user === '') {
|
|
return swal('Error', 'You need to specify a username', 'error')
|
|
}
|
|
if (pass === undefined || pass === null || pass === '') {
|
|
return swal('Error', 'You need to specify a username', 'error')
|
|
}
|
|
|
|
axios.post('api/' + dest, {
|
|
username: user,
|
|
password: pass
|
|
})
|
|
.then(response => {
|
|
if (response.data.success === false) {
|
|
return swal('Error', response.data.description, 'error')
|
|
}
|
|
|
|
localStorage.token = response.data.token
|
|
window.location = 'dashboard'
|
|
})
|
|
.catch(error => {
|
|
console.log(error)
|
|
return swal('An error occurred!', 'There was an error with the request, please check the console for more information.', 'error')
|
|
})
|
|
}
|
|
|
|
page.onkeypress = function (event, element) {
|
|
event = event || window.event
|
|
if (!event) { return }
|
|
if (event.keyCode === 13 || event.which === 13) {
|
|
return this.do('login')
|
|
}
|
|
}
|
|
|
|
page.verify = () => {
|
|
page.token = localStorage.token
|
|
if (page.token === undefined) { return }
|
|
|
|
axios.post('api/tokens/verify', {
|
|
token: page.token
|
|
})
|
|
.then(response => {
|
|
if (response.data.success === false) {
|
|
return swal('Error', response.data.description, 'error')
|
|
}
|
|
|
|
window.location = 'dashboard'
|
|
})
|
|
.catch(error => {
|
|
console.log(error)
|
|
return swal('An error occurred!', 'There was an error with the request, please check the console for more information.', 'error')
|
|
})
|
|
}
|
|
|
|
window.onload = () => {
|
|
page.verify()
|
|
}
|