feat: allow administrators to create custom links for albums

This commit is contained in:
Zephyrrus 2020-10-02 22:16:34 +03:00
parent c88d08330f
commit 151c360740
5 changed files with 95 additions and 14 deletions

15
TODO
View File

@ -1,12 +1,13 @@
- There's a vertical scrollbar on seemingly all pages even though there is no need for it
- Uploaded text file (via ShareX) does not show up in the dashboard's "Files" area
* Currently only pictures show up on the dashboard due to having thumbs
- When you delete a file from the grid view, it's not removed from the list
- When you are on the table view of files, the column `Albums` doesn't get populated unless you fetch them, obviously.
- Think of a strategy to achieve this in a nice manner
- Can't delete/rename albums when going into album view. Or ever.
- Dark theme the annoying popups for deleting and other stuff
- Logout button
- Finish /dashboard/tags - right now all it does is ask if you want to delete a tag (make it like the albums page)
- Make the settings page work properly
- Add an stats page that displays statistics about the server like free space, free/used memory, etc
- Add statistics of total disk space used by a specific user (?)
- Page that lists all files ordered by size, useful to find big files
- Admins should be able to add custom URLs to their albums, as long as it's not conflicting with another id

View File

@ -30,11 +30,28 @@ class linkPOST extends Route {
.first();
if (count >= parseInt(process.env.MAX_LINKS_PER_ALBUM, 10)) return res.status(400).json({ message: 'Maximum links per album reached' });
/*
Try to allocate a new identifier on the db
*/
const identifier = await Util.getUniqueAlbumIdentifier();
if (!identifier) return res.status(500).json({ message: 'There was a problem allocating a link for your album' });
let { identifier } = req.body;
if (identifier) {
if (!user.isAdmin) return res.status(401).json({ message: 'Only administrators can create custom links' });
if (!(/^[a-zA-Z0-9-_]+$/.test(identifier))) return res.status(400).json({ message: 'Only alphanumeric, dashes, and underscore characters are allowed' });
/*
Make sure that the id doesn't already exists in the database
*/
const idExists = await db
.table('links')
.where({ identifier })
.first();
if (idExists) return res.status(400).json({ message: 'Album with this identifier already exists' });
} else {
/*
Try to allocate a new identifier in the database
*/
identifier = await Util.getUniqueAlbumIdentifier();
if (!identifier) return res.status(500).json({ message: 'There was a problem allocating a link for your album' });
}
try {
const insertObj = {

View File

@ -58,7 +58,30 @@
<div class="level is-paddingless">
<div class="level-left">
<div class="level-item">
<b-field v-if="auth.user.isAdmin">
<p class="control">
<button
:class="{ 'is-loading': isCreatingLink }"
class="button is-primary reset-font-size-button"
style="float: left"
@click="createLink(albumId)">
Create new link
</button>
</p>
<p class="control">
<b-dropdown>
<button slot="trigger" class="button is-primary reset-font-size-button">
<b-icon icon="menu-down" />
</button>
<b-dropdown-item @click="createCustomLink(albumId)">
Custom link
</b-dropdown-item>
</b-dropdown>
</p>
</b-field>
<button
v-else
:class="{ 'is-loading': isCreatingLink }"
class="button is-primary"
style="float: left"
@ -107,13 +130,14 @@ export default {
isDeletingLinks: [],
};
},
computed: mapState(['config']),
computed: mapState(['config', 'auth']),
methods: {
...mapActions({
deleteAlbumAction: 'albums/deleteAlbum',
deleteAlbumLinkAction: 'albums/deleteLink',
updateLinkOptionsAction: 'albums/updateLinkOptions',
createLinkAction: 'albums/createLink',
createCustomLinkAction: 'albums/createCustomLink',
alert: 'alert/set',
}),
promptDeleteAlbum(id) {
@ -172,6 +196,17 @@ export default {
this.alert({ text: e.message, error: true });
}
},
async createCustomLink(albumId) {
this.$buefy.dialog.prompt({
message: 'Custom link identifier',
inputAttrs: {
placeholder: '',
maxlength: 10,
},
trapFocus: true,
onConfirm: (value) => this.$handler.executeAction('albums/createCustomLink', { albumId, value }),
});
},
isDeleting(identifier) {
return this.isDeletingLinks.indexOf(identifier) > -1;
},
@ -182,6 +217,11 @@ export default {
<style lang="scss" scoped>
@import '~/assets/styles/_colors.scss';
.reset-font-size-button {
font-size: 1rem;
height: 2.25em;
}
div.details {
flex: 0 1 100%;
padding-left: 2em;
@ -208,4 +248,20 @@ export default {
box-shadow: $boxShadowLight;
}
}
.dialog.modal .modal-card-body input {
border: 2px solid #21252d;
border-radius: 0.3em !important;
background: rgba(0, 0, 0, 0.15);
padding: 1rem;
color: $textColor;
height: 3rem;
&:focus,
&:hover {
border: 2px solid #21252d;
}
&::placeholder {
color: $textColor;
}
}
</style>

View File

@ -22,7 +22,7 @@
tag="nuxt-link"
to="/dashboard/tags"
exact />
<b-menu-item icon="settings" expanded>
<b-menu-item icon="menu" expanded>
<template slot="label" slot-scope="props">
Administration
<b-icon class="is-pulled-right" :icon="props.expanded ? 'menu-down' : 'menu-up'" />

View File

@ -55,6 +55,13 @@ export const actions = {
return response;
},
async createCustomLink({ commit }, { albumId, value }) {
const response = await this.$axios.$post('album/link/new', { albumId, identifier: value });
commit('addAlbumLink', { albumId, data: response.data });
return response;
},
async updateLinkOptions({ commit }, { albumId, linkOpts }) {
const response = await this.$axios.$post('album/link/edit', {
identifier: linkOpts.identifier,