added downloadConfirm string to noStream page

This commit is contained in:
Danny Coates 2020-07-29 12:35:47 -07:00
parent 81e9d81dab
commit e2425cd6c9
No known key found for this signature in database
GPG Key ID: 4C442633C62E00CB
2 changed files with 16 additions and 4 deletions

View File

@ -19,9 +19,9 @@ module.exports = function(state, emit) {
<form class="md:w-128" onsubmit=${submit}>
<fieldset class="border rounded p-4 my-4" onchange=${optionChanged}>
<div class="flex items-center mb-2">
<img class="mr-3 flex-shrink-0" src="${assets.get(
'blue_file.svg'
)}"/>
<svg class="h-8 w-6 mr-3 flex-shrink-0 text-white dark:text-grey-90">
<use xlink:href="${assets.get('blue_file.svg')}#icon"/>
</svg>
<p class="flex-grow">
<h1 class="text-base font-medium word-break-all">${
archive.name
@ -55,6 +55,11 @@ module.exports = function(state, emit) {
value="${state.translate('copyLinkButton')}"
title="${state.translate('copyLinkButton')}"
type="submit" />
<p
class="text-grey-80 leading-normal dark:text-grey-40 font-semibold text-center md:my-8 md:text-left"
>
${state.translate('downloadConfirmDescription')}
</p>
</form>
</div>
`;
@ -64,6 +69,7 @@ module.exports = function(state, emit) {
const choice = event.target.value;
const button = event.currentTarget.nextElementSibling;
let title = button.title;
console.error(choice, title);
switch (choice) {
case 'copy':
title = state.translate('copyLinkButton');

View File

@ -15,7 +15,13 @@ module.exports = async function(req, res) {
agent: req.ua.browser.name || req.ua.ua.substring(0, 6)
});
await storage.incrementField(id, 'dl');
if (meta.dlToken >= meta.dlimit) {
if (meta.dl + 1 >= meta.dlimit) {
// Only dlimit number of tokens will be issued
// after which /download/token will return 403
// however the protocol doesn't prevent one token
// from making all the downloads and assumes
// clients are well behaved. If this becomes
// a problem we can keep track of used tokens.
await storage.kill(id);
}
res.sendStatus(200);