ajout params post dans une balise div webtransfer dans index.php
This commit is contained in:
parent
9c27d1c861
commit
a591fc839d
@ -36,8 +36,12 @@ class PageController extends Controller {
|
|||||||
#[FrontpageRoute(verb: 'POST', url: '/zipDeposit')]
|
#[FrontpageRoute(verb: 'POST', url: '/zipDeposit')]
|
||||||
public function post($archiveUrl, $token) {
|
public function post($archiveUrl, $token) {
|
||||||
$request = $this->request;
|
$request = $this->request;
|
||||||
|
$parameters = array('archiveUrl' => $archiveUrl, 'token' => $token);
|
||||||
|
|
||||||
// Traitement du fichier si nécessaire
|
return new TemplateResponse(
|
||||||
return new JsonResponse(['message' => 'File uploaded successfully' . $archiveUrl . " - " . $token], 200);
|
Application::APP_ID,
|
||||||
|
'index',
|
||||||
|
$parameters
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -6,6 +6,11 @@ use OCP\Util;
|
|||||||
|
|
||||||
Util::addScript(OCA\WebTransfer\AppInfo\Application::APP_ID, 'main');
|
Util::addScript(OCA\WebTransfer\AppInfo\Application::APP_ID, 'main');
|
||||||
|
|
||||||
|
$archiveUrl = isset($_['archiveUrl']) ? $_['archiveUrl'] : ''; // Valeur par défaut vide si non définie
|
||||||
|
$token = isset($_['token']) ? $_['token'] : ''; // Valeur par défaut vide si non définie
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<div id="webtransfer"></div>
|
<div id="webtransfer"
|
||||||
|
data-archive-url="<?php echo htmlspecialchars($archiveUrl); ?>"
|
||||||
|
data-token="<?php echo htmlspecialchars($token); ?>"
|
||||||
|
></div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user