mirror of
				https://github.com/v2board/v2board.git
				synced 2025-10-31 17:31:49 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			441 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			441 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| namespace App\Utils;
 | |
| 
 | |
| use App\Models\User;
 | |
| 
 | |
| class Shadowsocks
 | |
| {
 | |
|     public static function SIP008($server, User $user)
 | |
|     {
 | |
|         $config = [
 | |
|             "id" => $server['id'],
 | |
|             "remarks" => $server['name'],
 | |
|             "server" => $server['host'],
 | |
|             "server_port" => $server['port'],
 | |
|             "password" => $user['uuid'],
 | |
|             "method" => $server['cipher']
 | |
|         ];
 | |
|         return $config;
 | |
|     }
 | |
| }
 |