125 lines
No EOL
5.5 KiB
PHP
125 lines
No EOL
5.5 KiB
PHP
<?php
|
|
|
|
/*
|
|
* Copyright 2008-2023 Anael MOBILIA
|
|
*
|
|
* This file is part of image-heberg.fr.
|
|
*
|
|
* image-heberg.fr is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* image-heberg.fr is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with image-heberg.fr. If not, see <http://www.gnu.org/licenses/>
|
|
*/
|
|
|
|
namespace ImageHeberg;
|
|
|
|
require 'config/config.php';
|
|
|
|
// Anti-flood
|
|
$maSession = new SessionObject();
|
|
$maSession->setFlag();
|
|
|
|
require _TPL_TOP_;
|
|
?>
|
|
<h1 class="mb-3"><small>Envoyer une image</small></h1>
|
|
<?php if (isset($_GET['delete_success'])) : ?>
|
|
<div class="alert alert-success">
|
|
<span class="glyphicon glyphicon-ok"></span>
|
|
|
|
<b>L'image a été supprimée avec succès !</b>
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if (HelperSysteme::getHDDUsage() > _QUOTA_MAXIMAL_IMAGES_GO_) : ?>
|
|
<div class="alert alert-danger">
|
|
<?= _SITE_NAME_ ?> est victime de son succès : trop d'images ont été envoyées
|
|
et tout l'espace disque acheté est utilisé !
|
|
<br>
|
|
Si vous souhaitez soutenir le projet, merci d'utiliser <a href="contact.php">le formulaire de contact</a>.
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if (_TOR_DISABLE_UPLOAD_ && Tor::checkIp($_SERVER['REMOTE_ADDR'])) : ?>
|
|
<div class="alert alert-danger">
|
|
Suite à un abus d'utilisation de <?= _SITE_NAME_ ?>, l'envoi d'image est impossible depuis le réseau Tor.
|
|
</div>
|
|
<?php endif; ?>
|
|
<div class="alert alert-info">
|
|
<?= _SITE_NAME_ ?> est un service gratuit vous permettant d'héberger vos images sur internet.
|
|
<ul>
|
|
<li>
|
|
Image de type JPG, PNG, GIF
|
|
</li>
|
|
<li>
|
|
Taille maximale : <?= round(_IMAGE_POIDS_MAX_ / 1048576, 1) ?> Mo
|
|
</li>
|
|
<li>
|
|
Dimensions maximales : <?= _IMAGE_DIMENSION_MAX_ ?> x <?= _IMAGE_DIMENSION_MAX_ ?> pixels
|
|
(hauteur x largeur)
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<form enctype="multipart/form-data" action="<?= _URL_HTTPS_ ?>upload.php" method="post" class="mb-3">
|
|
<div class="mb-3">
|
|
<label for="fichier" class="col-mb-3 form-label">Fichier à envoyer</label>
|
|
<div class="col-md-9">
|
|
<input type="file" accept="image/*" name="fichier" id="fichier" required="required" <?= (HelperSysteme::getHDDUsage() > _QUOTA_MAXIMAL_IMAGES_GO_) ? 'disabled="disabled"' : '' ?> class="form-control">
|
|
</div>
|
|
<div class="help-block">
|
|
Tout envoi de fichier implique l'acceptation des
|
|
<a href="cgu.php">Conditions Générales d'Utilisation</a> du service.
|
|
</div>
|
|
</div>
|
|
<h3>Options</h3>
|
|
<span class="help-block"><em>Le ratio de l'image sera conservé.</em></span>
|
|
<div class="mb-3">
|
|
<label for="angleRotation" class="col-mb-3 form-label">Rotation de l'image</label>
|
|
<div class="col-md-9">
|
|
<select name="angleRotation" id="angleRotation" class="form-select">
|
|
<option value="" selected>-- Ne pas effectuer --</option>
|
|
<optgroup label="Rotation vers la droite (sens horaire)">
|
|
<option value="90">90° (¼ tour)</option>
|
|
<option value="180">180° (½ tour)</option>
|
|
<option value="270">270° (¾ tour)</option>
|
|
</optgroup>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="dimMiniature" class="col-mb-3 form-label">Faire une miniature</label>
|
|
<div class="col-md-9">
|
|
<select name="dimMiniature" id="dimMiniature" class="form-select">
|
|
<option value="" selected>-- Ne pas effectuer --</option>
|
|
<option value="100x100">Avatar (100x100)</option>
|
|
<option value="320x240">Miniature (320x240)</option>
|
|
<option value="640x480">Miniature XL (640x480)</option>
|
|
<option value="700x700">Miniature Forum (700x700)</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="redimImage" class="col-mb-3 form-label">Redimensionner l'image</label>
|
|
<div class="col-md-9">
|
|
<select name="redimImage" id="redimImage" class="form-select">
|
|
<option value="" selected>-- Ne pas effectuer --</option>
|
|
<option value="320x240">320x240</option>
|
|
<option value="640x480">640x480</option>
|
|
<option value="800x600">800x600</option>
|
|
<option value="1024x768">1024x768</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<button class="btn btn-success" name="Submit" type="submit"><span class="bi-cloud-arrow-up-fill"></span> Envoyer</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<?php require _TPL_BOTTOM_; ?>
|