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

112 lines
2.7 KiB
PHP
Raw Normal View History

2019-05-20 07:37:41 +02:00
<?php
namespace App\Http\Controllers;
use App\TwoFAccount;
2019-05-20 07:37:41 +02:00
use Illuminate\Http\Request;
class TwoFAccountController extends Controller
2019-05-20 07:37:41 +02:00
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
return response()->json(TwoFAccount::all()->toArray());
2019-05-20 07:37:41 +02:00
}
/**
* Store a newly created resource in storage.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function store(Request $request)
{
$twofaccount = TwoFAccount::create([
2019-05-20 07:37:41 +02:00
'name' => $request->name,
'secret' => $request->secret
]);
$data = [
'data' => $twofaccount,
'status' => (bool) $twofaccount,
'message' => $twofaccount ? 'Account Created' : 'Error Creating Account',
2019-05-20 07:37:41 +02:00
];
return response()->json($data);
}
2019-05-20 07:37:41 +02:00
/**
* Display the specified resource.
*
* @param \App\TwoFAccount $twofaccount
2019-05-20 07:37:41 +02:00
* @return \Illuminate\Http\Response
*/
public function show(TwoFAccount $twofaccount)
2019-05-20 07:37:41 +02:00
{
return response()->json($twofaccount);
2019-05-20 07:37:41 +02:00
}
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param \App\TwoFAccount $twofaccount
2019-05-20 07:37:41 +02:00
* @return \Illuminate\Http\Response
*/
public function update(Request $request, TwoFAccount $twofaccount)
2019-05-20 07:37:41 +02:00
{
$status = $twofaccount->update($request->all());
2019-05-20 07:37:41 +02:00
return response()->json([
'status' => $status,
2019-05-22 00:49:27 +02:00
'message' => $status ? 'Account Updated' : 'Error Updating Account'
2019-05-20 07:37:41 +02:00
]);
//return response()->json($request, 200);
}
2019-05-20 07:37:41 +02:00
/**
* Remove the specified resource from storage.
*
* @param \App\TwoFAccount $twofaccount
2019-05-20 07:37:41 +02:00
* @return \Illuminate\Http\Response
*/
public function destroy(TwoFAccount $twofaccount)
2019-05-20 07:37:41 +02:00
{
$status = $twofaccount->delete();
2019-05-20 07:37:41 +02:00
return response()->json([
'status' => $status,
2019-05-22 00:49:27 +02:00
'message' => $status ? 'Account Deleted' : 'Error Deleting Account'
2019-05-20 07:37:41 +02:00
]);
}
2019-05-22 00:49:27 +02:00
/**
* Remove the specified soft deleted resource from storage.
*
* @param \App\TwoFAccount $twofaccount
* @return \Illuminate\Http\Response
*/
public function forceDestroy($id)
{
$twofaccount = TwoFAccount::onlyTrashed()->findOrFail($id);
$status = $twofaccount->forceDelete();
return response()->json([
'status' => $status,
'message' => $status ? 'Account Deleted permanently' : 'Error Deleting Account'
]);
}
2019-05-20 07:37:41 +02:00
}