2FAuth/app/Http/Controllers/QrCodeController.php

72 lines
1.7 KiB
PHP
Raw Normal View History

2020-01-03 17:25:56 +01:00
<?php
namespace App\Http\Controllers;
use Zxing\QrReader;
2020-01-10 22:52:47 +01:00
use OTPHP\TOTP;
use OTPHP\Factory;
use Assert\AssertionFailedException;
2020-01-03 17:25:56 +01:00
use Illuminate\Http\File;
use Illuminate\Http\Request;
2020-01-03 17:25:56 +01:00
use Illuminate\Support\Facades\Storage;
class QrCodecontroller extends Controller
{
/**
* Handle uploaded qr code image
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function decode(Request $request)
{
// 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
$uri = urldecode($qrcode->text());
2020-01-03 17:25:56 +01:00
// delete uploaded file
Storage::delete($path);
2020-01-03 17:25:56 +01:00
2020-01-10 22:52:47 +01:00
// return the OTP object
try {
2020-01-03 17:25:56 +01:00
2020-01-10 22:52:47 +01:00
$otp = Factory::loadFromProvisioningUri($uri);
2020-01-10 22:52:47 +01:00
if(!$otp->getIssuer()) {
$otp->setIssuer($otp->getLabel());
$otp->setLabel('');
}
2020-01-03 17:25:56 +01:00
2020-01-10 22:52:47 +01:00
// returned object
$twofaccount = (object) array(
'service' => $otp->getIssuer(),
'account' => $otp->getLabel(),
'uri' => $uri,
'icon' => '',
'options' => $otp->getParameters()
);
2020-01-03 17:25:56 +01:00
2020-01-10 22:52:47 +01:00
return response()->json($twofaccount, 200);
2020-01-03 17:25:56 +01:00
}
2020-01-10 22:52:47 +01:00
catch (AssertionFailedException $exception) {
2020-01-03 17:25:56 +01:00
$error = \Illuminate\Validation\ValidationException::withMessages([
'qrcode' => __('errors.response.no_valid_otp')
]);
throw $error;
2020-01-03 17:25:56 +01:00
}
}
2020-01-03 17:25:56 +01:00
}