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, "
您的验证码是: $code
");
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('上传失败');
}
}