mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-23 16:53:26 +01:00
72 lines
1.7 KiB
PHP
72 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Zxing\QrReader;
|
|
use OTPHP\TOTP;
|
|
use OTPHP\Factory;
|
|
use Assert\AssertionFailedException;
|
|
use Illuminate\Http\File;
|
|
use Illuminate\Http\Request;
|
|
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));
|
|
|
|
$uri = urldecode($qrcode->text());
|
|
|
|
// delete uploaded file
|
|
Storage::delete($path);
|
|
|
|
// return the OTP object
|
|
try {
|
|
|
|
$otp = Factory::loadFromProvisioningUri($uri);
|
|
|
|
if(!$otp->getIssuer()) {
|
|
$otp->setIssuer($otp->getLabel());
|
|
$otp->setLabel('');
|
|
}
|
|
|
|
// returned object
|
|
$twofaccount = (object) array(
|
|
'service' => $otp->getIssuer(),
|
|
'account' => $otp->getLabel(),
|
|
'uri' => $uri,
|
|
'icon' => '',
|
|
'options' => $otp->getParameters()
|
|
);
|
|
|
|
return response()->json($twofaccount, 200);
|
|
|
|
}
|
|
catch (AssertionFailedException $exception) {
|
|
|
|
$error = \Illuminate\Validation\ValidationException::withMessages([
|
|
'qrcode' => __('errors.response.no_valid_totp')
|
|
]);
|
|
|
|
throw $error;
|
|
|
|
}
|
|
}
|
|
|
|
}
|