Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Time Limited Download Links #2617

Merged
merged 6 commits into from
Feb 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions app/views/application/_push_expiration.html.erb
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<% if push.files.attached? && Rails.application.config.active_storage.try(:service).to_s != "local" %>
<div class="text-muted fs-6">
<%= t('application.push_expiration.will_expire_in') %> <span id="countdown-timer">4:59</span>
<div class="mt-2 mb-4">
<%= t('application.push_expiration.you_can_refresh') %>
</div>
</div>
<script>
var endTime = new Date().getTime() + 5 * 60 * 1000; // 5 minutes in milliseconds
var countdown = setInterval(function() {
var now = new Date().getTime();
var timeRemaining = endTime - now;

if (timeRemaining < 0) {
clearInterval(countdown);
document.getElementById("countdown-timer").innerHTML = "<%= t('words.expired') %>";
} else {
var minutes = Math.floor((timeRemaining % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((timeRemaining % (1000 * 60)) / 1000);
seconds = seconds.toString().padStart(2, '0');
document.getElementById("countdown-timer").innerHTML = minutes + ":" + seconds;
}
}, 1000);
</script>
<% end %>
1 change: 1 addition & 0 deletions app/views/file_pushes/show.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
<%= _('(whichever occurs first).') %>
<% end %>
</p>
<%= render partial: 'application/push_expiration', locals: { push: @push } %>
<% if @push.deletable_by_viewer && @push.views_remaining.positive? %>
<button type="button" class="btn btn-danger" data-bs-toggle="modal" data-bs-target="#deleteModal">
<em class="bi bi-trash"></em> <%= _('Delete This Secret Link Now') %>
Expand Down
3 changes: 3 additions & 0 deletions config/application.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ class Application < Rails::Application
config.load_defaults 7.2
config.active_support.cache_format_version = 7.0

config.active_storage.urls_expire_in = 5.minutes
config.active_storage.routes_prefix = "/pfb"

# Please, add to the `ignore` list any other `lib` subdirectories that do
# not contain `.rb` files, or that should not be reloaded or eager loaded.
# Common ones are `templates`, `generators`, or `middleware`, for example.
Expand Down
2 changes: 1 addition & 1 deletion config/locales/.translation_io
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# ignore the conflicts and "sync" again, it will fix this file for you.

---
timestamp: 1735293593
timestamp: 1739218572
30 changes: 15 additions & 15 deletions config/locales/gettext/app.pot
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2024 pwpush
# Copyright (C) 2025 pwpush
# This file is distributed under the same license as the pwpush package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2024.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2025.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: pwpush 1.0\n"
"Report-Msgid-Bugs-To: [email protected]\n"
"POT-Creation-Date: 2024-12-27 10:59+0100\n"
"PO-Revision-Date: 2024-12-27 10:59+0100\n"
"POT-Creation-Date: 2025-02-10 21:16+0100\n"
"PO-Revision-Date: 2025-02-10 21:16+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
"Language: \n"
Expand Down Expand Up @@ -272,7 +272,7 @@ msgstr ""

#: ../../../app/views/devise/registrations/token.html.erb:49
#: ../../../app/views/file_pushes/audit.html.erb:214
#: ../../../app/views/file_pushes/show.html.erb:74
#: ../../../app/views/file_pushes/show.html.erb:75
#: ../../../app/views/passwords/audit.html.erb:145
#: ../../../app/views/passwords/show.html.erb:58
#: ../../../app/views/urls/audit.html.erb:132
Expand All @@ -281,7 +281,7 @@ msgstr ""

#: ../../../app/views/devise/registrations/token.html.erb:52
#: ../../../app/views/file_pushes/audit.html.erb:217
#: ../../../app/views/file_pushes/show.html.erb:77
#: ../../../app/views/file_pushes/show.html.erb:78
#: ../../../app/views/passwords/audit.html.erb:148
#: ../../../app/views/passwords/show.html.erb:61
#: ../../../app/views/urls/audit.html.erb:135
Expand All @@ -294,7 +294,7 @@ msgstr ""

#: ../../../app/views/devise/registrations/token.html.erb:53
#: ../../../app/views/file_pushes/audit.html.erb:218
#: ../../../app/views/file_pushes/show.html.erb:78
#: ../../../app/views/file_pushes/show.html.erb:79
#: ../../../app/views/passwords/audit.html.erb:149
#: ../../../app/views/passwords/show.html.erb:62
#: ../../../app/views/urls/audit.html.erb:136
Expand Down Expand Up @@ -725,7 +725,7 @@ msgid ""
msgstr ""

#: ../../../app/views/file_pushes/audit.html.erb:218
#: ../../../app/views/file_pushes/show.html.erb:78
#: ../../../app/views/file_pushes/show.html.erb:79
#: ../../../app/views/passwords/audit.html.erb:149
#: ../../../app/views/passwords/show.html.erb:62
#: ../../../app/views/urls/audit.html.erb:136
Expand Down Expand Up @@ -977,9 +977,9 @@ msgstr ""
msgid "Go"
msgstr ""

#: ../../../app/views/file_pushes/preliminary.html.erb:3
#: ../../../app/views/passwords/preliminary.html.erb:3
#: ../../../app/views/urls/preliminary.html.erb:3
#: ../../../app/views/file_pushes/preliminary.html.erb:4
#: ../../../app/views/passwords/preliminary.html.erb:4
#: ../../../app/views/urls/preliminary.html.erb:4
msgid "Click Here to Proceed"
msgstr ""

Expand Down Expand Up @@ -1203,22 +1203,22 @@ msgstr[1] ""
msgid "(whichever occurs first)."
msgstr ""

#: ../../../app/views/file_pushes/show.html.erb:56
#: ../../../app/views/file_pushes/show.html.erb:57
#: ../../../app/views/passwords/show.html.erb:37
msgid "Delete This Secret Link Now"
msgstr ""

#: ../../../app/views/file_pushes/show.html.erb:68
#: ../../../app/views/file_pushes/show.html.erb:69
#: ../../../app/views/passwords/show.html.erb:52
msgid "Delete?"
msgstr ""

#: ../../../app/views/file_pushes/show.html.erb:72
#: ../../../app/views/file_pushes/show.html.erb:73
#: ../../../app/views/passwords/show.html.erb:56
msgid "This will expire this secret link and "
msgstr ""

#: ../../../app/views/file_pushes/show.html.erb:73
#: ../../../app/views/file_pushes/show.html.erb:74
#: ../../../app/views/passwords/show.html.erb:57
msgid "delete all related content from the database forever"
msgstr ""
Expand Down
Binary file modified config/locales/gettext/ca/LC_MESSAGES/app.mo
Binary file not shown.
30 changes: 15 additions & 15 deletions config/locales/gettext/ca/app.po
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# Catalan translations for pwpush package.
# Copyright (C) 2024 pwpush
# Copyright (C) 2025 pwpush
# This file is distributed under the same license as the pwpush package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2024.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2025.
#
msgid ""
msgstr ""
"Project-Id-Version: pwpush 1.0\n"
"Report-Msgid-Bugs-To: [email protected]\n"
"POT-Creation-Date: 2024-12-27 10:59+0100\n"
"PO-Revision-Date: 2024-12-27 10:59+0100\n"
"POT-Creation-Date: 2025-02-10 21:16+0100\n"
"PO-Revision-Date: 2025-02-10 21:16+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Catalan\n"
"Language: ca\n"
Expand Down Expand Up @@ -305,7 +305,7 @@ msgstr "Es generarà un nou testimoni al seu lloc."

#: ../../../app/views/devise/registrations/token.html.erb:49
#: ../../../app/views/file_pushes/audit.html.erb:214
#: ../../../app/views/file_pushes/show.html.erb:74
#: ../../../app/views/file_pushes/show.html.erb:75
#: ../../../app/views/passwords/audit.html.erb:145
#: ../../../app/views/passwords/show.html.erb:58
#: ../../../app/views/urls/audit.html.erb:132
Expand All @@ -314,7 +314,7 @@ msgstr "N'esteu segur?"

#: ../../../app/views/devise/registrations/token.html.erb:52
#: ../../../app/views/file_pushes/audit.html.erb:217
#: ../../../app/views/file_pushes/show.html.erb:77
#: ../../../app/views/file_pushes/show.html.erb:78
#: ../../../app/views/passwords/audit.html.erb:148
#: ../../../app/views/passwords/show.html.erb:61
#: ../../../app/views/urls/audit.html.erb:135
Expand All @@ -327,7 +327,7 @@ msgstr "Suprimeix i regenera"

#: ../../../app/views/devise/registrations/token.html.erb:53
#: ../../../app/views/file_pushes/audit.html.erb:218
#: ../../../app/views/file_pushes/show.html.erb:78
#: ../../../app/views/file_pushes/show.html.erb:79
#: ../../../app/views/passwords/audit.html.erb:149
#: ../../../app/views/passwords/show.html.erb:62
#: ../../../app/views/urls/audit.html.erb:136
Expand Down Expand Up @@ -766,7 +766,7 @@ msgstr ""
"antindrà a partir d'ara."

#: ../../../app/views/file_pushes/audit.html.erb:218
#: ../../../app/views/file_pushes/show.html.erb:78
#: ../../../app/views/file_pushes/show.html.erb:79
#: ../../../app/views/passwords/audit.html.erb:149
#: ../../../app/views/passwords/show.html.erb:62
#: ../../../app/views/urls/audit.html.erb:136
Expand Down Expand Up @@ -1024,9 +1024,9 @@ msgstr "Introduïu la contrasenya secreta"
msgid "Go"
msgstr "Vés"

#: ../../../app/views/file_pushes/preliminary.html.erb:3
#: ../../../app/views/passwords/preliminary.html.erb:3
#: ../../../app/views/urls/preliminary.html.erb:3
#: ../../../app/views/file_pushes/preliminary.html.erb:4
#: ../../../app/views/passwords/preliminary.html.erb:4
#: ../../../app/views/urls/preliminary.html.erb:4
msgid "Click Here to Proceed"
msgstr "Feu clic aquí per continuar"

Expand Down Expand Up @@ -1250,22 +1250,22 @@ msgstr[1] "més vistes"
msgid "(whichever occurs first)."
msgstr "(el que passi primer)"

#: ../../../app/views/file_pushes/show.html.erb:56
#: ../../../app/views/file_pushes/show.html.erb:57
#: ../../../app/views/passwords/show.html.erb:37
msgid "Delete This Secret Link Now"
msgstr "Suprimeix aquest enllaç secret ara"

#: ../../../app/views/file_pushes/show.html.erb:68
#: ../../../app/views/file_pushes/show.html.erb:69
#: ../../../app/views/passwords/show.html.erb:52
msgid "Delete?"
msgstr "Suprimir?"

#: ../../../app/views/file_pushes/show.html.erb:72
#: ../../../app/views/file_pushes/show.html.erb:73
#: ../../../app/views/passwords/show.html.erb:56
msgid "This will expire this secret link and "
msgstr "Això caducarà aquest enllaç secret i"

#: ../../../app/views/file_pushes/show.html.erb:73
#: ../../../app/views/file_pushes/show.html.erb:74
#: ../../../app/views/passwords/show.html.erb:57
msgid "delete all related content from the database forever"
msgstr "suprimiu per sempre tot el contingut relacionat de la base de dades"
Expand Down
Binary file modified config/locales/gettext/cs/LC_MESSAGES/app.mo
Binary file not shown.
30 changes: 15 additions & 15 deletions config/locales/gettext/cs/app.po
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# Czech translations for pwpush package.
# Copyright (C) 2024 pwpush
# Copyright (C) 2025 pwpush
# This file is distributed under the same license as the pwpush package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2024.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2025.
#
msgid ""
msgstr ""
"Project-Id-Version: pwpush 1.0\n"
"Report-Msgid-Bugs-To: [email protected]\n"
"POT-Creation-Date: 2024-12-27 10:59+0100\n"
"PO-Revision-Date: 2024-12-27 10:59+0100\n"
"POT-Creation-Date: 2025-02-10 21:16+0100\n"
"PO-Revision-Date: 2025-02-10 21:16+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Czech\n"
"Language: cs\n"
Expand Down Expand Up @@ -292,7 +292,7 @@ msgstr "Na jeho místo bude vygenerován nový token."

#: ../../../app/views/devise/registrations/token.html.erb:49
#: ../../../app/views/file_pushes/audit.html.erb:214
#: ../../../app/views/file_pushes/show.html.erb:74
#: ../../../app/views/file_pushes/show.html.erb:75
#: ../../../app/views/passwords/audit.html.erb:145
#: ../../../app/views/passwords/show.html.erb:58
#: ../../../app/views/urls/audit.html.erb:132
Expand All @@ -301,7 +301,7 @@ msgstr "Jste si jistí?"

#: ../../../app/views/devise/registrations/token.html.erb:52
#: ../../../app/views/file_pushes/audit.html.erb:217
#: ../../../app/views/file_pushes/show.html.erb:77
#: ../../../app/views/file_pushes/show.html.erb:78
#: ../../../app/views/passwords/audit.html.erb:148
#: ../../../app/views/passwords/show.html.erb:61
#: ../../../app/views/urls/audit.html.erb:135
Expand All @@ -314,7 +314,7 @@ msgstr "Smazat a obnovit"

#: ../../../app/views/devise/registrations/token.html.erb:53
#: ../../../app/views/file_pushes/audit.html.erb:218
#: ../../../app/views/file_pushes/show.html.erb:78
#: ../../../app/views/file_pushes/show.html.erb:79
#: ../../../app/views/passwords/audit.html.erb:149
#: ../../../app/views/passwords/show.html.erb:62
#: ../../../app/views/urls/audit.html.erb:136
Expand Down Expand Up @@ -753,7 +753,7 @@ msgid ""
msgstr "Protokol auditu (včetně budoucích pokusů o zobrazení) bude nadále udržován."

#: ../../../app/views/file_pushes/audit.html.erb:218
#: ../../../app/views/file_pushes/show.html.erb:78
#: ../../../app/views/file_pushes/show.html.erb:79
#: ../../../app/views/passwords/audit.html.erb:149
#: ../../../app/views/passwords/show.html.erb:62
#: ../../../app/views/urls/audit.html.erb:136
Expand Down Expand Up @@ -1011,9 +1011,9 @@ msgstr "Zadejte tajnou přístupovou frázi"
msgid "Go"
msgstr "Jít"

#: ../../../app/views/file_pushes/preliminary.html.erb:3
#: ../../../app/views/passwords/preliminary.html.erb:3
#: ../../../app/views/urls/preliminary.html.erb:3
#: ../../../app/views/file_pushes/preliminary.html.erb:4
#: ../../../app/views/passwords/preliminary.html.erb:4
#: ../../../app/views/urls/preliminary.html.erb:4
msgid "Click Here to Proceed"
msgstr "Pokračujte kliknutím sem"

Expand Down Expand Up @@ -1240,22 +1240,22 @@ msgstr[2] "více zhlédnutí"
msgid "(whichever occurs first)."
msgstr "(dle toho co nastane dřív)"

#: ../../../app/views/file_pushes/show.html.erb:56
#: ../../../app/views/file_pushes/show.html.erb:57
#: ../../../app/views/passwords/show.html.erb:37
msgid "Delete This Secret Link Now"
msgstr "Smazat tento tajný odkaz teď"

#: ../../../app/views/file_pushes/show.html.erb:68
#: ../../../app/views/file_pushes/show.html.erb:69
#: ../../../app/views/passwords/show.html.erb:52
msgid "Delete?"
msgstr "Vymazat?"

#: ../../../app/views/file_pushes/show.html.erb:72
#: ../../../app/views/file_pushes/show.html.erb:73
#: ../../../app/views/passwords/show.html.erb:56
msgid "This will expire this secret link and "
msgstr "Tím vyprší platnost tohoto tajného odkazu a"

#: ../../../app/views/file_pushes/show.html.erb:73
#: ../../../app/views/file_pushes/show.html.erb:74
#: ../../../app/views/passwords/show.html.erb:57
msgid "delete all related content from the database forever"
msgstr "navždy odstranit veškerý související obsah z databáze"
Expand Down
Binary file modified config/locales/gettext/da/LC_MESSAGES/app.mo
Binary file not shown.
Loading
Loading