mirror of
				https://github.com/v2board/v2board.git
				synced 2025-11-04 11:21:46 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			38 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Http\Controllers\User;
 | 
						|
 | 
						|
use App\Models\Payment;
 | 
						|
use App\Utils\Dict;
 | 
						|
use Illuminate\Http\Request;
 | 
						|
use App\Http\Controllers\Controller;
 | 
						|
 | 
						|
class CommController extends Controller
 | 
						|
{
 | 
						|
    public function config()
 | 
						|
    {
 | 
						|
        return response([
 | 
						|
            'data' => [
 | 
						|
                'is_telegram' => (int)config('v2board.telegram_bot_enable', 0),
 | 
						|
                'telegram_discuss_link' => config('v2board.telegram_discuss_link'),
 | 
						|
                'stripe_pk' => config('v2board.stripe_pk_live'),
 | 
						|
                'withdraw_methods' => config('v2board.commission_withdraw_method', Dict::WITHDRAW_METHOD_WHITELIST_DEFAULT),
 | 
						|
                'withdraw_close' => (int)config('v2board.withdraw_close_enable', 0),
 | 
						|
                'currency' => config('v2board.currency', 'CNY'),
 | 
						|
                'currency_symbol' => config('v2board.currency_symbol', '¥')
 | 
						|
            ]
 | 
						|
        ]);
 | 
						|
    }
 | 
						|
 | 
						|
    public function getStripePublicKey(Request $request)
 | 
						|
    {
 | 
						|
        $payment = Payment::where('id', $request->input('id'))
 | 
						|
            ->where('payment', 'StripeCredit')
 | 
						|
            ->first();
 | 
						|
        if (!$payment) abort(500, 'payment is not found');
 | 
						|
        return response([
 | 
						|
            'data' => $payment->config['stripe_pk_live']
 | 
						|
        ]);
 | 
						|
    }
 | 
						|
}
 |