nextcloud-custom-apps-face-.../git_facerecognition/lib/Service/DownloadService.php
2024-09-03 09:12:12 +05:00

119 lines
3.0 KiB
PHP

<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019-2023 Matias De lellis <mati86dl@gmail.com>
*
* @author Matias De lellis <mati86dl@gmail.com>
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
namespace OCA\FaceRecognition\Service;
use OCP\ITempManager;
class DownloadService {
/** @var ITempManager */
private $tempManager;
public function __construct(ITempManager $tempManager)
{
$this->tempManager = $tempManager;
}
/**
* Download a file in a temporary folder
*
* @param string $fileUrl url to download.
* @return string temp file downloaded.
*
* @throws \Exception
*/
public function downloadFile(string $fileUrl): string {
$tempFolder = $this->tempManager->getTemporaryFolder('/facerecognition/');
$tempFile = $tempFolder . basename($fileUrl);
$fp = fopen($tempFile, 'w+');
if ($fp === false) {
throw new \Exception('Could not open the file to write: ' . $tempFile);
}
$ch = curl_init($fileUrl);
if ($ch === false) {
throw new \Exception('Curl error: unable to initialize curl');
}
curl_setopt_array($ch, [
CURLOPT_FILE => $fp,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_SSL_VERIFYPEER => false,
CURLOPT_SSL_VERIFYHOST => 0,
CURLOPT_USERAGENT => 'Nextcloud-Face-Recognition-Service',
]);
if (curl_exec($ch) === false) {
throw new \Exception('Curl error: ' . curl_error($ch));
}
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
if ($httpCode !== 200) {
$statusCodes = [
400 => 'Bad request',
401 => 'Unauthorized',
403 => 'Forbidden',
404 => 'Not Found',
500 => 'Internal Server Error',
502 => 'Bad Gateway',
503 => 'Service Unavailable',
504 => 'Gateway Timeout',
];
$message = 'Download failed';
if(isset($statusCodes[$httpCode])) {
$message .= ' - ' . $statusCodes[$httpCode] . ' (HTTP ' . $httpCode . ')';
} else {
$message .= ' - HTTP status code: ' . $httpCode;
}
$curlErrorMessage = curl_error($ch);
if(!empty($curlErrorMessage)) {
$message .= ' - curl error message: ' . $curlErrorMessage;
}
$message .= ' - URL: ' . htmlentities($fileUrl);
throw new \Exception($message);
}
curl_close($ch);
fclose($fp);
return $tempFile;
}
/**
* Remove any temporary file from the service.
*
* @return void
*/
public function clean(): void {
$this->tempManager->clean();
}
}