97 lines
3.6 KiB
PHP
97 lines
3.6 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Illuminate\Support\Facades\Http;
|
|
use Illuminate\Support\Facades\Validator;
|
|
|
|
class ZektoSettingsController extends Controller
|
|
{
|
|
/**
|
|
* Update Zekto settings
|
|
*/
|
|
public function update(Request $request)
|
|
{
|
|
if (Auth::user()->can('manage-biomatric-attedance-settings')) {
|
|
$validator = Validator::make($request->all(), [
|
|
'zkteco_api_url' => 'required|url',
|
|
'zkteco_username' => 'required|string|max:255',
|
|
'zkteco_password' => 'required|string|max:255',
|
|
]);
|
|
|
|
if ($validator->fails()) {
|
|
return redirect()->back()->withErrors($validator)->withInput();
|
|
}
|
|
|
|
// Update settings
|
|
updateSetting('zkteco_api_url', $request->zkteco_api_url);
|
|
updateSetting('zkteco_username', $request->zkteco_username);
|
|
updateSetting('zkteco_password', $request->zkteco_password);
|
|
updateSetting('isZktecoSync', 0);
|
|
|
|
return redirect()->back()->with('success', __('ZKTeco settings updated successfully'));
|
|
} else {
|
|
return redirect()->back()->with('error', __('Permission Denied.'));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Generate auth token from ZKTeco API
|
|
*/
|
|
public function generateToken(Request $request)
|
|
{
|
|
if (Auth::user()->can('manage-biomatric-attedance-settings')) {
|
|
$validator = Validator::make($request->all(), [
|
|
'zkteco_api_url' => 'required|url',
|
|
'zkteco_username' => 'required|string',
|
|
'zkteco_password' => 'required|string',
|
|
]);
|
|
|
|
if ($validator->fails()) {
|
|
return redirect()->back()->withErrors($validator)->withInput();
|
|
}
|
|
|
|
try {
|
|
$url = "$request->zkteco_api_url" . '/api-token-auth/';
|
|
$headers = array(
|
|
"Content-Type: application/json"
|
|
);
|
|
$data = array(
|
|
"username" => $request->zkteco_username,
|
|
"password" => $request->zkteco_password
|
|
);
|
|
|
|
$ch = curl_init();
|
|
curl_setopt($ch, CURLOPT_URL, $url);
|
|
curl_setopt($ch, CURLOPT_POST, true);
|
|
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
|
|
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
|
|
|
$response = curl_exec($ch);
|
|
curl_close($ch);
|
|
$auth_token = json_decode($response, true);
|
|
if (isset($auth_token['token'])) {
|
|
// Store the generated token using existing settings structure
|
|
updateSetting('isZktecoSync', 1);
|
|
updateSetting('zkteco_auth_token', $auth_token['token']);
|
|
|
|
return redirect()->back()->with([
|
|
'success' => __('Auth token generated successfully'),
|
|
'token' => $auth_token['token']
|
|
]);
|
|
} else {
|
|
throw new \Exception(isset($auth_token['non_field_errors']) ? $auth_token['non_field_errors'][0] : "Something went wrong please try again");
|
|
}
|
|
} catch (\Exception $e) {
|
|
|
|
return redirect()->back()->with('error', $e->getMessage());
|
|
}
|
|
} else {
|
|
return redirect()->back()->with('error', __('Permission Denied.'));
|
|
}
|
|
}
|
|
}
|