123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- <?php
- namespace App\Http\Controllers\Admin;
- use App\Http\Requests\Admin\PaymentSave;
- use App\Services\PaymentService;
- use App\Utils\Helper;
- use Illuminate\Http\Request;
- use App\Http\Controllers\Controller;
- use App\Models\Payment;
- use Illuminate\Support\Facades\DB;
- class PaymentController extends Controller
- {
- public function getPaymentMethods()
- {
- $methods = [];
- foreach (glob(base_path('app//Payments') . '/*.php') as $file) {
- array_push($methods, pathinfo($file)['filename']);
- }
- return response([
- 'data' => $methods
- ]);
- }
- public function fetch()
- {
- $payments = Payment::orderBy('sort', 'ASC')->get();
- foreach ($payments as $k => $v) {
- $notifyUrl = url("/api/v1/guest/payment/notify/{$v->payment}/{$v->uuid}");
- if ($v->notify_domain) {
- $parseUrl = parse_url($notifyUrl);
- $notifyUrl = $v->notify_domain . $parseUrl['path'];
- }
- $payments[$k]['notify_url'] = $notifyUrl;
- }
- return response([
- 'data' => $payments
- ]);
- }
- public function getPaymentForm(Request $request)
- {
- $paymentService = new PaymentService($request->input('payment'), $request->input('id'));
- return response([
- 'data' => $paymentService->form()
- ]);
- }
- public function show(Request $request)
- {
- $payment = Payment::find($request->input('id'));
- if (!$payment) abort(500, '支付方式不存在');
- $payment->enable = !$payment->enable;
- if (!$payment->save()) abort(500, '保存失败');
- return response([
- 'data' => true
- ]);
- }
- public function save(Request $request)
- {
- if (!config('v2board.app_url')) {
- abort(500, '请在站点配置中配置站点地址');
- }
- $params = $request->validate([
- 'name' => 'required',
- 'icon' => 'nullable',
- 'payment' => 'required',
- 'config' => 'required',
- 'notify_domain' => 'nullable|url',
- 'handling_fee_fixed' => 'nullable|integer',
- 'handling_fee_percent' => 'nullable|numeric|between:0.1,100'
- ], [
- 'name.required' => '显示名称不能为空',
- 'payment.required' => '网关参数不能为空',
- 'config.required' => '配置参数不能为空',
- 'notify_domain.url' => '自定义通知域名格式有误',
- 'handling_fee_fixed.integer' => '固定手续费格式有误',
- 'handling_fee_percent.between' => '百分比手续费范围须在0.1-100之间'
- ]);
- if ($request->input('id')) {
- $payment = Payment::find($request->input('id'));
- if (!$payment) abort(500, '支付方式不存在');
- try {
- $payment->update($params);
- } catch (\Exception $e) {
- abort(500, $e->getMessage());
- }
- return response([
- 'data' => true
- ]);
- }
- $params['uuid'] = Helper::randomChar(8);
- if (!Payment::create($params)) {
- abort(500, '保存失败');
- }
- return response([
- 'data' => true
- ]);
- }
- public function drop(Request $request)
- {
- $payment = Payment::find($request->input('id'));
- if (!$payment) abort(500, '支付方式不存在');
- return response([
- 'data' => $payment->delete()
- ]);
- }
- public function sort(Request $request)
- {
- $request->validate([
- 'ids' => 'required|array'
- ], [
- 'ids.required' => '参数有误',
- 'ids.array' => '参数有误'
- ]);
- DB::beginTransaction();
- foreach ($request->input('ids') as $k => $v) {
- if (!Payment::find($v)->update(['sort' => $k + 1])) {
- DB::rollBack();
- abort(500, '保存失败');
- }
- }
- DB::commit();
- return response([
- 'data' => true
- ]);
- }
- }
|