1
0
Fork 0
mirror of https://github.com/yunluo/gdk.git synced 2024-05-23 00:22:18 +02:00
gdk/functions/server.php

224 lines
8.8 KiB
PHP
Raw Normal View History

2020-01-25 12:25:07 +01:00
<?php
2020-01-26 18:57:04 +01:00
//百度收录提示
2020-02-05 07:47:55 +01:00
if (gdk_option('gdk_baidurecord_b') && function_exists('curl_init')) {
2020-03-15 14:29:06 +01:00
function baidu_check($url, $post_id)
{
2020-01-26 18:57:04 +01:00
$baidu_record = get_post_meta($post_id, 'baidu_record', true);
if ($baidu_record != 1) {
2020-03-15 14:29:06 +01:00
$url = 'http://www.baidu.com/s?wd=' . $url;
2020-01-26 18:57:04 +01:00
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
$rs = curl_exec($curl);
curl_close($curl);
if (!strpos($rs, '没有找到该URL您可以直接访问') && !strpos($rs, '很抱歉,没有找到与')) {
update_post_meta($post_id, 'baidu_record', 1) || add_post_meta($post_id, 'baidu_record', 1, true);
return 1;
} else {
return 0;
}
} else {
return 1;
}
}
2020-03-15 14:29:06 +01:00
function baidu_record()
{
2020-01-26 18:57:04 +01:00
global $wpdb;
$post_id = null === $post_id ? get_the_ID() : $post_id;
if (baidu_check(get_permalink($post_id), $post_id) == 1) {
echo '<a target="_blank" title="点击查看" rel="external nofollow" href="http://www.baidu.com/s?wd=' . get_the_title() . '">已收录</a>';
} else {
echo '<a style="color:red;" rel="external nofollow" title="点击提交,谢谢您!" target="_blank" href="http://zhanzhang.baidu.com/sitesubmit/index?sitename=' . get_permalink() . '">未收录</a>';
}
}
}
2020-01-25 12:25:07 +01:00
//百度主动推送
2020-02-05 07:47:55 +01:00
if (gdk_option('gdk_sitemap_api')) {
2020-03-15 14:29:06 +01:00
function Git_Baidu_Submit($post_ID)
{
if (get_post_meta($post_ID, 'gdk_baidu_submit', true) == 1) {
return;
}
$url = get_permalink($post_ID);
$api = gdk_option('gdk_sitemap_api');
2020-01-25 12:25:07 +01:00
$request = new WP_Http;
2020-03-15 14:29:06 +01:00
$result = $request->request($api, array(
'method' => 'POST',
'body' => $url,
'headers' => 'Content-Type: text/plain',
2020-01-25 12:25:07 +01:00
));
2020-03-15 14:29:06 +01:00
if (is_array($result) && !is_wp_error($result) && $result['response']['code'] == '200') {
error_log('baidu_submit_result' . $result['body']);
2020-01-25 12:25:07 +01:00
$result = json_decode($result['body'], true);
}
if (array_key_exists('success', $result)) {
2020-02-05 07:47:55 +01:00
add_post_meta($post_ID, 'gdk_baidu_submit', 1, true);
2020-01-25 12:25:07 +01:00
}
}
add_action('publish_post', 'Git_Baidu_Submit', 0);
}
//强制微信登录
2020-03-15 14:29:06 +01:00
function force_weauth_login_url($login_url, $redirect, $force_reauth)
{
2020-02-05 07:47:55 +01:00
$login_url = get_permalink(gdk_page_id('weauth'));
2020-03-15 14:29:06 +01:00
if (!empty($redirect)) {
$login_url = add_query_arg('redirect_to', urlencode($redirect), $login_url);
2020-01-25 12:25:07 +01:00
}
2020-03-15 14:29:06 +01:00
if ($force_reauth) {
$login_url = add_query_arg('reauth', '1', $login_url);
2020-01-25 12:25:07 +01:00
}
return $login_url;
2020-03-15 14:29:06 +01:00
}if (gdk_option('gdk_weauth_oauth') && gdk_option('gdk_weauth_oauth_force')) {
add_filter('login_url', 'force_weauth_login_url', 10, 3);
2020-01-25 12:25:07 +01:00
}
//在登录框添加额外的微信登录
2020-03-15 14:29:06 +01:00
function weixin_login_button()
{
echo '<p><a class="button button-large" href="' . get_permalink(gdk_page_id('weauth')) . '">微信登录</a></p><br>';
}if (gdk_option('gdk_weauth_oauth')) {
add_action('login_form', 'weixin_login_button');
2020-01-25 12:25:07 +01:00
}
//评论微信推送
2020-02-05 07:47:55 +01:00
if (gdk_option('gdk_Server') && !is_admin()) {
2020-03-15 14:29:06 +01:00
function sc_send($comment_id)
{
$text = '网站上有新的评论,请及时查看'; //微信推送信息标题
2020-01-25 12:25:07 +01:00
$comment = get_comment($comment_id);
2020-03-15 14:29:06 +01:00
$desp = '' . $comment->comment_content . '
2020-01-25 12:25:07 +01:00
***
<br>
* 评论人 ' . get_comment_author($comment_id) . '
* 文章标题 ' . get_the_title() . '
* 文章链接 ' . get_the_permalink($comment->comment_post_ID) . '
'; //微信推送内容正文
2020-03-15 14:29:06 +01:00
$key = gdk_option('gdk_Server_key');
2020-01-25 12:25:07 +01:00
$postdata = http_build_query(array(
'text' => $text,
2020-03-15 14:29:06 +01:00
'desp' => $desp,
2020-01-25 12:25:07 +01:00
));
$opts = array(
'http' => array(
2020-03-15 14:29:06 +01:00
'method' => 'POST',
'header' => 'Content-type: application/x-www-form-urlencoded',
'content' => $postdata,
),
2020-01-25 12:25:07 +01:00
);
2020-03-15 14:29:06 +01:00
$context = stream_context_create($opts);
2021-05-04 06:51:49 +02:00
return $result = file_get_contents('https://sctapi.ftqq.com/' . $key . '.send', false, $context);
2020-01-25 12:25:07 +01:00
}
add_action('comment_post', 'sc_send', 19, 2);
}
//增加B站视频
wp_embed_unregister_handler('bili');
2020-03-15 14:29:06 +01:00
function wp_bili($matches, $attr, $url, $rawattr)
{
2020-02-05 07:47:55 +01:00
if (gdk_is_mobile()) {
2020-01-25 12:25:07 +01:00
$height = 200;
} else {
$height = 480;
}
$iframe = '<iframe width=100% height=' . $height . 'px src="//www.bilibili.com/blackboard/player.html?aid=' . esc_attr($matches[1]) . '" scrolling="no" border="0" framespacing="0" frameborder="no"></iframe>';
return apply_filters('iframe_bili', $iframe, $matches, $attr, $url, $ramattr);
}
wp_embed_register_handler('bili_iframe', '#https://www.bilibili.com/video/av(.*?)/#i', 'wp_bili');
//bing美图自定义登录页面背景
2020-03-15 14:29:06 +01:00
function custom_login_head()
{
2020-02-05 07:47:55 +01:00
if (gdk_option('gdk_loginbg')) {
$imgurl = gdk_option('gdk_loginbg');
2020-01-25 12:25:07 +01:00
} else {
$imgurl = get_transient('Bing_img');
2020-03-15 14:29:06 +01:00
if (false === $imgurl) {
$arr = json_decode(curl_post('https://cn.bing.com/HPImageArchive.aspx?format=js&idx=0&n=1')['data']);
$imgurl = 'http://cn.bing.com' . $arr->images[0]->url;
set_transient('Bing_img', $imgurl, 60 * 60 * 24);
2020-01-25 12:25:07 +01:00
}
}
if (defined('UM_DIR')) {
echo '<style type="text/css">#um_captcha{width:170px!important;}</style>';
}
echo '<style type="text/css">#reg_passmail{display:none!important}body{background: url(' . $imgurl . ') center center no-repeat;-moz-background-size: cover;-o-background-size: cover;-webkit-background-size: cover;background-size: cover;background-attachment: fixed;}.login label,a {font-weight: bold;}.login-action-register #login{padding: 5% 0 0;}.login p {line-height: 1;}.login form {margin-top: 10px;padding: 16px 24px 16px;}h1 a { background-image:url(' . home_url() . '/favicon.ico)!important;width:32px;height:32px;-webkit-border-radius:50px;-moz-border-radius:50px;border-radius:50px;}#registerform,#loginform {background-color:rgba(251,251,251,0.3)!important;}.login label,a{color:#000!important;}form label input{margin-top:10px!important;}@media screen and (max-width:600px){.login-action-register h1 {display: none;}.login-action-register #login{top:50%!important;}}</style>';
}
add_action('login_head', 'custom_login_head');
// add youku using iframe
2020-03-15 14:29:06 +01:00
function wp_iframe_handler_youku($matches, $attr, $url, $rawattr)
{
2020-02-05 07:47:55 +01:00
if (gdk_is_mobile()) {
2020-01-25 12:25:07 +01:00
$height = 200;
} else {
$height = 485;
}
$iframe = '<iframe width=100% height=' . $height . 'px src="http://player.youku.com/embed/' . esc_attr($matches[1]) . '" frameborder=0 allowfullscreen></iframe>';
return apply_filters('iframe_youku', $iframe, $matches, $attr, $url, $ramattr);
}
wp_embed_register_handler('youku_iframe', '#http://v.youku.com/v_show/id_(.*?).html#i', 'wp_iframe_handler_youku');
wp_embed_unregister_handler('youku');
////////////////weauth//////////////
2020-03-15 14:29:06 +01:00
function weauth_oauth_redirect()
{
wp_redirect(home_url());
2020-01-25 12:25:07 +01:00
exit;
}
2020-03-15 14:29:06 +01:00
function weauth_oauth()
{
2020-01-25 12:25:07 +01:00
$weauth_user = $_GET['user'];
2020-03-15 14:29:06 +01:00
$weauth_sk = esc_attr($_GET['sk']);
$weauth_res = get_transient($weauth_sk);
2020-01-25 12:25:07 +01:00
if (empty($weauth_res)) {
return;
}
$weauth_user = stripslashes($weauth_user);
$weauth_user = json_decode($weauth_user, true);
2020-03-15 14:29:06 +01:00
$nickname = $weauth_user['nickName'];
$wxavatar = $weauth_user['avatarUrl'];
$openid = $weauth_user['openid'];
$login_name = 'wx_' . wp_create_nonce($openid);
2020-01-25 12:25:07 +01:00
if (is_user_logged_in()) {
$user_id = get_current_user_id();
update_user_meta($user_id, 'wx_openid', $openid);
update_user_meta($user_id, 'simple_local_avatar', $wxavatar);
} else {
$weauth_user = get_users(array(
2020-03-15 14:29:06 +01:00
'meta_key ' => 'wx_openid',
'meta_value' => $openid,
)
);
2020-01-25 12:25:07 +01:00
if (is_wp_error($weauth_user) || !count($weauth_user)) {
$random_password = wp_generate_password(12, false);
2020-03-15 14:29:06 +01:00
$userdata = array(
'user_login' => $login_name,
'display_name' => $nickname,
'user_pass' => $random_password,
'nickname' => $nickname,
2020-01-25 12:25:07 +01:00
);
$user_id = wp_insert_user($userdata);
update_user_meta($user_id, 'wx_openid', $openid);
update_user_meta($user_id, 'simple_local_avatar', $wxavatar);
} else {
$user_id = $weauth_user[0]->ID;
}
}
2020-03-15 14:29:06 +01:00
set_transient($weauth_sk . 'ok', $user_id, 60); //用于登录的随机数,有效期为一分钟
2020-01-25 12:25:07 +01:00
weauth_oauth_redirect();
}
//初始化
2020-03-15 14:29:06 +01:00
function weauth_oauth_init()
{
if (isset($_GET['user']) && isset($_GET['sk'])) {
2020-01-25 12:25:07 +01:00
weauth_oauth();
}
}
2020-03-15 14:29:06 +01:00
add_action('init', 'weauth_oauth_init');