Controller.php 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. <?php
  2. namespace App\Http\Controllers;
  3. use App\Models\SensitiveWords;
  4. use App\Models\SsNode;
  5. use App\Models\User;
  6. use Exception;
  7. use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
  8. use Illuminate\Foundation\Bus\DispatchesJobs;
  9. use Illuminate\Foundation\Validation\ValidatesRequests;
  10. use Illuminate\Http\UploadedFile;
  11. use Illuminate\Routing\Controller as BaseController;
  12. use RuntimeException;
  13. class Controller extends BaseController {
  14. use AuthorizesRequests, DispatchesJobs, ValidatesRequests;
  15. // 生成随机密码
  16. public function makePasswd() {
  17. return makeRandStr();
  18. }
  19. // 生成UUID
  20. public function makeUUID() {
  21. return createGuid();
  22. }
  23. // 生成网站安全码
  24. public function makeSecurityCode() {
  25. return strtolower(makeRandStr(8));
  26. }
  27. // 类似Linux中的tail命令
  28. public function tail($file, $n, $base = 5) {
  29. $fileLines = $this->countLine($file);
  30. if($fileLines < 15000){
  31. return false;
  32. }
  33. $fp = fopen($file, 'rb+');
  34. assert($n > 0);
  35. $pos = $n + 1;
  36. $lines = [];
  37. while(count($lines) <= $n){
  38. try{
  39. fseek($fp, -$pos, SEEK_END);
  40. }catch(Exception $e){
  41. break;
  42. }
  43. $pos *= $base;
  44. while(!feof($fp)){
  45. array_unshift($lines, fgets($fp));
  46. }
  47. }
  48. return array_slice($lines, 0, $n);
  49. }
  50. /**
  51. * 计算文件行数
  52. *
  53. * @param $file
  54. *
  55. * @return int
  56. */
  57. public function countLine($file): int {
  58. $fp = fopen($file, 'rb');
  59. $i = 0;
  60. while(!feof($fp)){
  61. //每次读取2M
  62. if($data = fread($fp, 1024 * 1024 * 2)){
  63. //计算读取到的行数
  64. $num = substr_count($data, "\n");
  65. $i += $num;
  66. }
  67. }
  68. fclose($fp);
  69. return $i;
  70. }
  71. // 获取敏感词
  72. public function sensitiveWords($type): array {
  73. return SensitiveWords::query()->whereType($type)->get()->pluck('words')->toArray();
  74. }
  75. // 将Base64图片转换为本地图片并保存
  76. public function base64ImageSaver($base64_image_content): ?string {
  77. // 匹配出图片的格式
  78. if(preg_match('/^(data:\s*image\/(\w+);base64,)/', $base64_image_content, $result)){
  79. $type = $result[2];
  80. $directory = date('Ymd');
  81. $path = '/assets/images/qrcode/'.$directory.'/';
  82. // 检查是否有该文件夹,如果没有就创建,并给予最高权限
  83. if(!file_exists(public_path($path))
  84. && !mkdir($concurrentDirectory = public_path($path), 0755, true)
  85. && !is_dir($concurrentDirectory)){
  86. throw new RuntimeException(sprintf('Directory "%s" was not created', $concurrentDirectory));
  87. }
  88. $fileName = makeRandStr(18, true).".{$type}";
  89. if(file_put_contents(public_path($path.$fileName),
  90. base64_decode(str_replace($result[1], '', $base64_image_content)))){
  91. chmod(public_path($path.$fileName), 0744);
  92. return $path.$fileName;
  93. }
  94. }
  95. return '';
  96. }
  97. // 上传文件处理
  98. public function uploadFile(UploadedFile $file): string {
  99. $fileType = $file->getClientOriginalExtension();
  100. // 验证文件合法性
  101. if(!in_array($fileType, ['jpg', 'png', 'jpeg', 'bmp'])){
  102. return false;
  103. }
  104. $name = date('YmdHis').random_int(1000, 2000).'.'.$fileType;
  105. $move = $file->move(base_path().'/public/upload/image/', $name);
  106. return $move? '/upload/image/'.$name : '';
  107. }
  108. /**
  109. * 节点信息
  110. *
  111. * @param int $uid 用户ID
  112. * @param int $nodeId 节点ID
  113. * @param int $infoType 信息类型:0为链接,1为文字
  114. *
  115. * @return string
  116. */
  117. public function getUserNodeInfo($uid, $nodeId, $infoType): string {
  118. $user = User::whereId($uid)->first();
  119. $node = SsNode::whereId($nodeId)->first();
  120. $scheme = null;
  121. // 获取分组名称
  122. $group = $node->getLevel->name;
  123. $host = $node->server?: $node->ip;
  124. $data = null;
  125. switch($node->type){
  126. case 1:
  127. if($node->single){
  128. $port = $node->port;
  129. $protocol = $node->protocol;
  130. $method = $node->method;
  131. $obfs = $node->obfs;
  132. $passwd = $node->passwd;
  133. $protocol_param = $user->port.':'.$user->passwd;
  134. }else{
  135. $port = $user->port;
  136. $protocol = $user->protocol;
  137. $method = $user->method;
  138. $obfs = $user->obfs;
  139. $passwd = $user->passwd;
  140. $protocol_param = $node->protocol_param;
  141. }
  142. if($infoType != 1){
  143. // 生成ss/ssr scheme
  144. if($node->compatible){
  145. $data = 'ss://'.base64url_encode($method.':'.$passwd.'@'.$host.':'.$port).'#'.$group;
  146. }else{
  147. $data = 'ssr://'.base64url_encode($host.':'.$port.':'.$protocol.':'.$method.':'.$obfs.':'.base64url_encode($passwd).'/?obfsparam='.base64url_encode($node->obfs_param).'&protoparam='.base64url_encode($protocol_param).'&remarks='.base64url_encode($node->name).'&group='.base64url_encode($group).'&udpport=0&uot=0');
  148. }
  149. }else{
  150. // 生成文本配置信息
  151. $data = "服务器:".$host.PHP_EOL."IPv6:".$node->ipv6.PHP_EOL."服务器端口:".$port.PHP_EOL."密码:".$passwd.PHP_EOL."加密:".$method.PHP_EOL.($node->compatible? '' : "协议:".$protocol.PHP_EOL."协议参数:".$protocol_param.PHP_EOL."混淆:".$obfs.PHP_EOL."混淆参数:".$node->obfs_param.PHP_EOL);
  152. }
  153. break;
  154. case 2:
  155. // 生成v2ray scheme
  156. if($infoType != 1){
  157. // 生成v2ray scheme
  158. $data = 'vmess://'.base64url_encode(json_encode([
  159. "v" => "2",
  160. "ps" => $node->name,
  161. "add" => $host,
  162. "port" => $node->v2_port,
  163. "id" => $user->vmess_id,
  164. "aid" => $node->v2_alter_id,
  165. "net" => $node->v2_net,
  166. "type" => $node->v2_type,
  167. "host" => $node->v2_host,
  168. "path" => $node->v2_path,
  169. "tls" => $node->v2_tls? "tls" : ""
  170. ], JSON_PRETTY_PRINT));
  171. }else{
  172. $data = "服务器:".$host.PHP_EOL."IPv6:".($node->ipv6?: "").PHP_EOL."端口:".$node->v2_port.PHP_EOL."加密方式:".$node->v2_method.PHP_EOL."用户ID:".$user->vmess_id.PHP_EOL."额外ID:".$node->v2_alter_id.PHP_EOL."传输协议:".$node->v2_net.PHP_EOL."伪装类型:".$node->v2_type.PHP_EOL."伪装域名:".($node->v2_host?: "").PHP_EOL."路径:".($node->v2_path?: "").PHP_EOL."TLS:".($node->v2_tls? "tls" : "").PHP_EOL;
  173. }
  174. break;
  175. case 3:
  176. break;
  177. default:
  178. }
  179. return $data;
  180. }
  181. }