mirror of
				https://github.com/v2board/v2board.git
				synced 2025-11-04 19:31:45 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			83 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			83 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Http\Controllers\User;
 | 
						|
 | 
						|
use App\Http\Controllers\Controller;
 | 
						|
use Illuminate\Http\Request;
 | 
						|
use App\Models\User;
 | 
						|
use App\Models\Tutorial;
 | 
						|
use Illuminate\Support\Facades\DB;
 | 
						|
 | 
						|
class TutorialController extends Controller
 | 
						|
{
 | 
						|
    public function getSubscribeUrl(Request $request)
 | 
						|
    {
 | 
						|
        $user = User::find($request->session()->get('id'));
 | 
						|
        return response([
 | 
						|
            'data' => [
 | 
						|
                'subscribe_url' => config('v2board.subscribe_url', config('v2board.app_url', env('APP_URL'))) . '/api/v1/client/subscribe?token=' . $user['token']
 | 
						|
            ]
 | 
						|
        ]);
 | 
						|
    }
 | 
						|
 | 
						|
    public function getAppleID(Request $request)
 | 
						|
    {
 | 
						|
        $user = User::find($request->session()->get('id'));
 | 
						|
        if ($user->expired_at < time()) {
 | 
						|
            return response([
 | 
						|
                'data' => [
 | 
						|
                ]
 | 
						|
            ]);
 | 
						|
        }
 | 
						|
        return response([
 | 
						|
            'data' => [
 | 
						|
                'apple_id' => config('v2board.apple_id'),
 | 
						|
                'apple_id_password' => config('v2board.apple_id_password')
 | 
						|
            ]
 | 
						|
        ]);
 | 
						|
    }
 | 
						|
 | 
						|
    public function fetch(Request $request)
 | 
						|
    {
 | 
						|
        if ($request->input('id')) {
 | 
						|
            $tutorial = Tutorial::where('show', 1)
 | 
						|
                ->where('id', $request->input('id'))
 | 
						|
                ->first();
 | 
						|
            if (!$tutorial) {
 | 
						|
                abort(500, '教程不存在');
 | 
						|
            }
 | 
						|
            return response([
 | 
						|
                'data' => $tutorial
 | 
						|
            ]);
 | 
						|
        }
 | 
						|
        $tutorial = Tutorial::select(['id', 'category_id', 'title'])
 | 
						|
            ->where('show', 1)
 | 
						|
            ->orderBy('sort', 'ASC')
 | 
						|
            ->get()
 | 
						|
            ->groupBy('category_id');
 | 
						|
        $user = User::find($request->session()->get('id'));
 | 
						|
        $response = [
 | 
						|
            'data' => [
 | 
						|
                'tutorials' => $tutorial,
 | 
						|
                'safe_area_var' => [
 | 
						|
                    'subscribe_url' => config('v2board.subscribe_url', config('v2board.app_url', env('APP_URL'))) . '/api/v1/client/subscribe?token=' . $user['token'],
 | 
						|
                    'app_name' => config('v2board.app_name', 'V2board'),
 | 
						|
                    'apple_id' => $user->expired_at > time() || $user->expired_at === NULL ? config('v2board.apple_id', '本站暂无提供AppleID信息') : '账号过期或未订阅',
 | 
						|
                    'apple_id_password' => $user->expired_at > time() || $user->expired_at === NULL ? config('v2board.apple_id_password', '本站暂无提供AppleID信息') : '账号过期或未订阅'
 | 
						|
                ]
 | 
						|
            ]
 | 
						|
        ];
 | 
						|
        // fuck support shadowrocket urlsafeb64 subscribe
 | 
						|
        $response['data']['safe_area_var']['b64_subscribe_url'] = str_replace(
 | 
						|
            array('+', '/', '='),
 | 
						|
            array('-', '_', ''),
 | 
						|
            base64_encode($response['data']['safe_area_var']['subscribe_url'])
 | 
						|
        );
 | 
						|
        // end
 | 
						|
        // fuck support surge urlencode subscribe
 | 
						|
        $response['data']['safe_area_var']['ue_subscribe_url'] = urlencode($response['data']['safe_area_var']['subscribe_url']);
 | 
						|
        // end
 | 
						|
        return response($response);
 | 
						|
    }
 | 
						|
}
 |