| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 | 
							- <?php
 
- namespace app\controller;
 
- use app\BaseController;
 
- use app\model\SettingModel;
 
- use GuzzleHttp\Client;
 
- use GuzzleHttp\Exception\RequestException;
 
- use PHPHtmlParser\Dom;
 
- use think\facade\Cache;
 
- use think\facade\Filesystem;
 
- use think\helper\Str;
 
- class Api extends BaseController
 
- {
 
-     public function site(): \think\response\Json
 
-     {
 
-         return $this->success("ok", [
 
-             'email' => $this->Setting('email', '')
 
-         ]);
 
-     }
 
-     public function background()
 
-     {
 
-         $bg = $this->Setting('backgroundImage');
 
-         if ($bg) {
 
-             return redirect($bg, 302);
 
-         }
 
-         return download("static/background.jpeg",);
 
-     }
 
-     //获取邮件验证码
 
-     function getMailCode(): \think\response\Json
 
-     {
 
-         $mail = $this->request->post("mail", false);
 
-         $code = rand(100000, 999999);
 
-         if ($mail) {
 
-             if (Cache::get('code' . $mail)) {
 
-                 return $this->success("请勿频繁获取验证码");
 
-             }
 
-             $status = \Mail::send($mail, "<h2>您的验证码是: <b style='color:#1d5cdc'>$code</b></h2>");
 
-             if ($status) {
 
-                 Cache::set('code' . $mail, $code, 60);
 
-                 return $this->success("发送成功");
 
-             }
 
-         }
 
-         return $this->error('发送失败');
 
-     }
 
-     function getIcon(): \think\response\Json
 
-     {
 
-         $avatar = $this->request->post('avatar');
 
-         if ($avatar) {
 
-             $remote_avatar = $this->Setting("remote_avatar", "https://avatar.mtab.cc/6.x/thumbs/png?seed=", true);
 
-             $str = $this->downloadFile($remote_avatar . $avatar, md5($avatar) . '.png');
 
-             return $this->success(['src' => $str]);
 
-         }
 
-         $url = $this->request->post('url', false);
 
-         $icon = "";
 
-         $cdn = $this->Setting('assets_host', '');
 
-         if ($url) {
 
-             $urlInfo = parse_url($url);
 
-             $host = $urlInfo['host'] ?? $urlInfo['path'];
 
-             $title = '';
 
-             $scheme = "https";
 
-             if (isset($urlInfo['scheme'])) {
 
-                 $scheme = $urlInfo["scheme"];
 
-             }
 
-             $realUrl = $scheme . "://" . $host;
 
-             $client = new Client();
 
-             $response = $client->get($realUrl);
 
-             $status = $response->getStatusCode();
 
-             if ($status == 200) {
 
-                 $body = $response->getBody()->getContents();
 
-                 $dom = new Dom();
 
-                 $dom->loadStr($body);
 
-                 $title = $dom->find('title');
 
-                 if (count($title) > 0) {
 
-                     $title = $title->innerText;
 
-                 }
 
-                 try {
 
-                     $list = $dom->find('[rel="icon"]');
 
-                     if (count($list) > 0) {
 
-                         $icon = $list->href;
 
-                         if (preg_match('/\.(png|jpg|jpeg|ico|svg )$/', $icon, $matches)) {
 
-                             $fileFormat = $matches[1];
 
-                             $iconInfo = parse_url($icon);
 
-                             if (!isset($iconInfo['scheme'])) {
 
-                                 $icon = $realUrl . $icon;
 
-                             }
 
-                             $icon = $this->downloadFile($icon, md5($realUrl) . '.' . $fileFormat);
 
-                             if ($icon) {
 
-                                 $icon = $cdn . $icon;
 
-                             }
 
-                         } else {
 
-                             $icon = '';
 
-                         }
 
-                     }
 
-                 } catch (\ErrorException $e) {
 
-                 }
 
-             }
 
-             if (strlen($icon) == 0) {
 
-                 $client = new Client();
 
-                 $response = $client->get($realUrl . '/favicon.ico');
 
-                 $status = $response->getStatusCode();
 
-                 if ($status == 200) {
 
-                     $icon = $realUrl . '/favicon.ico';
 
-                     $icon = $this->downloadFile($icon, md5($realUrl) . ".ico");
 
-                     if ($icon) {
 
-                         $icon = $cdn . $icon;
 
-                     }
 
-                 }
 
-             }
 
-             if (strlen($icon) > 0) {
 
-                 return $this->success(['src' => $icon, 'name' => $title]);
 
-             }
 
-         }
 
-         return $this->error('no');
 
-     }
 
-     private function downloadFile($url, $name)
 
-     {
 
-         $client = new Client();
 
-         $path = '/images/' . date('Y/m/d/');
 
-         $remotePath = public_path() . $path;
 
-         $downloadPath = $remotePath . $name;
 
-         if (!is_dir($remotePath)) {
 
-             mkdir($remotePath, 0755, true);
 
-         }
 
-         try {
 
-             $response = $client->request('GET', $url, [
 
-                 'sink' => $downloadPath
 
-             ]);
 
-             return $path . $name;
 
-         } catch (RequestException $e) {
 
-         }
 
-         return false;
 
-     }
 
-     function renderIco(): \think\Response
 
-     {
 
-         $send = $this->request->get('seed');
 
-         $client = new Client();
 
-         $remote_avatar = $this->Setting('remote_avatar', 'https://avatar.mtab.cc/6.x/thumbs/png?seed=', true);
 
-         $response = $client->get($remote_avatar . urlencode($send), [
 
-             'stream' => true,
 
-             'timeout' => 10,
 
-         ]);
 
-         return response($response->getBody(), 200, ['Content-Type' => 'image/png']);
 
-     }
 
-     function upload(): \think\response\Json
 
-     {
 
-         $file = $this->request->file('file');
 
-         if (empty($file)) {
 
-             return $this->error('not File');
 
-         }
 
-         if ($file->getSize() > 1024 * 1024 * 5) {
 
-             return $this->error('max fileSize is 5M');
 
-         }
 
-         if (in_array(strtolower($file->getOriginalExtension()), ['png', 'jpg', 'jpeg', 'webp'])) {
 
-             // 验证文件并保存
 
-             try {
 
-                 // 构建保存路径
 
-                 $savePath = '/images/' . date('Y/m/d');
 
-                 $hash = Str::random(32);
 
-                 $fileName = $hash . '.' . $file->getOriginalExtension();
 
-                 $filePath = Filesystem::disk('images')->putFileAs($savePath, $file, $fileName);
 
-                 $cdn = $this->Setting('assets_host', '/', true);
 
-                 return $this->success(['url' => $cdn . $filePath]);
 
-             } catch (\think\exception\ValidateException $e) {
 
-                 // 验证失败,给出错误提示
 
-                 // ...
 
-             }
 
-         }
 
-         return $this->error('上传失败');
 
-     }
 
-     function AdminUpload(): \think\response\Json
 
-     {
 
-         $this->getAdmin();
 
-         $file = $this->request->file('file');
 
-         if (empty($file)) {
 
-             return $this->error('not File');
 
-         }
 
-         if ($file->getSize() > 1024 * 1024 * 5) {
 
-             return $this->error('max fileSize is 5M');
 
-         }
 
-         // 验证文件并保存
 
-         try {
 
-             // 构建保存路径
 
-             $savePath = '/images/' . date('Y/m/d');
 
-             $hash = Str::random(32);
 
-             $fileName = $hash . '.' . $file->getOriginalExtension();
 
-             $filePath = Filesystem::disk('images')->putFileAs($savePath, $file, $fileName);
 
-             $cdn = $this->Setting('assets_host', '/', true);
 
-             return $this->success(['url' => $cdn . $filePath]);
 
-         } catch (\think\exception\ValidateException $e) {
 
-             // 验证失败,给出错误提示
 
-             // ...
 
-         }
 
-         return $this->error('上传失败');
 
-     }
 
- }
 
 
  |