2FAuth/app/Services/QrCodeService.php
2023-03-26 17:13:32 +02:00

51 lines
1.0 KiB
PHP

<?php
namespace App\Services;
use chillerlan\QRCode\QRCode;
use chillerlan\QRCode\QROptions;
use Illuminate\Support\Facades\Log;
use Zxing\QrReader;
class QrCodeService
{
/**
* Encode a string into a QR code image
*
* @param string $data The string to encode
* @return mixed
*/
public static function encode(string $data)
{
$options = new QROptions([
'quietzoneSize' => 2,
'scale' => 8,
]);
$qrcode = new QRCode($options);
Log::info('data encoded to QR code');
return $qrcode->render($data);
}
/**
* Decode an uploaded QR code image
*
* @return string
*/
public static function decode(\Illuminate\Http\UploadedFile $file)
{
$qrcode = new QrReader($file->get(), QrReader::SOURCE_TYPE_BLOB);
$data = urldecode($qrcode->text());
if (! $data) {
throw new \App\Exceptions\InvalidQrCodeException;
}
Log::info('QR code decoded');
return $data;
}
}