<?php
namespace App\Http\Controllers\Admin;
use App\Http\Controllers\Controller;
use App\Providers\Admin\BasicSettingsProvider;
use Exception;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Validator;
class BroadcastingController extends Controller
{
public function configUpdate(Request $request) {
$validator = Validator::make($request->all(),[
'broadcast_method' => 'required|string|in:pusher',
'broadcast_app_id' => 'required_if:broadcast_method,pusher|string|max:255',
'broadcast_primary_key' => 'required_if:broadcast_method,pusher|string|max:255',
'broadcast_secret_key' => 'required_if:broadcast_method,pusher|string|max:255',
'broadcast_cluster' => 'required_if:broadcast_method,pusher|string|max:50',
]);
$validated = $validator->validate();
$validated = replace_array_key($validated,"broadcast_");
$basic_setting = BasicSettingsProvider::get();
try{
$basic_setting->update([
'broadcast_config' => $validated,
]);
modifyEnv([
"BROADCAST_DRIVER" => remove_spaces($validated['method']),
"PUSHER_APP_ID" => remove_spaces($validated['app_id']),
"PUSHER_APP_KEY" => remove_spaces($validated['primary_key']),
"PUSHER_APP_SECRET" => remove_spaces($validated['secret_key']),
"PUSHER_APP_CLUSTER" => remove_spaces($validated['cluster']),
]);
}catch(Exception $e) {
return back()->with(['error' => ['Something went worng! Please try again.']]);
}
return back()->with(['success' => ['Broadcast configuration updated successfully!']]);
}
}
Checks the status of a payment.
**Response: SUCCESS (200 OK)**
{
"message": {
"success": [
"Success"
]
},
"data": {
"token": "2zMRmT3KeYT2BWMAyGhqEfuw4tOYOfGXKeyKqehZ8mF1E35hMwE69gPpyo3e",
"trx_id": "CP44657864",
"payer": {
"username": "testuser",
"email": "user@appdevs.net"
}
"status": "Test",
},
"type": "success"
}