aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2020-12-30 14:30:39 +0000
committerMario <mario@mariovavti.com>2020-12-30 14:30:39 +0000
commit8db367c74353f2b86d0effeebfe84c7cc4f512ab (patch)
tree16d8c20f8cae84b440b1260894729769b8ae1f63 /Zotlabs/Module
parent2c4fabba35267a590a86e5a173243dbf82be3606 (diff)
downloadvolse-hubzilla-8db367c74353f2b86d0effeebfe84c7cc4f512ab.tar.gz
volse-hubzilla-8db367c74353f2b86d0effeebfe84c7cc4f512ab.tar.bz2
volse-hubzilla-8db367c74353f2b86d0effeebfe84c7cc4f512ab.zip
remove fallback code - it will not be required if compression is dismissed
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r--Zotlabs/Module/Attach.php19
1 files changed, 0 insertions, 19 deletions
diff --git a/Zotlabs/Module/Attach.php b/Zotlabs/Module/Attach.php
index f70366448..172f6a4bc 100644
--- a/Zotlabs/Module/Attach.php
+++ b/Zotlabs/Module/Attach.php
@@ -14,8 +14,6 @@ class Attach extends Controller {
$attach_ids = ((x($_REQUEST, 'attach_ids')) ? $_REQUEST['attach_ids'] : []);
$attach_path = ((x($_REQUEST, 'attach_path')) ? $_REQUEST['attach_path'] : '');
- $download_token = ((x($_REQUEST, 'download_token')) ? $_REQUEST['download_token'] : '');
-
$channel_id = ((x($_REQUEST, 'channel_id')) ? intval($_REQUEST['channel_id']) : 0);
$channel = channelx_by_n($channel_id);
@@ -53,7 +51,6 @@ class Attach extends Controller {
];
Verify::create('zip_token', 0, $token, json_encode($meta));
- Verify::create('download_token', 0, $download_token, $token);
json_return_and_die([
'success' => true,
@@ -72,19 +69,6 @@ class Attach extends Controller {
}
$token = ((x($_REQUEST, 'token')) ? $_REQUEST['token'] : '');
- $download_token = ((x($_REQUEST, 'download_token')) ? $_REQUEST['download_token'] : '');
-
- if(argv(1) === 'check') {
- $meta = Verify::get_meta('download_token', 0, $download_token);
-
- if(! $meta)
- killme();
-
- json_return_and_die([
- 'success' => true,
- 'token' => $meta
- ]);
- }
if(argv(1) === 'download') {
$meta = Verify::get_meta('zip_token', 0, $token);
@@ -94,9 +78,6 @@ class Attach extends Controller {
$meta = json_decode($meta, true);
- // make sure we remove the download_token in case we have not checked yet
- Verify::get_meta('download_token', 0, $download_token);
-
header('Content-Type: application/zip');
header('Content-Disposition: attachment; filename="'. $meta['zip_filename'] . '"');
header('Content-Length: ' . filesize($meta['zip_path']));