filesafe/public/js/dashboard.js

2092 lines
68 KiB
JavaScript
Raw Normal View History

/* global swal, axios, ClipboardJS, LazyLoad */
2018-10-09 19:52:41 +00:00
// keys for localStorage
const lsKeys = {
2018-10-09 19:52:41 +00:00
token: 'token',
viewType: {
uploads: 'viewTypeUploads',
uploadsAll: 'viewTypeUploadsAll'
2018-10-09 19:52:41 +00:00
},
selected: {
uploads: 'selectedUploads',
uploadsAll: 'selectedUploadsAll',
users: 'selectedUsers'
2018-10-09 19:52:41 +00:00
}
}
const page = {
// #page
dom: null,
// user token
token: localStorage[lsKeys.token],
2018-10-09 19:52:41 +00:00
// from api/tokens/verify
username: null,
permissions: null,
currentView: null,
views: {
// config of uploads view
uploads: {
type: localStorage[lsKeys.viewType.uploads],
2018-10-09 19:52:41 +00:00
album: null, // album's id
pageNum: null // page num
},
// config of uploads view (all)
uploadsAll: {
type: localStorage[lsKeys.viewType.uploadsAll],
uploader: null, // uploader's name
2018-10-09 19:52:41 +00:00
pageNum: null, // page num
all: true
2018-10-09 19:52:41 +00:00
},
// config of users view
users: {
pageNum: null
}
},
// id of selected items (shared across pages and will be synced with localStorage)
selected: {
uploads: [],
uploadsAll: [],
2018-10-09 19:52:41 +00:00
users: []
},
checkboxes: {
uploads: [],
uploadsAll: [],
2018-10-09 19:52:41 +00:00
users: []
},
lastSelected: {
upload: null,
uploadsAll: null,
2018-10-09 19:52:41 +00:00
user: null
},
// select album dom for dialogs/modals
selectAlbumContainer: null,
2018-10-09 19:52:41 +00:00
// cache for dialogs/modals
cache: {
uploads: {},
albums: {},
users: {}
},
clipboardJS: null,
lazyLoad: null,
imageExtensions: ['.webp', '.jpg', '.jpeg', '.bmp', '.gif', '.png'],
fadingIn: null
}
page.preparePage = function () {
if (!page.token) {
window.location = 'auth'
return
}
page.verifyToken(page.token, true)
}
page.verifyToken = function (token, reloadOnError) {
2018-10-09 19:52:41 +00:00
axios.post('api/tokens/verify', { token }).then(function (response) {
if (response.data.success === false)
2018-10-09 19:52:41 +00:00
return swal({
title: 'An error occurred!',
text: response.data.description,
icon: 'error'
}).then(function () {
if (!reloadOnError) return
localStorage.removeItem(lsKeys.token)
2018-10-09 19:52:41 +00:00
location.location = 'auth'
})
2018-10-09 19:52:41 +00:00
axios.defaults.headers.common.token = token
localStorage[lsKeys.token] = token
2018-10-09 19:52:41 +00:00
page.token = token
page.username = response.data.username
page.permissions = response.data.permissions
page.prepareDashboard()
}).catch(function (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.prepareDashboard = function () {
page.dom = document.getElementById('page')
page.dom.addEventListener('click', page.domClick, true)
// document.getElementById('auth').style.display = 'none'
document.getElementById('dashboard').style.display = 'block'
2018-10-09 19:52:41 +00:00
if (page.permissions.moderator) {
const itemManageUploads = document.getElementById('itemManageUploads')
itemManageUploads.removeAttribute('disabled')
itemManageUploads.addEventListener('click', function () {
page.setActiveMenu(this)
page.getUploads({ all: true })
})
}
if (page.permissions.admin) {
const itemServerStats = document.getElementById('itemServerStats')
itemServerStats.removeAttribute('disabled')
itemServerStats.addEventListener('click', function () {
page.setActiveMenu(this)
page.getServerStats()
})
2018-10-09 19:52:41 +00:00
const itemManageUsers = document.getElementById('itemManageUsers')
itemManageUsers.removeAttribute('disabled')
itemManageUsers.addEventListener('click', function () {
page.setActiveMenu(this)
page.getUsers()
})
}
document.getElementById('itemUploads').addEventListener('click', function () {
page.setActiveMenu(this)
2018-10-09 19:52:41 +00:00
page.getUploads({ all: false })
})
document.getElementById('itemDeleteByNames').addEventListener('click', function () {
page.setActiveMenu(this)
page.deleteByNames()
})
document.getElementById('itemManageGallery').addEventListener('click', function () {
page.setActiveMenu(this)
page.getAlbums()
})
document.getElementById('itemFileLength').addEventListener('click', function () {
page.setActiveMenu(this)
page.changeFileLength()
})
document.getElementById('itemTokens').addEventListener('click', function () {
page.setActiveMenu(this)
page.changeToken()
})
document.getElementById('itemPassword').addEventListener('click', function () {
page.setActiveMenu(this)
page.changePassword()
})
2018-10-09 19:52:41 +00:00
const logoutBtn = document.getElementById('itemLogout')
logoutBtn.addEventListener('click', function () {
page.logout()
})
2018-10-09 19:52:41 +00:00
logoutBtn.innerHTML = `Logout ( ${page.username} )`
page.getAlbumsSidebar()
if (typeof page.prepareShareX === 'function') page.prepareShareX()
}
page.logout = function () {
localStorage.removeItem(lsKeys.token)
location.reload('.')
}
page.getItemID = function (element) {
// This expects the item's parent to have the item's ID
2018-10-09 19:52:41 +00:00
let parent = element.parentNode
// If the element is part of a set of controls, use the container's parent instead
if (element.parentNode.classList.contains('controls')) parent = parent.parentNode
return parseInt(parent.dataset.id)
}
page.domClick = function (event) {
2018-10-09 19:52:41 +00:00
let element = event.target
if (!element) return
// If the clicked element is an icon, delegate event to its A parent; hacky
if (element.tagName === 'I' && element.parentNode.tagName === 'SPAN') element = element.parentNode
if (element.tagName === 'SPAN' && element.parentNode.tagName === 'A') element = element.parentNode
// Skip elements that have no action data
if (!element.dataset || !element.dataset.action) return
// Skip disabled elements
if (element.hasAttribute('disabled')) return
event.stopPropagation() // maybe necessary
2018-10-09 19:52:41 +00:00
const id = page.getItemID(element)
const action = element.dataset.action
switch (action) {
case 'view-list':
2018-10-09 19:52:41 +00:00
return page.setUploadsView('list', element)
case 'view-thumbs':
2018-10-09 19:52:41 +00:00
return page.setUploadsView('thumbs', element)
case 'clear-selection':
return page.clearSelection()
case 'add-selected-files-to-album':
return page.addSelectedFilesToAlbum()
case 'bulk-delete':
return page.deleteSelectedFiles()
2018-10-09 19:52:41 +00:00
case 'select':
return page.select(element, event)
case 'add-to-album':
return page.addSingleFileToAlbum(id)
case 'delete-file':
return page.deleteFile(id)
2018-10-09 19:52:41 +00:00
case 'select-all':
return page.selectAll(element)
case 'display-thumbnail':
return page.displayThumbnail(id)
case 'delete-file-by-names':
return page.deleteFileByNames()
case 'submit-album':
return page.submitAlbum(element)
case 'edit-album':
return page.editAlbum(id)
case 'delete-album':
return page.deleteAlbum(id)
case 'get-new-token':
return page.getNewToken(element)
2018-10-09 19:52:41 +00:00
case 'edit-user':
return page.editUser(id)
case 'disable-user':
return page.disableUser(id)
case 'filter-by-uploader':
return page.filterByUploader(element)
case 'view-user-uploads':
return page.viewUserUploads(id)
case 'page-prev':
case 'page-next':
case 'page-goto':
case 'jump-to-page':
return page.switchPage(action, element)
}
}
page.isLoading = function (element, state) {
if (!element) return
if (state) return element.classList.add('is-loading')
element.classList.remove('is-loading')
}
page.fadeIn = function (content) {
if (page.fadingIn) {
clearTimeout(page.fadingIn)
page.dom.classList.remove('fade-in')
}
page.dom.classList.add('fade-in')
page.fadingIn = setTimeout(function () {
page.dom.classList.remove('fade-in')
}, 500)
}
page.switchPage = function (action, element) {
const views = {}
let func = null
if (page.currentView === 'users') {
func = page.getUsers
} else {
func = page.getUploads
views.album = page.views[page.currentView].album
views.all = page.views[page.currentView].all
views.uploader = page.views[page.currentView].uploader
}
switch (action) {
case 'page-prev':
views.pageNum = page.views[page.currentView].pageNum - 1
if (views.pageNum < 0)
return swal('An error occurred!', 'This is already the first page.', 'error')
return func(views, element)
case 'page-next':
views.pageNum = page.views[page.currentView].pageNum + 1
return func(views, element)
case 'page-goto':
views.pageNum = parseInt(element.dataset.goto)
return func(views, element)
case 'jump-to-page':
const jumpToPage = parseInt(document.getElementById('jumpToPage').value)
views.pageNum = isNaN(jumpToPage) ? 0 : (jumpToPage - 1)
if (views.pageNum < 0) views.pageNum = 0
return func(views, element)
}
}
page.getUploads = function ({ pageNum, album, all, uploader } = {}, element) {
if (element) page.isLoading(element, true)
if ((all || uploader) && !page.permissions.moderator)
2018-10-09 19:52:41 +00:00
return swal('An error occurred!', 'You can not do this!', 'error')
if (typeof pageNum !== 'number' || pageNum < 0)
pageNum = 0
let url = `api/uploads/${pageNum}`
if (typeof album === 'string')
url = `api/album/${album}/${pageNum}`
const headers = {}
if (all) headers.all = '1'
if (uploader) headers.uploader = uploader
axios.get(url, { headers }).then(function (response) {
if (response.data.success === false)
2018-10-09 19:52:41 +00:00
if (response.data.description === 'No token provided') {
return page.verifyToken(page.token)
} else {
return swal('An error occurred!', response.data.description, 'error')
}
2018-10-09 19:52:41 +00:00
if (pageNum && (response.data.files.length === 0)) {
// Only remove loading class here, since beyond this the entire page will be replaced anyways
if (element) page.isLoading(element, false)
return swal('An error occurred!', `There are no more uploads to populate page ${pageNum + 1}.`, 'error')
2018-10-09 19:52:41 +00:00
}
page.currentView = all ? 'uploadsAll' : 'uploads'
2018-10-09 19:52:41 +00:00
page.cache.uploads = {}
const pagination = page.paginate(response.data.count, 25, pageNum)
2018-10-09 19:52:41 +00:00
let filter = ''
if (all)
filter = `
<div class="column is-one-quarter">
<div class="field has-addons">
<div class="control is-expanded">
<input id="uploader" class="input is-small" type="text" placeholder="Username" value="${uploader || ''}">
</div>
<div class="control">
<a class="button is-small is-breeze" title="Filter by uploader" data-action="filter-by-uploader">
<span class="icon">
<i class="icon-filter"></i>
</span>
</a>
</div>
</div>
</div>
`
const extraControls = `
<div class="columns" style="margin-top: 10px">
${filter}
<div class="column is-hidden-mobile"></div>
<div class="column is-one-quarter">
<div class="field has-addons">
<div class="control is-expanded">
<input id="jumpToPage" class="input is-small" type="text" value="${pageNum + 1}">
</div>
<div class="control">
<a class="button is-small is-breeze" title="Jump to page" data-action="jump-to-page">
<span class="icon">
<i class="icon-paper-plane-empty"></i>
</span>
</a>
</div>
</div>
</div>
</div>
`
2018-10-09 19:52:41 +00:00
const controls = `
<div class="columns">
<div class="column is-hidden-mobile"></div>
<div class="column" style="text-align: center">
<a class="button is-small is-danger" title="List view" data-action="view-list">
<span class="icon">
<i class="icon-th-list"></i>
</span>
</a>
<a class="button is-small is-danger" title="Thumbs view" data-action="view-thumbs">
<span class="icon">
<i class="icon-th-large"></i>
</span>
</a>
</div>
<div class="column" style="text-align: right">
<a class="button is-small is-info" title="Clear selection" data-action="clear-selection">
<span class="icon">
<i class="icon-cancel"></i>
</span>
</a>
${all ? '' : `
<a class="button is-small is-warning" title="Add selected uploads to album" data-action="add-selected-files-to-album">
<span class="icon">
<i class="icon-plus"></i>
</span>
</a>`}
<a class="button is-small is-danger" title="Bulk delete" data-action="bulk-delete">
<span class="icon">
<i class="icon-trash"></i>
</span>
<span>Bulk delete</span>
</a>
</div>
</div>
`
let allSelected = true
if (page.views[page.currentView].type === 'thumbs') {
2018-10-09 19:52:41 +00:00
page.dom.innerHTML = `
${pagination}
${extraControls}
2018-10-09 19:52:41 +00:00
${controls}
<div id="table" class="columns is-multiline is-mobile is-centered">
</div>
<hr>
2018-10-09 19:52:41 +00:00
${pagination}
`
page.fadeIn()
2018-10-09 19:52:41 +00:00
const table = document.getElementById('table')
for (let i = 0; i < response.data.files.length; i++) {
const upload = response.data.files[i]
const selected = page.selected[page.currentView].includes(upload.id)
if (!selected && allSelected) allSelected = false
2018-10-09 19:52:41 +00:00
page.cache.uploads[upload.id] = {
name: upload.name,
thumb: upload.thumb,
original: upload.file
}
2018-10-09 19:52:41 +00:00
// Prettify
upload.prettyBytes = page.getPrettyBytes(parseInt(upload.size))
upload.prettyDate = page.getPrettyDate(new Date(upload.timestamp * 1000))
let displayAlbumOrUser = upload.album
if (all) displayAlbumOrUser = upload.username || ''
2018-10-09 19:52:41 +00:00
const div = document.createElement('div')
div.className = 'image-container column is-narrow'
div.dataset.id = upload.id
if (upload.thumb !== undefined)
2018-10-09 19:52:41 +00:00
div.innerHTML = `<a class="image" href="${upload.file}" target="_blank" rel="noopener"><img alt="${upload.name}" data-src="${upload.thumb}"/></a>`
else
2018-10-09 19:52:41 +00:00
div.innerHTML = `<a class="image" href="${upload.file}" target="_blank" rel="noopener"><h1 class="title">${upload.extname || 'N/A'}</h1></a>`
div.innerHTML += `
<input type="checkbox" class="checkbox" title="Select this file" data-action="select"${selected ? ' checked' : ''}>
<div class="controls">
<a class="button is-small is-primary" title="View thumbnail" data-action="display-thumbnail"${upload.thumb ? '' : ' disabled'}>
<span class="icon">
<i class="icon-picture-1"></i>
</span>
</a>
2018-10-09 19:52:41 +00:00
<a class="button is-small is-info clipboard-js" title="Copy link to clipboard" data-clipboard-text="${upload.file}">
<span class="icon">
<i class="icon-clipboard-1"></i>
</span>
</a>
<a class="button is-small is-warning" title="Add to album" data-action="add-to-album">
<span class="icon">
<i class="icon-plus"></i>
</span>
</a>
<a class="button is-small is-danger" title="Delete file" data-action="delete-file">
<span class="icon">
<i class="icon-trash"></i>
</span>
</a>
</div>
<div class="details">
<p><span class="name" title="${upload.file}">${upload.name}</span></p>
<p>${displayAlbumOrUser ? `<span>${displayAlbumOrUser}</span> ` : ''}${upload.prettyBytes}</p>
</div>
`
table.appendChild(div)
page.checkboxes[page.currentView] = Array.from(table.querySelectorAll('.checkbox[data-action="select"]'))
2018-10-09 19:52:41 +00:00
page.lazyLoad.update()
}
2018-10-09 19:52:41 +00:00
} else {
let albumOrUser = 'Album'
if (all) albumOrUser = 'User'
2018-10-09 19:52:41 +00:00
page.dom.innerHTML = `
${pagination}
${extraControls}
2018-10-09 19:52:41 +00:00
${controls}
<div class="table-container">
<table class="table is-narrow is-fullwidth is-hoverable">
<thead>
<tr>
<th><input id="selectAll" class="checkbox" type="checkbox" title="Select all uploads" data-action="select-all"></th>
<th style="width: 25%">File</th>
<th>${albumOrUser}</th>
<th>Size</th>
<th>Date</th>
<th></th>
</tr>
</thead>
<tbody id="table">
</tbody>
</table>
</div>
<hr>
${pagination}
`
page.fadeIn()
2018-10-09 19:52:41 +00:00
const table = document.getElementById('table')
for (let i = 0; i < response.data.files.length; i++) {
const upload = response.data.files[i]
const selected = page.selected[page.currentView].includes(upload.id)
if (!selected && allSelected) allSelected = false
2018-10-09 19:52:41 +00:00
page.cache.uploads[upload.id] = {
name: upload.name,
thumb: upload.thumb,
original: upload.file
2018-10-09 19:52:41 +00:00
}
2018-10-09 19:52:41 +00:00
// Prettify
upload.prettyBytes = page.getPrettyBytes(parseInt(upload.size))
upload.prettyDate = page.getPrettyDate(new Date(upload.timestamp * 1000))
let displayAlbumOrUser = upload.album
if (all) displayAlbumOrUser = upload.username || ''
2018-10-09 19:52:41 +00:00
const tr = document.createElement('tr')
tr.dataset.id = upload.id
tr.innerHTML = `
<td class="controls"><input type="checkbox" class="checkbox" title="Select this file" data-action="select"${selected ? ' checked' : ''}></td>
2018-10-09 19:52:41 +00:00
<th><a href="${upload.file}" target="_blank" rel="noopener" title="${upload.file}">${upload.name}</a></th>
<th>${displayAlbumOrUser}</th>
<td>${upload.prettyBytes}</td>
<td>${upload.prettyDate}</td>
<td class="controls" style="text-align: right">
<a class="button is-small is-primary" title="View thumbnail" data-action="display-thumbnail"${upload.thumb ? '' : ' disabled'}>
<span class="icon">
<i class="icon-picture-1"></i>
</span>
</a>
<a class="button is-small is-info clipboard-js" title="Copy link to clipboard" data-clipboard-text="${upload.file}">
<span class="icon">
<i class="icon-clipboard-1"></i>
</span>
</a>
${all ? '' : `
<a class="button is-small is-warning" title="Add to album" data-action="add-to-album">
<span class="icon">
<i class="icon-plus"></i>
</span>
</a>`}
<a class="button is-small is-danger" title="Delete file" data-action="delete-file">
<span class="icon">
<i class="icon-trash"></i>
</span>
</a>
</td>
`
table.appendChild(tr)
page.checkboxes[page.currentView] = Array.from(table.querySelectorAll('.checkbox[data-action="select"]'))
}
2018-10-09 19:52:41 +00:00
}
2018-10-09 19:52:41 +00:00
if (allSelected && response.data.files.length) {
const selectAll = document.getElementById('selectAll')
if (selectAll) selectAll.checked = true
2018-10-09 19:52:41 +00:00
}
if (page.currentView === 'uploads') page.views.uploads.album = album
if (page.currentView === 'uploadsAll') page.views.uploadsAll.uploader = uploader
page.views[page.currentView].pageNum = response.data.files.length ? pageNum : 0
2018-10-09 19:52:41 +00:00
}).catch(function (error) {
if (element) page.isLoading(element, false)
2018-10-09 19:52:41 +00:00
console.log(error)
return swal('An error occurred!', 'There was an error with the request, please check the console for more information.', 'error')
})
}
2018-10-09 19:52:41 +00:00
page.setUploadsView = function (view, element) {
localStorage[lsKeys.viewType[page.currentView]] = view
page.views[page.currentView].type = view
page.getUploads(page.views[page.currentView], element)
}
page.displayThumbnail = function (id) {
2018-10-09 19:52:41 +00:00
const file = page.cache.uploads[id]
if (!file.thumb) return
const div = document.createElement('div')
div.innerHTML = `
<div class="field has-text-centered">
<label class="label">${file.name}</label>
<div class="controls swal-display-thumb-container">
<img id="swalThumb" src="${file.thumb}">
</div>
</div>
`
if (file.original) {
div.innerHTML += `
<div class="field has-text-centered">
<div class="controls">
<a id="swalOriginal" type="button" class="button is-breeze" data-original="${file.original}">Load original</a>
</div>
</div>
`
div.querySelector('#swalOriginal').addEventListener('click', function () {
const button = this
const original = button.dataset.original
button.classList.add('is-loading')
const thumb = div.querySelector('#swalThumb')
const exec = /.[\w]+(\?|$)/.exec(original)
const isimage = exec && exec[0] && page.imageExtensions.includes(exec[0].toLowerCase())
if (isimage) {
thumb.src = file.original
2018-10-19 15:10:30 +00:00
thumb.onload = function () {
button.style.display = 'none'
document.body.querySelector('.swal-overlay .swal-modal:not(.is-expanded)').classList.add('is-expanded')
}
thumb.onerror = function () {
button.className = 'button is-danger'
button.innerHTML = 'Unable to load original'
}
} else {
thumb.style.display = 'none'
const video = document.createElement('video')
video.id = 'swalVideo'
video.controls = true
video.src = file.original
thumb.insertAdjacentElement('afterend', video)
2018-10-19 15:10:30 +00:00
button.style.display = 'none'
2018-10-19 15:10:30 +00:00
document.body.querySelector('.swal-overlay .swal-modal:not(.is-expanded)').classList.add('is-expanded')
}
})
}
return swal({
content: div,
buttons: false
}).then(function () {
const video = div.querySelector('#swalVideo')
if (video) video.remove()
// Restore modal size
document.body.querySelector('.swal-overlay .swal-modal.is-expanded').classList.remove('is-expanded')
})
}
2018-10-09 19:52:41 +00:00
page.selectAll = function (element) {
2019-01-05 22:53:08 +00:00
const checkboxes = page.checkboxes[page.currentView]
const selected = page.selected[page.currentView]
2018-10-09 19:52:41 +00:00
for (let i = 0; i < checkboxes.length; i++) {
const id = page.getItemID(checkboxes[i])
if (isNaN(id)) continue
if (checkboxes[i].checked !== element.checked) {
checkboxes[i].checked = element.checked
if (checkboxes[i].checked)
2018-10-09 19:52:41 +00:00
selected.push(id)
else
2018-10-09 19:52:41 +00:00
selected.splice(selected.indexOf(id), 1)
}
}
2019-01-05 22:53:08 +00:00
localStorage[lsKeys.selected[page.currentView]] = JSON.stringify(selected)
page.selected[page.currentView] = selected
2018-10-09 19:52:41 +00:00
element.title = element.checked ? 'Unselect all uploads' : 'Select all uploads'
}
page.selectInBetween = function (element, lastElement) {
if (!element || !lastElement) return
if (element === lastElement) return
2019-01-05 22:53:08 +00:00
const checkboxes = page.checkboxes[page.currentView]
if (!checkboxes || !checkboxes.length) return
2018-10-09 19:52:41 +00:00
const thisIndex = checkboxes.indexOf(element)
const lastIndex = checkboxes.indexOf(lastElement)
const distance = thisIndex - lastIndex
if (distance >= -1 && distance <= 1) return
for (let i = 0; i < checkboxes.length; i++)
if ((thisIndex > lastIndex && i > lastIndex && i < thisIndex) ||
(thisIndex < lastIndex && i > thisIndex && i < lastIndex)) {
2018-10-09 19:52:41 +00:00
checkboxes[i].checked = true
2019-01-05 22:53:08 +00:00
page.selected[page.currentView].push(page.getItemID(checkboxes[i]))
}
2019-01-05 22:53:08 +00:00
localStorage[lsKeys.selected[page.currentView]] = JSON.stringify(page.selected[page.currentView])
page.checkboxes[page.currentView] = checkboxes
}
2018-10-09 19:52:41 +00:00
page.select = function (element, event) {
2019-01-05 22:53:08 +00:00
const lastSelected = page.lastSelected[page.currentView]
if (event.shiftKey && lastSelected)
2018-10-09 19:52:41 +00:00
page.selectInBetween(element, lastSelected)
else
2019-01-05 22:53:08 +00:00
page.lastSelected[page.currentView] = element
2018-10-09 19:52:41 +00:00
const id = page.getItemID(element)
if (isNaN(id)) return
2019-01-05 22:53:08 +00:00
const selected = page.selected[page.currentView]
if (!selected.includes(id) && element.checked)
2018-10-09 19:52:41 +00:00
selected.push(id)
else if (selected.includes(id) && !element.checked)
2018-10-09 19:52:41 +00:00
selected.splice(selected.indexOf(id), 1)
2019-01-05 22:53:08 +00:00
localStorage[lsKeys.selected[page.currentView]] = JSON.stringify(selected)
page.selected[page.currentView] = selected
}
page.clearSelection = function () {
2019-01-05 22:53:08 +00:00
const selected = page.selected[page.currentView]
const type = page.currentView === 'users' ? 'users' : 'uploads'
2018-10-09 19:52:41 +00:00
const count = selected.length
if (!count)
return swal('An error occurred!', `You have not selected any ${type}.`, 'error')
const suffix = count === 1 ? type.substring(0, type.length - 1) : type
return swal({
title: 'Are you sure?',
2018-10-09 19:52:41 +00:00
text: `You are going to unselect ${count} ${suffix}.`,
buttons: true
2018-10-09 19:52:41 +00:00
}).then(function (proceed) {
if (!proceed) return
2019-01-05 22:53:08 +00:00
const checkboxes = page.checkboxes[page.currentView]
for (let i = 0; i < checkboxes.length; i++)
if (checkboxes[i].checked)
2018-10-09 19:52:41 +00:00
checkboxes[i].checked = false
2019-01-05 22:53:08 +00:00
localStorage[lsKeys.selected[page.currentView]] = '[]'
page.selected[page.currentView] = []
2018-10-09 19:52:41 +00:00
const selectAll = document.getElementById('selectAll')
if (selectAll) selectAll.checked = false
2018-10-09 19:52:41 +00:00
return swal('Cleared selection!', `Unselected ${count} ${suffix}.`, 'success')
})
}
page.filterByUploader = function (element) {
const uploader = document.getElementById('uploader').value
page.getUploads({ all: true, uploader }, element)
}
page.viewUserUploads = function (id) {
const user = page.cache.users[id]
if (!user) return
page.setActiveMenu(document.getElementById('itemManageUploads'))
page.getUploads({ all: true, uploader: user.username })
}
page.deleteFile = function (id) {
2018-10-09 19:52:41 +00:00
// TODO: Share function with bulk delete, just like 'add selected uploads to album' and 'add single file to album'
swal({
title: 'Are you sure?',
text: 'You won\'t be able to recover the file!',
icon: 'warning',
dangerMode: true,
buttons: {
cancel: true,
confirm: {
text: 'Yes, delete it!',
closeModal: false
}
}
2018-10-09 19:52:41 +00:00
}).then(function (proceed) {
if (!proceed) return
2018-10-09 19:52:41 +00:00
axios.post('api/upload/delete', { id }).then(function (response) {
if (!response) return
2018-10-09 19:52:41 +00:00
if (response.data.success === false)
2018-10-09 19:52:41 +00:00
if (response.data.description === 'No token provided') {
return page.verifyToken(page.token)
} else {
return swal('An error occurred!', response.data.description, 'error')
}
swal('Deleted!', 'The file has been deleted.', 'success')
2019-01-05 22:53:08 +00:00
page.getUploads(page.views[page.currentView])
2018-10-09 19:52:41 +00:00
}).catch(function (error) {
console.log(error)
return swal('An error occurred!', 'There was an error with the request, please check the console for more information.', 'error')
})
2018-10-09 19:52:41 +00:00
})
}
page.deleteSelectedFiles = function () {
const count = page.selected[page.currentView].length
if (!count)
2018-10-09 19:52:41 +00:00
return swal('An error occurred!', 'You have not selected any uploads.', 'error')
const suffix = `upload${count === 1 ? '' : 's'}`
let text = `You won't be able to recover ${count} ${suffix}!`
if (page.currentView === 'uploadsAll')
text += '\nBe aware, you may be nuking uploads by other users!'
swal({
title: 'Are you sure?',
text,
icon: 'warning',
dangerMode: true,
buttons: {
cancel: true,
confirm: {
2018-10-09 19:52:41 +00:00
text: `Yes, nuke the ${suffix}!`,
closeModal: false
}
}
2018-10-09 19:52:41 +00:00
}).then(function (proceed) {
if (!proceed) return
2018-10-09 19:52:41 +00:00
axios.post('api/upload/bulkdelete', {
field: 'id',
values: page.selected[page.currentView]
2018-10-09 19:52:41 +00:00
}).then(function (bulkdelete) {
if (!bulkdelete) return
2018-10-09 19:52:41 +00:00
if (bulkdelete.data.success === false)
2018-10-09 19:52:41 +00:00
if (bulkdelete.data.description === 'No token provided') {
return page.verifyToken(page.token)
} else {
return swal('An error occurred!', bulkdelete.data.description, 'error')
}
let deleted = count
if (bulkdelete.data.failed && bulkdelete.data.failed.length) {
deleted -= bulkdelete.data.failed.length
page.selected[page.currentView] = page.selected[page.currentView].filter(function (id) {
2018-10-09 19:52:41 +00:00
return bulkdelete.data.failed.includes(id)
})
} else {
page.selected[page.currentView] = []
}
2018-10-09 19:52:41 +00:00
2019-01-05 22:53:08 +00:00
localStorage[lsKeys.selected[page.currentView]] = JSON.stringify(page.selected[page.currentView])
2018-10-09 19:52:41 +00:00
swal('Deleted!', `${deleted} file${deleted === 1 ? ' has' : 's have'} been deleted.`, 'success')
2019-01-05 22:53:08 +00:00
return page.getUploads(page.views[page.currentView])
2018-10-09 19:52:41 +00:00
}).catch(function (error) {
console.log(error)
swal('An error occurred!', 'There was an error with the request, please check the console for more information.', 'error')
})
2018-10-09 19:52:41 +00:00
})
}
page.deleteByNames = function () {
2018-10-09 19:52:41 +00:00
page.dom.innerHTML = `
<h2 class="subtitle">Delete by names</h2>
<div class="field">
<label class="label">File names:</label>
<div class="control">
<textarea id="names" class="textarea"></textarea>
</div>
<p class="help">Separate each entry with a new line.</p>
</div>
<div class="field">
<div class="control">
<a class="button is-danger is-fullwidth" data-action="delete-file-by-names">
<span class="icon">
<i class="icon-trash"></i>
</span>
<span>Bulk delete</span>
</a>
</div>
</div>
`
page.fadeIn()
}
page.deleteFileByNames = function () {
2018-10-09 19:52:41 +00:00
const names = document.getElementById('names').value
.split(/\r?\n/)
.filter(function (n) {
return n.trim().length
})
2018-10-09 19:52:41 +00:00
const count = names.length
if (!count)
return swal('An error occurred!', 'You have not entered any file names.', 'error')
2018-10-09 19:52:41 +00:00
const suffix = `file${count === 1 ? '' : 's'}`
swal({
title: 'Are you sure?',
2018-10-09 19:52:41 +00:00
text: `You won't be able to recover ${count} ${suffix}!`,
icon: 'warning',
dangerMode: true,
buttons: {
cancel: true,
confirm: {
2018-10-09 19:52:41 +00:00
text: `Yes, nuke the ${suffix}!`,
closeModal: false
}
}
2018-10-09 19:52:41 +00:00
}).then(function (proceed) {
if (!proceed) return
2018-10-09 19:52:41 +00:00
axios.post('api/upload/bulkdelete', {
field: 'name',
values: names
}).then(function (bulkdelete) {
if (!bulkdelete) return
2018-10-09 19:52:41 +00:00
if (bulkdelete.data.success === false)
2018-10-09 19:52:41 +00:00
if (bulkdelete.data.description === 'No token provided') {
return page.verifyToken(page.token)
} else {
return swal('An error occurred!', bulkdelete.data.description, 'error')
}
let deleted = count
if (bulkdelete.data.failed && bulkdelete.data.failed.length)
2018-10-09 19:52:41 +00:00
deleted -= bulkdelete.data.failed.length
document.getElementById('names').value = bulkdelete.data.failed.join('\n')
swal('Deleted!', `${deleted} file${deleted === 1 ? ' has' : 's have'} been deleted.`, 'success')
}).catch(function (error) {
console.log(error)
swal('An error occurred!', 'There was an error with the request, please check the console for more information.', 'error')
})
2018-10-09 19:52:41 +00:00
})
}
page.addSelectedFilesToAlbum = function () {
if (page.currentView !== 'uploads')
return
const count = page.selected[page.currentView].length
if (!count)
2018-10-09 19:52:41 +00:00
return swal('An error occurred!', 'You have not selected any uploads.', 'error')
page.addFilesToAlbum(page.selected[page.currentView], function (failed) {
if (!failed) return
if (failed.length)
page.selected[page.currentView] = page.selected[page.currentView].filter(function (id) {
return failed.includes(id)
})
else
page.selected[page.currentView] = []
2019-01-05 22:53:08 +00:00
localStorage[lsKeys.selected[page.currentView]] = JSON.stringify(page.selected[page.currentView])
page.getUploads(page.views[page.currentView])
})
}
page.addSingleFileToAlbum = function (id) {
page.addFilesToAlbum([id], function (failed) {
if (!failed) return
2019-01-05 22:53:08 +00:00
page.getUploads(page.views[page.currentView])
})
}
page.addFilesToAlbum = function (ids, callback) {
2018-10-09 19:52:41 +00:00
const count = ids.length
2018-10-09 19:52:41 +00:00
const content = document.createElement('div')
content.innerHTML = `
<div class="field has-text-centered">
<p>You are about to add <b>${count}</b> file${count === 1 ? '' : 's'} to an album.</p>
<p><b>If a file is already in an album, it will be moved.</b></p>
</div>
2018-10-09 19:52:41 +00:00
<div class="field">
<div class="control">
<div class="select is-fullwidth">
<select id="swalAlbum" disabled>
2018-10-09 19:52:41 +00:00
<option value="-1">Remove from album</option>
<option value="" selected disabled>Fetching albums list\u2026</option>
</select>
</div>
</div>
2018-10-09 19:52:41 +00:00
</div>
`
swal({
icon: 'warning',
2018-10-09 19:52:41 +00:00
content,
buttons: {
cancel: true,
confirm: {
text: 'OK',
closeModal: false
}
}
}).then(function (choose) {
if (!choose) return
const albumid = parseInt(document.getElementById('swalAlbum').value)
if (isNaN(albumid))
return swal('An error occurred!', 'You did not choose an album.', 'error')
axios.post('api/albums/addfiles', {
2018-10-09 19:52:41 +00:00
ids,
albumid
}).then(function (add) {
if (!add) return
if (add.data.success === false) {
if (add.data.description === 'No token provided')
page.verifyToken(page.token)
else
swal('An error occurred!', add.data.description, 'error')
return
}
2018-10-09 19:52:41 +00:00
let added = ids.length
if (add.data.failed && add.data.failed.length)
added -= add.data.failed.length
2018-10-09 19:52:41 +00:00
const suffix = `file${ids.length === 1 ? '' : 's'}`
if (!added)
2018-10-09 19:52:41 +00:00
return swal('An error occurred!', `Could not add the ${suffix} to the album.`, 'error')
2018-10-09 19:52:41 +00:00
swal('Woohoo!', `Successfully ${albumid < 0 ? 'removed' : 'added'} ${added} ${suffix} ${albumid < 0 ? 'from' : 'to'} the album.`, 'success')
return callback(add.data.failed)
}).catch(function (error) {
console.log(error)
return swal('An error occurred!', 'There was an error with the request, please check the console for more information.', 'error')
})
}).catch(function (error) {
console.log(error)
return swal('An error occurred!', 'There was an error with the request, please check the console for more information.', 'error')
})
// Get albums list then update content of swal
axios.get('api/albums').then(function (list) {
if (list.data.success === false) {
if (list.data.description === 'No token provided')
page.verifyToken(page.token)
else
swal('An error occurred!', list.data.description, 'error')
return
}
const select = document.getElementById('swalAlbum')
// If the prompt was replaced, the container would be missing
if (!select) return
select.innerHTML += list.data.albums
.map(function (album) {
2018-10-09 19:52:41 +00:00
return `<option value="${album.id}">${album.name}</option>`
})
.join('\n')
select.getElementsByTagName('option')[1].innerHTML = 'Choose an album'
select.removeAttribute('disabled')
}).catch(function (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.getAlbums = function () {
2018-10-09 19:52:41 +00:00
axios.get('api/albums').then(function (response) {
if (!response) return
if (response.data.success === false)
2018-10-09 19:52:41 +00:00
if (response.data.description === 'No token provided') {
return page.verifyToken(page.token)
} else {
return swal('An error occurred!', response.data.description, 'error')
}
2018-10-09 19:52:41 +00:00
page.cache.albums = {}
page.dom.innerHTML = `
<h2 class="subtitle">Create new album</h2>
<div class="field">
<div class="control">
<input id="albumName" class="input" type="text" placeholder="Name">
</div>
</div>
<div class="field">
<div class="control">
<textarea id="albumDescription" class="textarea" placeholder="Description" rows="1"></textarea>
</div>
</div>
2018-10-09 19:52:41 +00:00
<div class="field">
<div class="control">
<a id="submitAlbum" class="button is-breeze is-fullwidth" data-action="submit-album">
<span class="icon">
<i class="icon-paper-plane-empty"></i>
</span>
<span>Create</span>
</a>
</div>
</div>
<hr>
<h2 class="subtitle">List of albums</h2>
<div class="table-container">
<table class="table is-fullwidth is-hoverable">
<thead>
<tr>
<th>ID</th>
<th>Name</th>
<th>Files</th>
<th>Created at</th>
<th>Public link</th>
<th></th>
</tr>
</thead>
<tbody id="table">
</tbody>
</table>
</div>
`
page.fadeIn()
2018-10-09 19:52:41 +00:00
const homeDomain = response.data.homeDomain
const table = document.getElementById('table')
for (let i = 0; i < response.data.albums.length; i++) {
const album = response.data.albums[i]
const albumUrl = `${homeDomain}/a/${album.identifier}`
// Prettify
album.prettyDate = page.getPrettyDate(new Date(album.timestamp * 1000))
page.cache.albums[album.id] = {
name: album.name,
download: album.download,
public: album.public,
description: album.description
}
2018-10-09 19:52:41 +00:00
const tr = document.createElement('tr')
tr.innerHTML = `
<th>${album.id}</th>
<th>${album.name}</th>
<th>${album.files}</th>
<td>${album.prettyDate}</td>
<td><a ${album.public ? `href="${albumUrl}"` : 'class="is-linethrough"'} target="_blank" rel="noopener">${albumUrl}</a></td>
<td style="text-align: right" data-id="${album.id}">
<a class="button is-small is-primary" title="Edit album" data-action="edit-album">
<span class="icon is-small">
<i class="icon-pencil-1"></i>
</span>
</a>
<a class="button is-small is-info clipboard-js" title="Copy link to clipboard" ${album.public ? `data-clipboard-text="${albumUrl}"` : 'disabled'}>
<span class="icon is-small">
<i class="icon-clipboard-1"></i>
</span>
</a>
<a class="button is-small is-warning" title="Download album" ${album.download ? `href="api/album/zip/${album.identifier}?v=${album.editedAt}"` : 'disabled'}>
<span class="icon is-small">
<i class="icon-download"></i>
</span>
</a>
<a class="button is-small is-danger" title="Delete album" data-action="delete-album">
<span class="icon is-small">
<i class="icon-trash"></i>
</span>
</a>
</td>
2018-10-09 19:52:41 +00:00
`
table.appendChild(tr)
}
}).catch(function (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.editAlbum = function (id) {
2018-10-09 19:52:41 +00:00
const album = page.cache.albums[id]
if (!album) return
More improvements to albums, and others Improvements related to albums: * Changed "rename album" option with a better "edit album" feature. With it you can also disable download or public link and even request a new public link (https://i.fiery.me/fz1y.png). This also adds a new API route: /api/albums/edit. The old API route, /api/albums/rename, is still available but will silently be using the new API in backend. * Deleting album will now also delete its zip archive if exists. * Renaming albums will also rename its zip archive if exists. * Generating zip will use async fs.readFile instead of fs.readFileSync. This should improve generating speed somewhat. * The codes that tries to generate random identifier for album will now check whether an album with the same identifier already exists. It will also rely on "uploads.maxTries" config option to limit how many times it will try to re-generate a new random identifier. * Added a new config option "uploads.albumIdentifierLength" which sets the length of the randomly generated identifier. * Added "download" and "public" columns to "albums" table in database/db.js. Existing users can run "node database/migration.js" to add the columns. Others: * uploadsController.getUniqueRandomName will no longer accept 3 paramters (previously it would accept a callback in the third parameter). It will now instead return a Promise. * Album name of disabled/deleted albums will no longer be shown in uploads list. * Added "fileLength" column to "users" table in database/db.js. * Renamed HTTP404.html and HTTP500.html in /pages/error to 404.html and 500.html respectively. I'm still using symlinks though. * Added a new CSS named sweetalert.css which will be used in homepage, auth and dashboard. It will style all sweetalert modals with dark theme (matching the current color scheme used in this branch). * Updated icons (added download icon). * Some other improvements/tweaks here and there.
2018-04-28 17:26:39 +00:00
2018-10-09 19:52:41 +00:00
const div = document.createElement('div')
div.innerHTML = `
<div class="field">
<div class="controls">
<input id="swalName" class="input" type="text" placeholder="Name" value="${album.name || ''}">
</div>
</div>
<div class="field">
<div class="control">
<textarea id="swalDescription" class="textarea" placeholder="Description" rows="2">${album.description || ''}</textarea>
2018-10-09 19:52:41 +00:00
</div>
</div>
<div class="field">
<div class="control">
<label class="checkbox">
<input id="swalDownload" type="checkbox" ${album.download ? 'checked' : ''}>
Enable download
</label>
</div>
</div>
<div class="field">
<div class="control">
<label class="checkbox">
<input id="swalPublic" type="checkbox" ${album.public ? 'checked' : ''}>
Enable public link
</label>
</div>
</div>
<div class="field">
<div class="control">
<label class="checkbox">
<input id="swalRequestLink" type="checkbox">
Request new public link
</label>
</div>
</div>
`
swal({
More improvements to albums, and others Improvements related to albums: * Changed "rename album" option with a better "edit album" feature. With it you can also disable download or public link and even request a new public link (https://i.fiery.me/fz1y.png). This also adds a new API route: /api/albums/edit. The old API route, /api/albums/rename, is still available but will silently be using the new API in backend. * Deleting album will now also delete its zip archive if exists. * Renaming albums will also rename its zip archive if exists. * Generating zip will use async fs.readFile instead of fs.readFileSync. This should improve generating speed somewhat. * The codes that tries to generate random identifier for album will now check whether an album with the same identifier already exists. It will also rely on "uploads.maxTries" config option to limit how many times it will try to re-generate a new random identifier. * Added a new config option "uploads.albumIdentifierLength" which sets the length of the randomly generated identifier. * Added "download" and "public" columns to "albums" table in database/db.js. Existing users can run "node database/migration.js" to add the columns. Others: * uploadsController.getUniqueRandomName will no longer accept 3 paramters (previously it would accept a callback in the third parameter). It will now instead return a Promise. * Album name of disabled/deleted albums will no longer be shown in uploads list. * Added "fileLength" column to "users" table in database/db.js. * Renamed HTTP404.html and HTTP500.html in /pages/error to 404.html and 500.html respectively. I'm still using symlinks though. * Added a new CSS named sweetalert.css which will be used in homepage, auth and dashboard. It will style all sweetalert modals with dark theme (matching the current color scheme used in this branch). * Updated icons (added download icon). * Some other improvements/tweaks here and there.
2018-04-28 17:26:39 +00:00
title: 'Edit album',
icon: 'info',
More improvements to albums, and others Improvements related to albums: * Changed "rename album" option with a better "edit album" feature. With it you can also disable download or public link and even request a new public link (https://i.fiery.me/fz1y.png). This also adds a new API route: /api/albums/edit. The old API route, /api/albums/rename, is still available but will silently be using the new API in backend. * Deleting album will now also delete its zip archive if exists. * Renaming albums will also rename its zip archive if exists. * Generating zip will use async fs.readFile instead of fs.readFileSync. This should improve generating speed somewhat. * The codes that tries to generate random identifier for album will now check whether an album with the same identifier already exists. It will also rely on "uploads.maxTries" config option to limit how many times it will try to re-generate a new random identifier. * Added a new config option "uploads.albumIdentifierLength" which sets the length of the randomly generated identifier. * Added "download" and "public" columns to "albums" table in database/db.js. Existing users can run "node database/migration.js" to add the columns. Others: * uploadsController.getUniqueRandomName will no longer accept 3 paramters (previously it would accept a callback in the third parameter). It will now instead return a Promise. * Album name of disabled/deleted albums will no longer be shown in uploads list. * Added "fileLength" column to "users" table in database/db.js. * Renamed HTTP404.html and HTTP500.html in /pages/error to 404.html and 500.html respectively. I'm still using symlinks though. * Added a new CSS named sweetalert.css which will be used in homepage, auth and dashboard. It will style all sweetalert modals with dark theme (matching the current color scheme used in this branch). * Updated icons (added download icon). * Some other improvements/tweaks here and there.
2018-04-28 17:26:39 +00:00
content: div,
buttons: {
cancel: true,
confirm: {
closeModal: false
}
}
2018-10-09 19:52:41 +00:00
}).then(function (value) {
if (!value) return
2018-10-09 19:52:41 +00:00
axios.post('api/albums/edit', {
id,
name: document.getElementById('swalName').value,
description: document.getElementById('swalDescription').value,
2018-10-09 19:52:41 +00:00
download: document.getElementById('swalDownload').checked,
public: document.getElementById('swalPublic').checked,
requestLink: document.getElementById('swalRequestLink').checked
}).then(function (response) {
if (!response) return
2018-10-09 19:52:41 +00:00
if (response.data.success === false)
2018-10-09 19:52:41 +00:00
if (response.data.description === 'No token provided') {
return page.verifyToken(page.token)
} else {
return swal('An error occurred!', response.data.description, 'error')
}
if (response.data.identifier)
2018-10-09 19:52:41 +00:00
swal('Success!', `Your album's new identifier is: ${response.data.identifier}.`, 'success')
else if (response.data.name !== album.name)
2018-10-09 19:52:41 +00:00
swal('Success!', `Your album was renamed to: ${response.data.name}.`, 'success')
else
2018-10-09 19:52:41 +00:00
swal('Success!', 'Your album was edited!', 'success')
page.getAlbumsSidebar()
page.getAlbums()
}).catch(function (error) {
console.log(error)
return swal('An error occurred!', 'There was an error with the request, please check the console for more information.', 'error')
})
2018-10-09 19:52:41 +00:00
})
}
page.deleteAlbum = function (id) {
swal({
title: 'Are you sure?',
2018-10-09 19:52:41 +00:00
text: 'This won\'t delete your uploads, only the album!',
icon: 'warning',
dangerMode: true,
buttons: {
cancel: true,
confirm: {
text: 'Yes, delete it!',
closeModal: false
},
purge: {
2018-10-09 19:52:41 +00:00
text: 'Umm, delete the uploads too please?',
value: 'purge',
className: 'swal-button--danger',
closeModal: false
}
}
2018-10-09 19:52:41 +00:00
}).then(function (proceed) {
if (!proceed) return
2018-10-09 19:52:41 +00:00
axios.post('api/albums/delete', {
id,
purge: proceed === 'purge'
}).then(function (response) {
if (response.data.success === false)
if (response.data.description === 'No token provided') {
return page.verifyToken(page.token)
} else {
return swal('An error occurred!', response.data.description, 'error')
}
2018-10-09 19:52:41 +00:00
swal('Deleted!', 'Your album has been deleted.', 'success')
page.getAlbumsSidebar()
page.getAlbums()
2018-10-09 19:52:41 +00:00
}).catch(function (error) {
console.log(error)
return swal('An error occurred!', 'There was an error with the request, please check the console for more information.', 'error')
})
2018-10-09 19:52:41 +00:00
})
}
page.submitAlbum = function (element) {
page.isLoading(element, true)
axios.post('api/albums', {
name: document.getElementById('albumName').value,
description: document.getElementById('albumDescription').value
2018-10-09 19:52:41 +00:00
}).then(function (response) {
if (!response) return
2018-10-09 19:52:41 +00:00
page.isLoading(element, false)
if (response.data.success === false)
2018-10-09 19:52:41 +00:00
if (response.data.description === 'No token provided') {
return page.verifyToken(page.token)
} else {
return swal('An error occurred!', response.data.description, 'error')
}
swal('Woohoo!', 'Album was created successfully', 'success')
page.getAlbumsSidebar()
page.getAlbums()
}).catch(function (error) {
console.log(error)
page.isLoading(element, false)
return swal('An error occurred!', 'There was an error with the request, please check the console for more information.', 'error')
})
}
page.getAlbumsSidebar = function () {
2018-10-09 19:52:41 +00:00
axios.get('api/albums/sidebar').then(function (response) {
if (!response) return
if (response.data.success === false)
2018-10-09 19:52:41 +00:00
if (response.data.description === 'No token provided') {
return page.verifyToken(page.token)
} else {
return swal('An error occurred!', response.data.description, 'error')
}
2018-10-09 19:52:41 +00:00
const albumsContainer = document.getElementById('albumsContainer')
albumsContainer.innerHTML = ''
if (response.data.albums === undefined) return
2018-10-09 19:52:41 +00:00
for (let i = 0; i < response.data.albums.length; i++) {
const album = response.data.albums[i]
const li = document.createElement('li')
const a = document.createElement('a')
a.id = album.id
a.innerHTML = album.name
2018-10-09 19:52:41 +00:00
a.addEventListener('click', function () {
page.getAlbum(this)
})
2018-10-09 19:52:41 +00:00
li.appendChild(a)
albumsContainer.appendChild(li)
}
}).catch(function (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.getAlbum = function (album) {
page.setActiveMenu(album)
2018-10-13 19:35:46 +00:00
page.getUploads({ album: album.id })
}
page.changeFileLength = function () {
2018-10-09 19:52:41 +00:00
axios.get('api/filelength/config').then(function (response) {
if (response.data.success === false)
2018-10-09 19:52:41 +00:00
if (response.data.description === 'No token provided') {
return page.verifyToken(page.token)
} else {
return swal('An error occurred!', response.data.description, 'error')
}
2018-10-09 19:52:41 +00:00
// Shorter vars
const { max, min } = response.data.config
const [ chg, def ] = [ response.data.config.userChangeable, response.data.config.default ]
2018-10-09 19:52:41 +00:00
const len = response.data.fileLength
page.dom.innerHTML = `
<h2 class="subtitle">File name length</h2>
<div class="field">
<div class="field">
<label class="label">Your current file name length:</label>
<div class="control">
<input id="fileLength" class="input" type="text" placeholder="Your file length" value="${len ? Math.min(Math.max(len, min), max) : def}">
</div>
<p class="help">Default file name length is <b>${def}</b> characters. ${(chg ? `Range allowed for user is <b>${min}</b> to <b>${max}</b> characters.` : 'Changing file name length is disabled at the moment.')}</p>
</div>
<div class="field">
<div class="control">
<a id="setFileLength" class="button is-breeze is-fullwidth">
<span class="icon">
<i class="icon-paper-plane-empty"></i>
</span>
<span>Set file name length</span>
</a>
</div>
<div>
</div>
`
page.fadeIn()
2018-10-09 19:52:41 +00:00
document.getElementById('setFileLength').addEventListener('click', function () {
page.setFileLength(document.getElementById('fileLength').value, this)
})
2018-10-09 19:52:41 +00:00
}).catch(function (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.setFileLength = function (fileLength, element) {
page.isLoading(element, true)
2018-10-09 19:52:41 +00:00
axios.post('api/filelength/change', { fileLength }).then(function (response) {
page.isLoading(element, false)
if (response.data.success === false)
2018-10-09 19:52:41 +00:00
if (response.data.description === 'No token provided') {
return page.verifyToken(page.token)
} else {
return swal('An error occurred!', response.data.description, 'error')
}
2018-10-09 19:52:41 +00:00
swal({
title: 'Woohoo!',
text: 'Your file length was successfully changed.',
icon: 'success'
}).then(function () {
page.changeFileLength()
})
2018-10-09 19:52:41 +00:00
}).catch(function (error) {
console.log(error)
page.isLoading(element, false)
return swal('An error occurred!', 'There was an error with the request, please check the console for more information.', 'error')
})
}
page.changeToken = function () {
2018-10-09 19:52:41 +00:00
axios.get('api/tokens').then(function (response) {
if (response.data.success === false)
2018-10-09 19:52:41 +00:00
if (response.data.description === 'No token provided') {
return page.verifyToken(page.token)
} else {
return swal('An error occurred!', response.data.description, 'error')
}
2018-10-09 19:52:41 +00:00
page.dom.innerHTML = `
<h2 class="subtitle">Manage your token</h2>
<div class="field">
<label class="label">Your current token:</label>
<div class="field">
<div class="control">
<input id="token" readonly class="input" type="text" placeholder="Your token" value="${response.data.token}">
</div>
</div>
</div>
<div class="field">
<div class="control">
<a id="getNewToken" class="button is-breeze is-fullwidth" data-action="get-new-token">
<span class="icon">
<i class="icon-arrows-cw"></i>
</span>
<span>Request new token</span>
</a>
</div>
</div>
`
page.fadeIn()
2018-10-09 19:52:41 +00:00
}).catch(function (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.getNewToken = function (element) {
page.isLoading(element, true)
2018-10-09 19:52:41 +00:00
axios.post('api/tokens/change').then(function (response) {
page.isLoading(element, false)
if (response.data.success === false)
2018-10-09 19:52:41 +00:00
if (response.data.description === 'No token provided') {
return page.verifyToken(page.token)
} else {
return swal('An error occurred!', response.data.description, 'error')
}
2018-10-09 19:52:41 +00:00
swal({
title: 'Woohoo!',
text: 'Your token was successfully changed.',
icon: 'success'
}).then(function () {
axios.defaults.headers.common.token = response.data.token
localStorage[lsKeys.token] = response.data.token
2018-10-09 19:52:41 +00:00
page.token = response.data.token
page.changeToken()
})
2018-10-09 19:52:41 +00:00
}).catch(function (error) {
console.log(error)
page.isLoading(element, false)
return swal('An error occurred!', 'There was an error with the request, please check the console for more information.', 'error')
})
}
page.changePassword = function () {
2018-10-09 19:52:41 +00:00
page.dom.innerHTML = `
<h2 class="subtitle">Change your password</h2>
<div class="field">
<label class="label">New password:</label>
<div class="control">
<input id="password" class="input" type="password">
</div>
</div>
<div class="field">
<label class="label">Re-type new password:</label>
<div class="control">
<input id="passwordConfirm" class="input" type="password">
</div>
</div>
<div class="field">
<div class="control">
<a id="sendChangePassword" class="button is-breeze is-fullwidth">
<span class="icon">
<i class="icon-paper-plane-empty"></i>
</span>
<span>Set new password</span>
</a>
</div>
</div>
`
page.fadeIn()
document.getElementById('sendChangePassword').addEventListener('click', function () {
if (document.getElementById('password').value === document.getElementById('passwordConfirm').value)
page.sendNewPassword(document.getElementById('password').value, this)
else
swal({
title: 'Password mismatch!',
text: 'Your passwords do not match, please try again.',
icon: 'error'
})
})
}
page.sendNewPassword = function (pass, element) {
page.isLoading(element, true)
2018-10-09 19:52:41 +00:00
axios.post('api/password/change', { password: pass }).then(function (response) {
page.isLoading(element, false)
if (response.data.success === false)
2018-10-09 19:52:41 +00:00
if (response.data.description === 'No token provided') {
return page.verifyToken(page.token)
} else {
return swal('An error occurred!', response.data.description, 'error')
}
2018-10-09 19:52:41 +00:00
swal({
title: 'Woohoo!',
text: 'Your password was successfully changed.',
icon: 'success'
}).then(function () {
page.changePassword()
})
2018-10-09 19:52:41 +00:00
}).catch(function (error) {
console.log(error)
page.isLoading(element, false)
return swal('An error occurred!', 'There was an error with the request, please check the console for more information.', 'error')
})
}
page.setActiveMenu = function (activeItem) {
2018-10-09 19:52:41 +00:00
const menu = document.getElementById('menu')
const items = menu.getElementsByTagName('a')
for (let i = 0; i < items.length; i++)
items[i].classList.remove('is-active')
activeItem.classList.add('is-active')
}
page.getUsers = function ({ pageNum } = {}, element) {
if (element) page.isLoading(element, true)
if (pageNum === undefined) pageNum = 0
2018-10-09 19:52:41 +00:00
if (!page.permissions.admin)
2018-10-09 19:52:41 +00:00
return swal('An error occurred!', 'You can not do this!', 'error')
const url = `api/users/${pageNum}`
axios.get(url).then(function (response) {
if (response.data.success === false)
2018-10-09 19:52:41 +00:00
if (response.data.description === 'No token provided') {
return page.verifyToken(page.token)
} else {
return swal('An error occurred!', response.data.description, 'error')
}
if (pageNum && (response.data.users.length === 0)) {
// Only remove loading class here, since beyond this the entire page will be replaced anyways
if (element) page.isLoading(element, false)
return swal('An error occurred!', `There are no more users to populate page ${pageNum + 1}.`, 'error')
2018-10-09 19:52:41 +00:00
}
page.currentView = 'users'
page.cache.users = {}
const pagination = page.paginate(response.data.count, 25, pageNum)
2018-10-09 19:52:41 +00:00
const extraControls = `
<div class="columns" style="margin-top: 10px">
<div class="column is-hidden-mobile"></div>
<div class="column is-one-quarter">
<div class="field has-addons">
<div class="control is-expanded">
<input id="jumpToPage" class="input is-small" type="text" value="${pageNum + 1}">
</div>
<div class="control">
<a class="button is-small is-breeze" title="Jump to page" data-action="jump-to-page">
<span class="icon">
<i class="icon-paper-plane-empty"></i>
</span>
</a>
</div>
</div>
</div>
</div>
`
2018-10-09 19:52:41 +00:00
const controls = `
<div class="columns">
<div class="column is-hidden-mobile"></div>
<div class="column" style="text-align: right">
<a class="button is-small is-info" title="Clear selection" data-action="clear-selection">
<span class="icon">
<i class="icon-cancel"></i>
</span>
</a>
<a class="button is-small is-warning" title="Bulk disable (WIP)" data-action="bulk-disable-users" disabled>
<span class="icon">
<i class="icon-hammer"></i>
</span>
<span>Bulk disable</span>
</a>
<a class="button is-small is-danger" title="Bulk delete (WIP)" data-action="bulk-delete-users" disabled>
<span class="icon">
<i class="icon-trash"></i>
</span>
<span>Bulk delete</span>
</a>
</div>
</div>
`
let allSelected = true
page.dom.innerHTML = `
${pagination}
${extraControls}
2018-10-09 19:52:41 +00:00
${controls}
<div class="table-container">
<table class="table is-narrow is-fullwidth is-hoverable">
<thead>
<tr>
<th><input id="selectAll" class="checkbox" type="checkbox" title="Select all users" data-action="select-all"></th>
<th>ID</th>
<th style="width: 25%">Username</th>
<th>Uploads</th>
<th>Usage</th>
2018-10-09 19:52:41 +00:00
<th>File length</th>
<th>Group</th>
<th></th>
</tr>
</thead>
<tbody id="table">
</tbody>
</table>
</div>
<hr>
${pagination}
`
page.fadeIn()
2018-10-09 19:52:41 +00:00
const table = document.getElementById('table')
for (let i = 0; i < response.data.users.length; i++) {
const user = response.data.users[i]
const selected = page.selected.users.includes(user.id)
if (!selected && allSelected) allSelected = false
2018-10-09 19:52:41 +00:00
let displayGroup = null
for (const group of Object.keys(user.groups)) {
if (!user.groups[group]) break
displayGroup = group
}
// Server-side explicitly expects either of these two values to consider a user as disabled
const enabled = user.enabled !== false && user.enabled !== 0
2018-10-09 19:52:41 +00:00
page.cache.users[user.id] = {
username: user.username,
groups: user.groups,
enabled,
displayGroup
2018-10-09 19:52:41 +00:00
}
const tr = document.createElement('tr')
tr.dataset.id = user.id
tr.innerHTML = `
<td class="controls"><input type="checkbox" class="checkbox" title="Select this user" data-action="select"${selected ? ' checked' : ''}></td>
<th>${user.id}</th>
<th${enabled ? '' : ' class="is-linethrough"'}>${user.username}</td>
<th>${user.uploadsCount}</th>
<td>${page.getPrettyBytes(user.diskUsage)}</td>
2018-10-09 19:52:41 +00:00
<td>${user.fileLength || 'default'}</td>
<td>${displayGroup}</td>
2018-10-09 19:52:41 +00:00
<td class="controls" style="text-align: right">
<a class="button is-small is-primary" title="Edit user" data-action="edit-user">
<span class="icon">
<i class="icon-pencil-1"></i>
</span>
</a>
<a class="button is-small is-info" title="View uploads" data-action="view-user-uploads" ${user.uploadsCount ? '' : 'disabled'}>
<span class="icon">
<i class="icon-docs"></i>
</span>
</a>
<a class="button is-small is-warning" title="Disable user" data-action="disable-user" ${enabled ? '' : 'disabled'}>
2018-10-09 19:52:41 +00:00
<span class="icon">
<i class="icon-hammer"></i>
</span>
</a>
<a class="button is-small is-danger" title="Delete user (WIP)" data-action="delete-user" disabled>
<span class="icon">
<i class="icon-trash"></i>
</span>
</a>
</td>
`
table.appendChild(tr)
// page.checkboxes.users = Array.from(table.getElementsByClassName('checkbox'))
page.checkboxes.users = Array.from(table.querySelectorAll('.checkbox[data-action="select"]'))
}
if (allSelected && response.data.users.length) {
const selectAll = document.getElementById('selectAll')
if (selectAll) selectAll.checked = true
2018-10-09 19:52:41 +00:00
}
page.views.users.pageNum = response.data.users.length ? pageNum : 0
}).catch(function (error) {
if (element) page.isLoading(element, false)
2018-10-09 19:52:41 +00:00
console.log(error)
return swal('An error occurred!', 'There was an error with the request, please check the console for more information.', 'error')
})
}
page.editUser = function (id) {
const user = page.cache.users[id]
if (!user) return
2018-10-09 19:52:41 +00:00
const groupOptions = Object.keys(page.permissions).map(function (g, i, a) {
const selected = g === user.displayGroup
const disabled = !(a[i + 1] && page.permissions[a[i + 1]])
return `<option value="${g}"${selected ? ' selected' : ''}${disabled ? ' disabled' : ''}>${g}</option>`
}).join('\n')
2018-10-09 19:52:41 +00:00
const div = document.createElement('div')
div.innerHTML = `
<div class="field">
<label class="label">Username</label>
<div class="controls">
<input id="swalUsername" class="input" type="text" value="${user.username || ''}">
</div>
</div>
<div class="field">
<label class="label">User group</label>
<div class="control">
<div class="select is-fullwidth">
<select id="swalGroup">
${groupOptions}
</select>
</div>
</div>
</div>
2018-10-09 19:52:41 +00:00
<div class="field">
<div class="control">
<label class="checkbox">
<input id="swalEnabled" type="checkbox" ${user.enabled ? 'checked' : ''}>
Enabled
</label>
</div>
</div>
<div class="field">
<div class="control">
<label class="checkbox">
<input id="swalResetPassword" type="checkbox">
Reset password
</label>
</div>
</div>
`
swal({
title: 'Edit user',
icon: 'info',
content: div,
buttons: {
cancel: true,
confirm: {
closeModal: false
}
}
}).then(function (proceed) {
if (!proceed) return
2018-10-09 19:52:41 +00:00
axios.post('api/users/edit', {
id,
username: document.getElementById('swalUsername').value,
group: document.getElementById('swalGroup').value,
2018-10-09 19:52:41 +00:00
enabled: document.getElementById('swalEnabled').checked,
resetPassword: document.getElementById('swalResetPassword').checked
}).then(function (response) {
if (!response) return
2018-10-09 19:52:41 +00:00
if (response.data.success === false)
2018-10-09 19:52:41 +00:00
if (response.data.description === 'No token provided') {
return page.verifyToken(page.token)
} else {
return swal('An error occurred!', response.data.description, 'error')
}
if (response.data.password) {
const div = document.createElement('div')
div.innerHTML = `
<p>${user.username}'s new password is:</p>
<p class="is-code">${response.data.password}</p>
`
swal({
title: 'Success!',
icon: 'success',
content: div
})
} else if (response.data.update && response.data.update.username !== user.username) {
swal('Success!', `${user.username} was renamed into: ${response.data.update.name}.`, 'success')
} else {
2018-10-09 19:52:41 +00:00
swal('Success!', 'The user was edited!', 'success')
}
2018-10-09 19:52:41 +00:00
page.getUsers(page.views.users)
}).catch(function (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.disableUser = function (id) {
const user = page.cache.users[id]
if (!user || !user.enabled) return
const content = document.createElement('div')
content.innerHTML = `You will be disabling a user with the username <b>${page.cache.users[id].username}</b>!`
2018-10-09 19:52:41 +00:00
swal({
title: 'Are you sure?',
icon: 'warning',
content,
2018-10-09 19:52:41 +00:00
dangerMode: true,
buttons: {
cancel: true,
confirm: {
text: 'Yes, disable them!',
closeModal: false
}
}
}).then(function (proceed) {
if (!proceed) return
2018-10-09 19:52:41 +00:00
axios.post('api/users/disable', { id }).then(function (response) {
if (!response) return
2018-10-09 19:52:41 +00:00
if (response.data.success === false)
if (response.data.description === 'No token provided')
2018-10-09 19:52:41 +00:00
return page.verifyToken(page.token)
else
2018-10-09 19:52:41 +00:00
return swal('An error occurred!', response.data.description, 'error')
swal('Success!', 'The user has been disabled.', 'success')
page.getUsers(page.views.users)
}).catch(function (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.paginate = function (totalItems, itemsPerPage, currentPage) {
// Roughly based on https://github.com/mayuska/pagination/blob/master/index.js
currentPage = currentPage + 1
const step = 3
const numPages = Math.ceil(totalItems / itemsPerPage)
let template = ''
const elementsToShow = step * 2
const add = {
pageNum (start, end) {
for (let i = start; i <= end; ++i)
template += `<li><a class="button pagination-link ${i === currentPage ? ' is-current' : ''}" aria-label="Goto page ${i}" data-action="page-goto" data-goto="${i - 1}">${i}</a></li>`
},
startDots () {
template += `
<li><a class="button pagination-link" aria-label="Goto page 1" data-action="page-goto" data-goto="0">1</a></li>
<li><span class="pagination-ellipsis">&hellip;</span></li>
`
},
endDots () {
template += `
<li><span class="pagination-ellipsis">&hellip;</span></li>
<li><a class="button pagination-link" aria-label="Goto page ${numPages}" data-action="page-goto" data-goto="${numPages - 1}">${numPages}</a></li>
`
}
}
if (elementsToShow >= numPages) {
add.pageNum(1, numPages)
} else if (currentPage < elementsToShow) {
add.pageNum(1, elementsToShow)
add.endDots()
} else if (currentPage > numPages - elementsToShow) {
add.startDots()
add.pageNum(numPages - elementsToShow, numPages)
} else {
add.startDots()
add.pageNum(currentPage - step, currentPage, step)
add.endDots()
}
return `
<nav class="pagination is-centered is-small">
<a class="button pagination-previous" data-action="page-prev">Previous</a>
<a class="button pagination-next" data-action="page-next">Next page</a>
<ul class="pagination-list">${template}</ul>
</nav>
`
}
page.getServerStats = function (element) {
if (!page.permissions.admin)
return swal('An error occurred!', 'You can not do this!', 'error')
const url = 'api/stats'
axios.get(url).then(function (response) {
if (response.data.success === false)
if (response.data.description === 'No token provided') {
return page.verifyToken(page.token)
} else {
return swal('An error occurred!', response.data.description, 'error')
}
let content = ''
for (const key of Object.keys(response.data.stats)) {
let rows = ''
for (const valKey of Object.keys(response.data.stats[key])) {
2019-04-12 00:53:44 +00:00
const _value = response.data.stats[key][valKey]
let value = _value
if (['albums', 'users', 'uploads'].includes(key))
value = _value.toLocaleString()
if (['memoryUsage', 'size'].includes(valKey))
2019-04-12 00:53:44 +00:00
value = page.getPrettyBytes(_value)
if (valKey === 'systemMemory')
2019-04-12 00:53:44 +00:00
value = `${page.getPrettyBytes(_value.used)} / ${page.getPrettyBytes(_value.total)} (${Math.round(_value.used / _value.total * 100)}%)`
rows += `
<tr>
<th>${valKey.replace(/([A-Z])/g, ' $1').toUpperCase()}</th>
<td>${value}</td>
</tr>
`
}
content += `
<div class="table-container">
<table class="table is-fullwidth is-hoverable">
<thead>
<tr>
<th>${key.toUpperCase()}</th>
<td style="width: 50%"></td>
</tr>
</thead>
<tbody>
${rows}
</tbody>
</table>
</div>
`
}
page.dom.innerHTML = `
<h2 class="subtitle">Statistics</h2>
${content}
`
page.fadeIn()
})
}
page.getPrettyDate = function (date) {
return date.getFullYear() + '-' +
(date.getMonth() < 9 ? '0' : '') + // month's index starts from zero
(date.getMonth() + 1) + '-' +
(date.getDate() < 10 ? '0' : '') +
date.getDate() + ' ' +
(date.getHours() < 10 ? '0' : '') +
date.getHours() + ':' +
(date.getMinutes() < 10 ? '0' : '') +
date.getMinutes() + ':' +
(date.getSeconds() < 10 ? '0' : '') +
date.getSeconds()
}
page.getPrettyBytes = function (num, si) {
// MIT License
// Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
if (!Number.isFinite(num)) return num
const neg = num < 0 ? '-' : ''
const scale = si ? 1000 : 1024
if (neg) num = -num
if (num < scale) return `${neg}${num} B`
const exponent = Math.min(Math.floor(Math.log10(num) / 3), 8) // 8 is count of KMGTPEZY
const numStr = Number((num / Math.pow(scale, exponent)).toPrecision(3))
const pre = (si ? 'kMGTPEZY' : 'KMGTPEZY').charAt(exponent - 1) + (si ? '' : 'i')
return `${neg}${numStr} ${pre}B`
}
window.onload = function () {
// Add 'no-touch' class to non-touch devices
if (!('ontouchstart' in document.documentElement))
document.documentElement.classList.add('no-touch')
const selectedKeys = ['uploads', 'uploadsAll', 'users']
2018-10-09 19:52:41 +00:00
for (const selectedKey of selectedKeys) {
const ls = localStorage[lsKeys.selected[selectedKey]]
if (ls) page.selected[selectedKey] = JSON.parse(ls)
}
page.preparePage()
page.clipboardJS = new ClipboardJS('.clipboard-js')
page.clipboardJS.on('success', function () {
return swal('Copied!', 'The link has been copied to clipboard.', 'success')
})
page.clipboardJS.on('error', function (event) {
console.error(event)
return swal('An error occurred!', 'There was an error when trying to copy the link to clipboard, please check the console for more information.', 'error')
})
page.lazyLoad = new LazyLoad()
}