mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-23 08:43:19 +01:00
51 lines
1.0 KiB
PHP
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;
|
|
}
|
|
}
|