initial commit
This commit is contained in:
71
index.php
Normal file
71
index.php
Normal file
@ -0,0 +1,71 @@
|
||||
<?php
|
||||
session_start();
|
||||
require __DIR__ . '/vendor/autoload.php';
|
||||
|
||||
use PhotoPrismUpload\API\PhotoPrism;
|
||||
|
||||
?>
|
||||
<html>
|
||||
<head>
|
||||
|
||||
</head>
|
||||
<body></body>
|
||||
<?php
|
||||
|
||||
if (!isset($_POST['submit'])) {
|
||||
?>
|
||||
<script>
|
||||
window.tooLarge = false;
|
||||
window.tooManyFiles = false;
|
||||
function validateForm() {
|
||||
const isInvalid = window.tooLarge || window.tooManyFiles;
|
||||
console.log('Validating', window.tooLarge, window.tooManyFiles, isInvalid);
|
||||
if (isInvalid) {
|
||||
const errorDiv = document.getElementById('error');
|
||||
errorDiv.innerText = '';
|
||||
errorDiv.innerText += window.tooLarge ? 'Zu groß, Upload muss weniger als 200MB sein. ' : '';
|
||||
errorDiv.innerText += window.tooManyFiles ? 'Zu viele Dateien, maximal 200 erlaubt. ' : '';
|
||||
errorDiv.style.display = 'block';
|
||||
}
|
||||
return !isInvalid;
|
||||
}
|
||||
</script>
|
||||
<form method="POST" enctype="multipart/form-data" onsubmit="return validateForm();">
|
||||
<input multiple type="file" name="files[]" id="input" />
|
||||
<input type="submit" name="submit" value="Upload" />
|
||||
</form>
|
||||
<div id="error" style="display:none"></div>
|
||||
<script>
|
||||
const input = document.getElementById('input')
|
||||
|
||||
input.addEventListener('change', (event) => {
|
||||
const errorDiv = document.getElementById('error');
|
||||
errorDiv.innerText = '';
|
||||
errorDiv.style.display = 'none';
|
||||
|
||||
const target = event.target;
|
||||
let totalSize = 0;
|
||||
if (target.files) {
|
||||
for (file of target.files) {
|
||||
totalSize += file.size;
|
||||
}
|
||||
}
|
||||
const sizeInMb = totalSize / 1000 / 1000;
|
||||
window.tooLarge = sizeInMb >= 200;
|
||||
console.log('Total size:', totalSize, 'too large: ', window.tooLarge);
|
||||
window.tooManyFiles = target.files.length > 200;
|
||||
console.log('Total files:', target.files.length, 'too many: ', window.tooManyFiles);
|
||||
});
|
||||
</script>
|
||||
<?php
|
||||
die();
|
||||
}
|
||||
|
||||
$config = require(__DIR__ . '/config.php');
|
||||
$api = new PhotoPrism($config);
|
||||
try {
|
||||
$api->login();
|
||||
$api->getAlbums();
|
||||
} catch (\Exception $e) {
|
||||
die('Fehler: ' . $e->getMessage());
|
||||
}
|
Reference in New Issue
Block a user