lylme_spage/apply/index.php

322 lines
11 KiB
PHP
Raw Normal View History

2022-03-20 14:57:47 +08:00
<?php
include("../include/common.php");
2022-04-03 21:22:17 +08:00
if(!empty($url = isset($_GET['url']) ? $_GET['url'] : null)) {
function get_head($url) {
$get_heads = array();
$opts = array(
'http'=>array(
'method'=>"GET",
'timeout'=>4
)
);
$contents = @file_get_contents("compress.zlib://".$url, false, stream_context_create($opts));
preg_match('/<title>(.*?)<\/title>/is',$contents,$title); // 获取网站标题
preg_match('/<link rel=".*?icon" * href="(.*?)".*?>/is', $contents,$icon); // 获取网站icon
preg_match('/<meta.+?charset=[^\w]?([-\w]+)/i', $contents,$charset); //获取网站编码
$get_heads['charset']=$charset[1];
2022-04-03 21:22:17 +08:00
$get_heads['title'] = str_replace("'","\"",preg_replace("/\s/","",$title[1]));
$get_heads['icon'] = get_urlpath(preg_replace("/\s/","",$icon[1]),$url);
if(strtolower($get_heads['charset'])!="uft-8"){
// 将非UTF-8编码转换
$get_heads['title'] = iconv($get_heads['charset'], "UTF-8",$get_heads['title']);
$get_heads['icon'] = iconv($get_heads['charset'], "UTF-8",$get_heads['icon']);
}
2022-04-03 21:22:17 +08:00
return $get_heads;
}
$head = get_head($url);
header('Content-Type:application/json');
exit("{'title': '".$head['title']."', 'icon': '".$head['icon']."','charset': '".$head['charset']."'}");
2022-04-03 21:22:17 +08:00
}
2022-03-20 14:57:47 +08:00
$grouplists =$DB->query("SELECT * FROM `lylme_groups`");
2022-03-26 16:48:07 +08:00
if(isset($_REQUEST['authcode'])) {
2022-03-20 14:57:47 +08:00
session_start();
2022-03-26 16:48:07 +08:00
if(strtolower($_REQUEST['authcode'])== $_SESSION['authcode']) {
2022-04-03 21:22:17 +08:00
if(isset($_POST['name'])&& isset($_POST['url'])&& isset($_POST['icon'])&& isset($_POST['group_id'])) {
2022-03-20 14:57:47 +08:00
$status = $conf["apply"];
if($status==2) {
exit('<script>alert("提交失败,网站已关闭申请收录功能!");window.location.href="./";</script>');
}
2022-03-26 11:13:10 +08:00
$name=strip_tags(daddslashes($_POST['name']));
$url=strip_tags(daddslashes($_POST['url']));
2022-03-26 16:48:07 +08:00
$icon=strip_tags(daddslashes($_POST['icon']));
$group_id=strip_tags(daddslashes($_POST['group_id']));
2022-04-03 21:22:17 +08:00
$userip=strip_tags(get_real_ip());
2022-03-26 11:13:10 +08:00
$sw = 1;
$date = date("Y-m-d H:i:s");
2022-03-26 16:48:07 +08:00
if(empty($status)) {
2022-03-20 14:57:47 +08:00
$status=0;
}
}
2022-04-03 21:22:17 +08:00
function strlens($str) {
if(strlen($str) > 255) {
return true;
} else {
return false;
}
2022-03-26 17:23:57 +08:00
}
2022-03-26 16:48:07 +08:00
if($sw == 1) {
2022-04-03 21:22:17 +08:00
if(empty($name) || empty($url) || empty($group_id) || empty($userip) ) {
//|| empty($icon)
exit('<script>alert("提交失败,请确保所有选项都不为空!");history.go(-1);</script>');
2022-05-02 02:09:58 +08:00
} else if(!preg_match('/^http*/i', $url)) {
2022-04-03 21:22:17 +08:00
exit('<script>alert("提交失败,输入不符合要求!");history.go(-1);</script>');
} else if(strlens($name)||strlens($url)||strlens($icon)||strlens($group_id)||strlens($userip)) {
exit('<script>alert("非法参数!");history.go(-1);</script>');
2022-03-26 16:48:07 +08:00
} else {
if($DB->num_rows($DB->query("SELECT * FROM `lylme_apply` WHERE `apply_url` LIKE '".$url."';"))>0) {
2022-04-03 21:22:17 +08:00
exit('<script>alert("链接已存在,请勿重复提交,如需修改请联系站长!");history.go(-1);</script>');
2022-03-26 16:48:07 +08:00
}
2022-04-03 21:22:17 +08:00
$sql = "INSERT INTO `lylme_apply` (`apply_id`, `apply_name`, `apply_url`, `apply_group`, `apply_icon`, `apply_mail`, `apply_time`, `apply_status`) VALUES (NULL, '".$name."', '".$url."', '".$group_id."', '".$icon."', '".$userip."', '".$date."', '".$status."');";
2022-03-26 16:48:07 +08:00
if($DB->query($sql)) {
2022-03-20 14:57:47 +08:00
switch ($status) {
case 0:
2022-04-03 21:22:17 +08:00
echo '<script>alert("提交成功!请等待管理员审核!");window.location.href="./";</script>';
2022-03-20 14:57:47 +08:00
break;
case 1:
2022-04-03 21:22:17 +08:00
$link_order = $DB->count('select MAX(id) from `lylme_links`')+1;
$sql1 = "INSERT INTO `lylme_links` (`id`, `name`, `group_id`, `url`, `icon`, `PS`,`link_order`) VALUES (NULL, '" . $name . "', '" . $group_id . "', '" . $url . "', '" . $icon . "', '" . $userip . "的提交 ', '" . $link_order . "');";
2022-03-26 16:48:07 +08:00
if($DB->query($sql1)) {
echo '<script>alert("提交成功!网站已成功收录!");window.location.href="./";</script>';
} else {
echo '<script>alert("提交成功!请等待管理员审核!");</script>';
}
2022-03-20 14:57:47 +08:00
break;
}
2022-03-26 16:48:07 +08:00
} else {
2022-03-26 11:13:10 +08:00
echo '<script>alert("提交失败!请联系网站管理员!");history.go(-1);</script>';
2022-03-20 14:57:47 +08:00
}
}
}
2022-03-26 16:48:07 +08:00
} else {
2022-03-20 14:57:47 +08:00
echo '<script>alert("验证码错误!");history.go(-1);</script>';
}
exit();
}
?>
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
2022-04-03 21:22:17 +08:00
<title>申请收录 - <?php echo $conf['title']?></title>
<link rel="icon" href="<?php echo get_urlpath($conf['logo'],siteurl().'/apply');?>" type="image/ico">
<link href="https://cdn.lylme.com/admin/lyear/css/materialdesignicons.min.css" rel="stylesheet">
<link href="https://cdn.lylme.com/admin/lyear/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdn.lylme.com/admin/lyear/css/style.min.css" rel="stylesheet">
2022-03-20 14:57:47 +08:00
<style>
2022-04-03 21:22:17 +08:00
#loading {
position:absolute;
left:0;
top:0;
height:100vh;
width:100vw;
z-index:1;
display:none;
align-items: center;
justify-content: center;
background-color:rgba(0,0,0,0.5);
color: #bbb;
font-size: 16px;
}
#loading>img {
height:32px;
width:32px;
}
2022-03-20 14:57:47 +08:00
.lylme-wrapper {
2022-03-26 16:48:07 +08:00
position: relative;
2022-03-20 14:57:47 +08:00
}
.lylme-form {
2022-03-26 16:48:07 +08:00
display: flex !important;
min-height: 100vh;
align-items: center !important;
justify-content: center !important;
2022-03-20 14:57:47 +08:00
}
2022-03-26 16:48:07 +08:00
.lylme-form:after {
content: '';
min-height: inherit;
font-size: 0;
2022-03-20 14:57:47 +08:00
}
.lylme-center {
2022-03-26 16:48:07 +08:00
background: #fff;
min-width: 29.25rem;
2022-05-02 02:09:58 +08:00
padding: 30px;
2022-03-26 16:48:07 +08:00
border-radius: 20px;
margin: 2.85714em;
2022-03-20 14:57:47 +08:00
}
.lylme-header {
2022-03-26 16:48:07 +08:00
margin-bottom: 1.5rem !important;
2022-03-20 14:57:47 +08:00
}
.lylme-center .has-feedback.feedback-left .form-control {
2022-03-26 16:48:07 +08:00
padding-left: 38px;
padding-right: 12px;
2022-03-20 14:57:47 +08:00
}
.lylme-center .has-feedback.feedback-left .form-control-feedback {
2022-03-26 16:48:07 +08:00
left: 0;
right: auto;
width: 38px;
height: 38px;
line-height: 38px;
z-index: 4;
color: #dcdcdc;
2022-03-20 14:57:47 +08:00
}
.lylme-center .has-feedback.feedback-left.row .form-control-feedback {
2022-03-26 16:48:07 +08:00
left: 15px;
2022-03-20 14:57:47 +08:00
}
2022-03-26 16:48:07 +08:00
.code {
2022-05-02 02:09:58 +08:00
/*padding-left: 10px;*/
/*padding-right: 0px;*/
height: 38px;
/*max-width: 100px;*/
}
.apply_gg {
margin: 20px 0;
font-size: 15px;
line-height: 2;
2022-03-20 14:57:47 +08:00
}
</style>
</head>
<body>
2022-04-03 21:22:17 +08:00
<div id="loading"><img src="https://cdn.lylme.com/admin/lyear/img/loading.gif"/> &nbsp;
正在获取....</div>
2022-05-02 02:09:58 +08:00
<?php if(!empty(background())){
echo '<div class="row lylme-wrapper" style="background-image: url('.background().');background-size: cover;">';}
else{ echo '<div class="row lylme-wrapper">';}?>
2022-03-20 14:57:47 +08:00
<div class="lylme-form">
<div class="lylme-center">
2022-03-26 11:13:10 +08:00
<?php if($conf["apply"]==2) {
2022-03-26 16:48:07 +08:00
exit('<div class="lylme-header text-center"><h2>网站已关闭申请收录</h2></div> </div>');
}
?>
2022-03-20 14:57:47 +08:00
<div class="lylme-header text-center"><h2>申请收录</h2></div>
2022-05-02 02:09:58 +08:00
<div class="apply_gg">
<?php echo $conf['apply_gg']?>
</div>
2022-04-03 21:22:17 +08:00
<form action="" method="POST" AUTOCOMPLETE="OFF">
2022-03-20 14:57:47 +08:00
<div class="form-group has-feedback feedback-left row">
<div class="col-xs-12">
<label>* 网站链接:</label>
2022-04-03 21:22:17 +08:00
<input type="text" id="url" class="form-control" name="url" value="" onchange="get_head()" required placeholder="完整网址或域名">
2022-03-20 14:57:47 +08:00
<span class="mdi mdi-link-variant form-control-feedback" aria-hidden="true"></span>
</div>
</div>
<div class="form-group has-feedback feedback-left row">
<div class="col-xs-12">
<label>* 选择分组:</label>
<select title="分组" class="form-control" name="group_id" required>
<option value="">请选择</option>
2022-03-20 14:57:47 +08:00
<?php
while($grouplist = $DB->fetch($grouplists)) {
echo '
<option value="'.$grouplist["group_id"].'">'.$grouplist["group_name"].'</option>';
2022-03-26 16:48:07 +08:00
}
?>
2022-03-20 14:57:47 +08:00
</select>
<span class="mdi mdi-folder form-control-feedback" aria-hidden="true"></span>
</div>
</div>
<div class="form-group has-feedback feedback-left row">
<div class="col-xs-12">
2022-04-03 21:22:17 +08:00
<label>* 网站名称:</label>
<input type="text" class="form-control" id="title" name="name" value="" required placeholder="网站名称">
<span class="mdi mdi-format-title form-control-feedback" aria-hidden="true"></span>
<small class="help-block">填写网站链接后点击空白处自动获取</small>
2022-03-20 14:57:47 +08:00
</div>
</div>
<div class="form-group has-feedback feedback-left row">
<div class="col-xs-12">
2022-04-03 21:22:17 +08:00
<label>网站图标:</label>
<textarea type="text" id="icon" class="form-control" name="icon" placeholder="https://hao.lylme.com/assets/img/logo.png"></textarea>
<span class="mdi mdi-emoticon form-control-feedback" aria-hidden="true"></span>
<small class="help-block">填写图标的<code>URL</code>地址,如:<code>http://www.xxx.com/img/logo.png</code><br>
部分网站无法自动获取,请手动填写</small>
2022-03-20 14:57:47 +08:00
</div>
2022-04-03 21:22:17 +08:00
</div>
<!--<div class="form-group has-feedback feedback-left row">-->
<!-- <div class="col-xs-12">-->
<!-- <label>* 联系邮箱:</label>-->
<!-- <input type="text" class="form-control" name="mail" value="" autocomplete="off" required placeholder="填写邮箱">-->
<!-- <span class="mdi mdi-email form-control-feedback" aria-hidden="true"></span>-->
<!-- </div>-->
<!--</div>-->
2022-03-20 14:57:47 +08:00
<label>* 验证码:</label>
<div class="form-group has-feedback feedback-left row">
2022-05-02 02:09:58 +08:00
<div class="col-xs-8">
2022-03-20 14:57:47 +08:00
<input type="text" name="authcode" class="form-control" placeholder="验证码">
<span class="mdi mdi-check form-control-feedback" aria-hidden="true"></span>
</div>
2022-05-02 02:09:58 +08:00
<div class="col-xs-4">
<img id="captcha_img" title="验证码" src='../include/validatecode.php' class="pull-right code"
2022-03-20 14:57:47 +08:00
onclick="document.getElementById('captcha_img').src='../include/validatecode.php?r='+Math.random()"
/>
</div>
</div>
<div class="form-group">
2022-05-02 02:09:58 +08:00
<input type="submit" id="submit"class="btn btn-primary btn-block" value="提交"></form>
2022-03-20 14:57:47 +08:00
</div>
<center><?php echo $conf['copyright']?></center>
2022-03-20 14:57:47 +08:00
</div>
</div>
</body>
2022-03-26 11:13:10 +08:00
<script>
2022-04-03 21:22:17 +08:00
function get_head() {
var xmlhttp;
if (window.XMLHttpRequest) {
// IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
xmlhttp=new XMLHttpRequest();
} else {
// IE6, IE5 浏览器执行代码
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
2022-03-26 16:48:07 +08:00
}
2022-04-03 21:22:17 +08:00
xmlhttp.onreadystatechange=function() {
if (xmlhttp.readyState==4 && xmlhttp.status==200) {
document.getElementById('loading').style.display = "none";
var data=xmlhttp.responseText;
var jsonobj=eval("("+data+")");
document.getElementById("title").value=jsonobj.title;
if(jsonobj.title==''&& jsonobj.icon==''){
document.getElementById('title').placeholder="自动获取失败!可能原因:网站无法访问、被防火墙拦截或代码不规范";
}
document.getElementById("icon").value=jsonobj.icon;
2022-03-26 16:48:07 +08:00
}
}
2022-04-03 21:22:17 +08:00
document.getElementById('loading').style.display = "flex";
document.getElementById('title').placeholder="网站名称";
var url = document.getElementById('url').value;
var re =/^http[s]?:\/\/+/;
if (!re.test(url)&&url!="") {
var url = "http://"+url;
document.getElementById("url").value=url;
}
var strSendUrl = "?url=" + url;
xmlhttp.open("GET",strSendUrl,true);
xmlhttp.send();
2022-03-26 16:48:07 +08:00
}
2022-04-03 21:22:17 +08:00
// window.onload = function() {
// var inputInt = document.getElementById('icon');
// var submit = document.getElementById("submit");
// function sw_on() {
// inputInt.style.borderColor = "#ebebeb";
// submit.disabled = false;
// submit.value = "提交";
// }
// function sw_off() {
// inputInt.style.borderColor = "#ff0000";
// submit.disabled = true;
// submit.value = "输入不符合要求";
// }
// inputInt.oninput = function() {
// var re =/^http[s]?:\/\/([\w-]+\.)+[\w]+(\/[\w-./%&=]*)\.(jpg|png|ico|gif)$/
// if (!re.test(this.value)) {
// sw_off();
// } else {
// sw_on();
// }
// }
// ;
// sw_on();
// }
2022-03-26 16:48:07 +08:00
</script>
2022-04-03 21:22:17 +08:00
2022-03-26 16:48:07 +08:00
</html>