mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-24 09:13:29 +01:00
72 lines
1.8 KiB
PHP
72 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Http\File;
|
|
use Illuminate\Support\Facades\Storage;
|
|
use Zxing\QrReader;
|
|
use App\TwoFAccount;
|
|
|
|
class QrCodecontroller extends Controller
|
|
{
|
|
/**
|
|
* Handle uploaded qr code image
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function decode(Request $request)
|
|
{
|
|
|
|
if($request->hasFile('qrcode')){
|
|
|
|
$path = $request->file('qrcode')->store('qrcodes');
|
|
|
|
$qrcode = new QrReader(storage_path('app/' . $path));
|
|
$uri = urldecode($qrcode->text());
|
|
|
|
$uriChunks = explode('?', $uri);
|
|
|
|
foreach(explode('&', $uriChunks[1]) as $option) {
|
|
$option = explode('=', $option);
|
|
$options[$option[0]] = $option[1];
|
|
}
|
|
|
|
$account = $service = '';
|
|
|
|
$serviceChunks = explode(':', str_replace('otpauth://totp/', '', $uriChunks[0]));
|
|
|
|
if( count($serviceChunks) > 1 ) {
|
|
$account = $serviceChunks[1];
|
|
}
|
|
|
|
$service = $serviceChunks[0];
|
|
|
|
if( strstr( $service, '@') ) {
|
|
$account = $service;
|
|
$service = '';
|
|
}
|
|
|
|
if( empty($service) & !empty($options['issuer']) ) {
|
|
$service = $options['issuer'];
|
|
}
|
|
|
|
$twofaccount = (object) array(
|
|
'service' => $service,
|
|
'account' => $account,
|
|
'uri' => $uri,
|
|
'icon' => '',
|
|
'options' => $options
|
|
);
|
|
|
|
Storage::delete($path);
|
|
|
|
return response()->json($twofaccount, 201);
|
|
}
|
|
else {
|
|
return response()->json('no file in $request', 204);
|
|
}
|
|
}
|
|
}
|