2020-01-03 17:25:56 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
2020-11-02 13:39:43 +01:00
|
|
|
use Zxing\QrReader;
|
|
|
|
use App\TwoFAccount;
|
2020-04-24 09:03:00 +02:00
|
|
|
use App\Classes\Options;
|
2020-01-09 17:32:27 +01:00
|
|
|
use Illuminate\Http\Request;
|
2020-01-03 17:25:56 +01:00
|
|
|
use Illuminate\Support\Facades\Storage;
|
2020-11-05 22:47:59 +01:00
|
|
|
use chillerlan\QRCode\{QRCode, QROptions};
|
2020-01-03 17:25:56 +01:00
|
|
|
|
2020-10-11 19:14:56 +02:00
|
|
|
class QrCodeController extends Controller
|
2020-01-03 17:25:56 +01:00
|
|
|
{
|
2020-11-02 13:39:43 +01:00
|
|
|
/**
|
|
|
|
* Return a QR code image
|
|
|
|
*
|
2020-11-05 22:47:59 +01:00
|
|
|
* @param App\TwoFAccount $twofaccount
|
2020-11-02 13:39:43 +01:00
|
|
|
* @return \Illuminate\Http\Response
|
|
|
|
*/
|
|
|
|
public function show(TwoFAccount $twofaccount)
|
|
|
|
{
|
2020-11-05 22:47:59 +01:00
|
|
|
|
2020-11-02 13:39:43 +01:00
|
|
|
$options = new QROptions([
|
|
|
|
'quietzoneSize' => 2,
|
|
|
|
'scale' => 8,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$qrcode = new QRCode($options);
|
|
|
|
|
|
|
|
return response()->json(['qrcode' => $qrcode->render($twofaccount->uri)], 200);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-01-03 17:25:56 +01:00
|
|
|
/**
|
2020-11-13 14:52:24 +01:00
|
|
|
* Decode an uploaded QR Code image
|
2020-01-03 17:25:56 +01:00
|
|
|
*
|
|
|
|
* @param \Illuminate\Http\Request $request
|
|
|
|
* @return \Illuminate\Http\Response
|
|
|
|
*/
|
|
|
|
public function decode(Request $request)
|
|
|
|
{
|
|
|
|
|
2020-11-02 21:51:53 +01:00
|
|
|
if( Options::get('useBasicQrcodeReader') || $request->inputFormat === 'fileUpload') {
|
2020-01-09 16:33:32 +01:00
|
|
|
|
2020-11-12 00:18:38 +01:00
|
|
|
// The frontend send an image resource of the QR code
|
|
|
|
|
2020-04-24 09:03:00 +02:00
|
|
|
// input validation
|
|
|
|
$this->validate($request, [
|
|
|
|
'qrcode' => 'required|image',
|
|
|
|
]);
|
|
|
|
|
|
|
|
// qrcode analysis
|
|
|
|
$path = $request->file('qrcode')->store('qrcodes');
|
|
|
|
$qrcode = new QrReader(storage_path('app/' . $path));
|
2020-01-10 22:52:47 +01:00
|
|
|
|
2020-04-24 09:03:00 +02:00
|
|
|
$uri = urldecode($qrcode->text());
|
|
|
|
|
|
|
|
// delete uploaded file
|
|
|
|
Storage::delete($path);
|
|
|
|
}
|
|
|
|
else {
|
2020-11-12 00:18:38 +01:00
|
|
|
// The QR code has been flashed and the URI is already decoded
|
2020-04-24 09:03:00 +02:00
|
|
|
$this->validate($request, [
|
|
|
|
'uri' => 'required|string',
|
|
|
|
]);
|
|
|
|
|
|
|
|
$uri = $request->uri;
|
|
|
|
}
|
2020-01-03 17:25:56 +01:00
|
|
|
|
2020-01-10 22:52:47 +01:00
|
|
|
// return the OTP object
|
2020-11-12 00:18:38 +01:00
|
|
|
$twofaccount = new TwoFAccount;
|
|
|
|
$twofaccount->populateFromUri($uri);
|
2020-01-03 17:25:56 +01:00
|
|
|
|
2020-11-13 14:52:24 +01:00
|
|
|
return response()->json($twofaccount->makeVisible(['uri', 'secret', 'algorithm']), 200);
|
2020-01-03 17:25:56 +01:00
|
|
|
}
|
2020-01-09 16:33:32 +01:00
|
|
|
|
2020-01-03 17:25:56 +01:00
|
|
|
}
|