First Commit
This commit is contained in:
parent
f199305117
commit
9e58d784b0
2
LICENSE
2
LICENSE
@ -1,6 +1,6 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) <year> <copyright holders>
|
||||
Copyright (c) 2022 Bigsk
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
|
@ -1,3 +1,9 @@
|
||||
# fmhsong
|
||||
|
||||
凤高点歌系统 Ver1
|
||||
凤高点歌系统 Ver1 Alpha
|
||||
|
||||
本系统存在BUG,且不再后续更新
|
||||
|
||||
需要更多支持,请关注后续项目[InfiniteMusic](https://gitea.ghink.net/ghink/InfiniteMusic)
|
||||
|
||||
使用Python Flask构建,对接Ghink Center Ver2
|
13
api/getCookie.py
Normal file
13
api/getCookie.py
Normal file
@ -0,0 +1,13 @@
|
||||
import requests,json
|
||||
|
||||
|
||||
def main():
|
||||
cookies=[""]
|
||||
session=requests.session()
|
||||
info={"phone":"","md5_password":cookies[0]}
|
||||
cookie=json.loads(session.post("https://music-netease.vercel.app/login/cellphone",data=info).text)["cookie"]
|
||||
with open("cookie.conf","w+") as fp:
|
||||
fp.write(cookie)
|
||||
|
||||
if __name__=="__main__":
|
||||
main()
|
39
api/id/index.php
Normal file
39
api/id/index.php
Normal file
@ -0,0 +1,39 @@
|
||||
<?php
|
||||
//初始化基础信息
|
||||
include("../libraries/entrance.php");
|
||||
include("../libraries/key.php");
|
||||
include("../libraries/func.php");
|
||||
header("Access-Control-Allow-Origin: *");
|
||||
//初始化SDK
|
||||
$sdk=new ghinkPassport($global_id,$global_key);
|
||||
//初始化请求头
|
||||
header("content-type: application/json");
|
||||
|
||||
if(@$_GET["id"]!=""){
|
||||
//数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
$result=array();
|
||||
$songs=array();
|
||||
//按歌名查找歌曲
|
||||
$id=intval($_GET["id"]);
|
||||
$sql=$conn->prepare("SELECT `sid`, `name`, `alid`, `arid`, `hash` FROM `songs` WHERE `sid`=?");
|
||||
$sql->bind_param("i",$id);
|
||||
$sql->execute();
|
||||
$sql->bind_result($sid,$name,$alid,$arid,$hash);
|
||||
while($sql->fetch()){
|
||||
array_push($songs,array("sid"=>$sid,"name"=>$name,"alid"=>$alid,"arid"=>$arid,"hash"=>$hash));
|
||||
}
|
||||
//理顺结果
|
||||
foreach ($songs as $value){
|
||||
$artistsFormat=array();
|
||||
foreach (json_decode($value["arid"]) as $value2){
|
||||
array_push($artistsFormat,getArtist($conn,$value2));
|
||||
}
|
||||
$albumFormat=getAlbum($conn,$value["alid"]);
|
||||
array_push($result,array("id"=>$value["sid"],"name"=>$value["name"],"url"=>"https://cache.music.ghink.net/song/".$value["hash"],"hash"=>$value["hash"],"ar"=>$artistsFormat,"al"=>$albumFormat));
|
||||
}
|
||||
$conn->close();
|
||||
exit(json_encode(array("status"=>"success","message"=>"success","result"=>$result)));
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"failed","message"=>"need song info")));
|
||||
}
|
1
api/index.json
Normal file
1
api/index.json
Normal file
@ -0,0 +1 @@
|
||||
{"status":"success","code":200}
|
15
api/libraries/entrance.php
Normal file
15
api/libraries/entrance.php
Normal file
@ -0,0 +1,15 @@
|
||||
<?php
|
||||
/*
|
||||
Copyright GHINK Network Studio
|
||||
Author: Bigsk(https://www.xiaxinzhe.cn)
|
||||
*/
|
||||
|
||||
define(('IN_SYS'),true);//Defined entreance security.
|
||||
include("libraries/task.php");
|
||||
include("libraries/setting.php");
|
||||
include("libraries/post.php");
|
||||
include("libraries/token.php");
|
||||
include("libraries/main.php");
|
||||
include("libraries/user.php");
|
||||
include("libraries/auth.php");
|
||||
include("libraries/app.php");
|
104
api/libraries/func.php
Normal file
104
api/libraries/func.php
Normal file
@ -0,0 +1,104 @@
|
||||
<?php
|
||||
|
||||
function addSong($conn,$sName,$sAlid,$sArid,$sHash,$sAlias=NULL){
|
||||
$sql=$conn->prepare("SELECT `sid`, `name`, `alias`, `alid`, `arid`, `hash` FROM `songs` WHERE `name`=?");
|
||||
$sql->bind_param("s",$sName);
|
||||
$sql->execute();
|
||||
$sql->bind_result($sid,$name,$alias,$alid,$arid,$hash);
|
||||
$name="";
|
||||
while($sql->fetch()){
|
||||
if($name==$sName){
|
||||
$rSId=$sid;
|
||||
$rName=$name;
|
||||
$rAlias=$alias;
|
||||
$rArId=$arid;
|
||||
$rAlId=$alid;
|
||||
$rHash=$hash;
|
||||
}
|
||||
}
|
||||
if($name!="" && json_decode($rArId)==json_decode($sArid)){
|
||||
return array("sid"=>$rSId,"name"=>$rName,"alias"=>$rAlias,"arid"=>json_decode($rArId),"alid"=>$rAlId,"hash"=>$rHash);
|
||||
}else{
|
||||
$sql=$conn->prepare("INSERT INTO `songs`(`name`, `alias`, `alid`, `arid`, `hash`) VALUES (?,?,?,?,?)");
|
||||
$sql->bind_param("ssiss",$sName,$sAlias,$sAlid,$sArid,$sHash);
|
||||
$sql->execute();
|
||||
$sid=mysqli_insert_id($conn);
|
||||
return array("sid"=>$sid,"name"=>$sName,"alias"=>$sAlias,"arid"=>json_decode($sArid),"alid"=>$sAlid,"hash"=>$sHash);
|
||||
}
|
||||
}
|
||||
function addAlbum($conn,$alName,$alAlias=NULL,$alCover=NULL){
|
||||
$sql=$conn->prepare("SELECT `alid`, `name`, `alias`, `cover` FROM `albums` WHERE `name`=?");
|
||||
$sql->bind_param("s",$alName);
|
||||
$sql->execute();
|
||||
$sql->bind_result($alid,$name,$alias,$cover);
|
||||
$name="";
|
||||
while($sql->fetch()){
|
||||
if($name==$alName){
|
||||
$rAlId=$alid;
|
||||
$rName=$name;
|
||||
$rAlias=$alias;
|
||||
$rCover=$cover;
|
||||
}
|
||||
}
|
||||
if($rName!=""){
|
||||
return array("alid"=>$rAlId,"name"=>$rName,"alias"=>$rAlias,"cover"=>$rCover);
|
||||
}else{
|
||||
$sql=$conn->prepare("INSERT INTO `albums`(`name`, `alias`, `cover`) VALUES (?,?,?)");
|
||||
$sql->bind_param("sss",$alName,$alAlias,$alCover);
|
||||
$sql->execute();
|
||||
$alid=mysqli_insert_id($conn);
|
||||
return array("alid"=>$alid,"name"=>$alName,"alias"=>$alAlias,"cover"=>$alCover);
|
||||
}
|
||||
}
|
||||
function addArtist($conn,$arName,$arAlias=NULL,$arPic=NULL){
|
||||
$sql=$conn->prepare("SELECT `arid`, `name`, `alias`, `pic` FROM `artists` WHERE `name`=?");
|
||||
$sql->bind_param("s",$arName);
|
||||
$sql->execute();
|
||||
$sql->bind_result($arid,$name,$alias,$pic);
|
||||
$name="";
|
||||
while($sql->fetch()){
|
||||
if($name==$arName){
|
||||
$rArId=$arid;
|
||||
$rName=$name;
|
||||
$rAlias=$alias;
|
||||
$rPic=$pic;
|
||||
}
|
||||
}
|
||||
if($name!=""){
|
||||
return array("arid"=>$rArId,"name"=>$rName,"alias"=>$rAlias,"pic"=>$rPic);
|
||||
}else{
|
||||
$sql=$conn->prepare("INSERT INTO `artists`(`name`, `alias`, `pic`) VALUES (?,?,?)");
|
||||
$sql->bind_param("sss",$arName,$arAlias,$arPic);
|
||||
$sql->execute();
|
||||
$arid=mysqli_insert_id($conn);
|
||||
return array("arid"=>$arid,"name"=>$arName,"alias"=>$arAlias,"pic"=>$arPic);
|
||||
}
|
||||
}
|
||||
function getArtist($conn,$arid){
|
||||
$sql=$conn->prepare("SELECT `arid`, `name`, `alias`, `pic` FROM `artists` WHERE `arid`=?");
|
||||
$sql->bind_param("i",$arid);
|
||||
$sql->execute();
|
||||
$sql->bind_result($arid,$name,$alias,$pic);
|
||||
$name="";
|
||||
while($sql->fetch()){
|
||||
$rArId=$arid;
|
||||
$rName=$name;
|
||||
$rAlias=$alias;
|
||||
$rPic=$pic;
|
||||
}
|
||||
return array("arid"=>$rArId,"name"=>$rName,"alias"=>$rAlias,"pic"=>$rPic);
|
||||
}
|
||||
function getAlbum($conn,$alid){
|
||||
$sql=$conn->prepare("SELECT `alid`, `name`, `alias`, `cover` FROM `albums` WHERE `alid`=?");
|
||||
$sql->bind_param("i",$alid);
|
||||
$sql->execute();
|
||||
$sql->bind_result($alid,$name,$alias,$cover);
|
||||
$name="";
|
||||
while($sql->fetch()){
|
||||
$rAlId=$alid;
|
||||
$rName=$name;
|
||||
$rAlias=$alias;
|
||||
$rCover=$cover;
|
||||
}
|
||||
return array("alid"=>$rAlId,"name"=>$rName,"alias"=>$rAlias,"cover"=>$rCover);
|
||||
}
|
13
api/libraries/key.php
Normal file
13
api/libraries/key.php
Normal file
@ -0,0 +1,13 @@
|
||||
<?php
|
||||
$global_id="fcf5c7ddf6686f6f3792f6fca2cbc204";
|
||||
$global_key="98a2cfa9a12679ba2d3d9b4cc66c35a0";
|
||||
|
||||
|
||||
//全局数据库类
|
||||
class database{
|
||||
//定义数据库信息
|
||||
const addr="192.168.1.8";
|
||||
const user="fmhs_music";
|
||||
const pass="fmhs@2005";
|
||||
const name="fmhs_music";
|
||||
}
|
34
api/libraries/libraries/app.php
Normal file
34
api/libraries/libraries/app.php
Normal file
@ -0,0 +1,34 @@
|
||||
<?php
|
||||
/*
|
||||
Copyright GHINK Network Studio
|
||||
Author: Bigsk(https://www.xiaxinzhe.cn)
|
||||
*/
|
||||
if(!defined('IN_SYS')){//Defined entreance security.
|
||||
header('HTTP/1.1 403 Forbidden');
|
||||
exit();
|
||||
}
|
||||
|
||||
class app{
|
||||
//查询APP Token是否有效
|
||||
function checkToken($token,$tokenCheck){
|
||||
$data=array("token"=>$token,"tokenCheck"=>$tokenCheck);
|
||||
$result=sendPost("https://center.ghink.net/v1/interface/api.php?type=checkAppToken",$data);
|
||||
$result=json_decode($result,true);
|
||||
if($result["status"]=="success"){
|
||||
return $result["result"];
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
//获取APP等级
|
||||
function checkLevel($token,$tokenCheck){
|
||||
$data=array("token"=>$token,"tokenCheck"=>$tokenCheck);
|
||||
$result=sendPost("https://center.ghink.net/v1/interface/api.php?type=checkAppLevel",$data);
|
||||
$result=json_decode($result,true);
|
||||
if($result["status"]=="success"){
|
||||
return $result["result"];
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
34
api/libraries/libraries/auth.php
Normal file
34
api/libraries/libraries/auth.php
Normal file
@ -0,0 +1,34 @@
|
||||
<?php
|
||||
/*
|
||||
Copyright GHINK Network Studio
|
||||
Author: Bigsk(https://www.xiaxinzhe.cn)
|
||||
*/
|
||||
if(!defined('IN_SYS')){//Defined entreance security.
|
||||
header('HTTP/1.1 403 Forbidden');
|
||||
exit();
|
||||
}
|
||||
|
||||
class auth{
|
||||
//查询用户是否实名
|
||||
function check($token,$uid){
|
||||
$data=array("token"=>$token,"uid"=>$uid);
|
||||
$result=sendPost("https://center.ghink.net/v1/interface/api.php?type=checkAuth",$data);
|
||||
$result=json_decode($result,true);
|
||||
if($result["status"]=="success"){
|
||||
return $result["auth"];
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
//查询用户实名信息
|
||||
function getData($token,$uid){
|
||||
$data=array("token"=>$token,"uid"=>$uid);
|
||||
$result=sendPost("https://center.ghink.net/v1/interface/api.php?type=getAuthInfo",$data);
|
||||
$result=json_decode($result,true);
|
||||
if($result["status"]=="success"){
|
||||
return $result["result"];
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
71
api/libraries/libraries/main.php
Normal file
71
api/libraries/libraries/main.php
Normal file
@ -0,0 +1,71 @@
|
||||
<?php
|
||||
/*
|
||||
Copyright GHINK Network Studio
|
||||
Author: Bigsk(https://www.xiaxinzhe.cn)
|
||||
*/
|
||||
if(!defined('IN_SYS')){//Defined entreance security.
|
||||
header('HTTP/1.1 403 Forbidden');
|
||||
exit();
|
||||
}
|
||||
|
||||
class ghinkPassport{
|
||||
//初始化
|
||||
function __construct($sId="",$sKey=""){
|
||||
$this->id=$sId;
|
||||
$this->key=$sKey;
|
||||
$token=new token;
|
||||
$this->token=$token->getTokenApp($this->id,$this->key);
|
||||
if($this->token==false){
|
||||
die("Connect to Ghink Center failed!");
|
||||
}
|
||||
}
|
||||
//检查APP Token是否有效
|
||||
function checkTokenApp($token){
|
||||
$app=new app;
|
||||
return $app->checkToken($this->token,$token);
|
||||
}
|
||||
//查询APP开发者等级
|
||||
function checkLevelApp($token){
|
||||
$app=new app;
|
||||
return $app->checkLevel($this->token,$token);
|
||||
}
|
||||
//拼接oauth地址
|
||||
function loginAddr($tid,$location){
|
||||
return "https://center.ghink.net/v1/interface/oauth.php?type=oauth&tid=".$tid."&location=".$location;
|
||||
}
|
||||
//检查用户Token
|
||||
function checkToken($token){
|
||||
$user=new user;
|
||||
return $user->checkToken($token,$this->token);
|
||||
}
|
||||
//申请登录任务
|
||||
function applyLogin(){
|
||||
$task=new task;
|
||||
return $task->applyOauth($this->token);
|
||||
}
|
||||
//检查登录是否成功
|
||||
function checkLogin($tid){
|
||||
$token=new token;
|
||||
return $token->getTokenUsr($this->token,$tid);
|
||||
}
|
||||
//读取用户uid
|
||||
function getUid($token){
|
||||
$user=new user;
|
||||
return $user->getUid($token,$this->token);
|
||||
}
|
||||
//读取用户名
|
||||
function getName($uid){
|
||||
$user=new user;
|
||||
return $user->getName($uid,$this->token);
|
||||
}
|
||||
//检查用户是否实名
|
||||
function checkAuth($uid){
|
||||
$auth=new auth;
|
||||
return $auth->check($this->token,$uid);
|
||||
}
|
||||
//读取用户实名信息
|
||||
function readAuth($uid){
|
||||
$auth=new auth;
|
||||
return $auth->getData($this->token,$uid);
|
||||
}
|
||||
}
|
27
api/libraries/libraries/post.php
Normal file
27
api/libraries/libraries/post.php
Normal file
@ -0,0 +1,27 @@
|
||||
<?php
|
||||
/*
|
||||
Copyright GHINK Network Studio
|
||||
Author: Bigsk(https://www.xiaxinzhe.cn)
|
||||
*/
|
||||
if(!defined('IN_SYS')){//Defined entreance security.
|
||||
header('HTTP/1.1 403 Forbidden');
|
||||
exit();
|
||||
}
|
||||
|
||||
function sendPost($url, $post_data) {
|
||||
$postdata=http_build_query($post_data);
|
||||
$options=array(
|
||||
'http' => array(
|
||||
'method' => 'POST',
|
||||
'header' => 'Content-type:application/x-www-form-urlencoded',
|
||||
'content' => $postdata,
|
||||
'timeout' => 15*60
|
||||
),
|
||||
'ssl' => array(
|
||||
'verify_peer' => false,
|
||||
),
|
||||
);
|
||||
$context=stream_context_create($options);
|
||||
$result=file_get_contents($url,false,$context);
|
||||
return $result;
|
||||
}
|
13
api/libraries/libraries/setting.php
Normal file
13
api/libraries/libraries/setting.php
Normal file
@ -0,0 +1,13 @@
|
||||
<?php
|
||||
/*
|
||||
Copyright GHINK Network Studio
|
||||
Author: Bigsk(https://www.xiaxinzhe.cn)
|
||||
*/
|
||||
if(!defined('IN_SYS')){//Defined entreance security.
|
||||
header('HTTP/1.1 403 Forbidden');
|
||||
exit();
|
||||
}
|
||||
|
||||
class setting{
|
||||
const version="v1 alpha 2.0.0";
|
||||
}
|
23
api/libraries/libraries/task.php
Normal file
23
api/libraries/libraries/task.php
Normal file
@ -0,0 +1,23 @@
|
||||
<?php
|
||||
/*
|
||||
Copyright GHINK Network Studio
|
||||
Author: Bigsk(https://www.xiaxinzhe.cn)
|
||||
*/
|
||||
if(!defined('IN_SYS')){//Defined entreance security.
|
||||
header('HTTP/1.1 403 Forbidden');
|
||||
exit();
|
||||
}
|
||||
|
||||
class task{
|
||||
//申请Oauth Task
|
||||
function applyOauth($token){
|
||||
$data=array("token"=>$token);
|
||||
$result=sendPost("https://center.ghink.net/v1/interface/api.php?type=authTask",$data);
|
||||
$result=json_decode($result,true);
|
||||
if($result["status"]=="success"){
|
||||
return $result["tid"];
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
34
api/libraries/libraries/token.php
Normal file
34
api/libraries/libraries/token.php
Normal file
@ -0,0 +1,34 @@
|
||||
<?php
|
||||
/*
|
||||
Copyright GHINK Network Studio
|
||||
Author: Bigsk(https://www.xiaxinzhe.cn)
|
||||
*/
|
||||
if(!defined('IN_SYS')){//Defined entreance security.
|
||||
header('HTTP/1.1 403 Forbidden');
|
||||
exit(file_get_contents(setting::root."template/403.html"));
|
||||
}
|
||||
|
||||
class token{
|
||||
//取回应用Token
|
||||
function getTokenApp($sId,$sKey){
|
||||
$data=array("sid"=>$sId,"skey"=>$sKey);
|
||||
$result=sendPost("https://center.ghink.net/v1/interface/api.php?type=appToken",$data);
|
||||
$result=json_decode($result,true);
|
||||
if($result["status"]=="success"){
|
||||
return $result["token"];
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
//取回用户Token
|
||||
function getTokenUsr($token,$tid){
|
||||
$data=array("token"=>$token,"tid"=>$tid);
|
||||
$result=sendPost("https://center.ghink.net/v1/interface/api.php?type=authBack",$data);
|
||||
$result=json_decode($result,true);
|
||||
if($result["status"]=="success"){
|
||||
return $result["token"];
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
45
api/libraries/libraries/user.php
Normal file
45
api/libraries/libraries/user.php
Normal file
@ -0,0 +1,45 @@
|
||||
<?php
|
||||
/*
|
||||
Copyright GHINK Network Studio
|
||||
Author: Bigsk(https://www.xiaxinzhe.cn)
|
||||
*/
|
||||
if(!defined('IN_SYS')){//Defined entreance security.
|
||||
header('HTTP/1.1 403 Forbidden');
|
||||
exit();
|
||||
}
|
||||
|
||||
class user{
|
||||
//取回UID
|
||||
function getUid($tokenUsr,$tokenApp){
|
||||
$data=array("tokenUsr"=>$tokenUsr,"tokenApp"=>$tokenApp);
|
||||
$result=sendPost("https://center.ghink.net/v1/interface/api.php?type=getUid",$data);
|
||||
$result=json_decode($result,true);
|
||||
if($result["status"]=="success"){
|
||||
return $result["uid"];
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
//检查用户Token是否有效
|
||||
function checkToken($tokenUsr,$tokenApp){
|
||||
$data=array("tokenUsr"=>$tokenUsr,"tokenApp"=>$tokenApp);
|
||||
$result=sendPost("https://center.ghink.net/v1/interface/api.php?type=checkToken",$data);
|
||||
$result=json_decode($result,true);
|
||||
if($result["status"]=="success"){
|
||||
return true;
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
//取回昵称
|
||||
function getName($uid,$token){
|
||||
$data=array("uid"=>$uid,"token"=>$token);
|
||||
$result=sendPost("https://center.ghink.net/v1/interface/api.php?type=getName",$data);
|
||||
$result=json_decode($result,true);
|
||||
if($result["status"]=="success"){
|
||||
return $result["name"];
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
134
api/new/index.php
Normal file
134
api/new/index.php
Normal file
@ -0,0 +1,134 @@
|
||||
<?php
|
||||
//初始化基础信息
|
||||
include("../libraries/entrance.php");
|
||||
include("../libraries/key.php");
|
||||
include("../libraries/func.php");
|
||||
//初始化SDK
|
||||
$sdk=new ghinkPassport($global_id,$global_key);
|
||||
//初始化请求头
|
||||
header("content-type: application/json");
|
||||
//DEBUG开关
|
||||
$debug=false;
|
||||
|
||||
if($debug || @$_POST["token"]!=""){
|
||||
if($debug || @$_POST["pid"]!=""){
|
||||
if($debug || @$sdk->checkTokenApp($_POST["token"])){
|
||||
if($debug || @$sdk->checkLevelApp($_POST["token"])=="official"){
|
||||
//数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
switch (@$_POST["pid"]){
|
||||
case "0":
|
||||
$conn->close();
|
||||
exit();
|
||||
case "1"://手动添加
|
||||
if(@$_POST["info"]!=""){
|
||||
$json=json_decode($_POST["info"]);
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"failed","message"=>"need song info")));
|
||||
}
|
||||
$conn->close();
|
||||
exit();
|
||||
case "2"://网易云
|
||||
if(@$_POST["sid"]!=""){
|
||||
//不阻塞开关
|
||||
if(@$_POST["noWait"]=="true"){
|
||||
echo(json_encode(array("status"=>"success","message"=>"task add success")));
|
||||
fastcgi_finish_request();
|
||||
}
|
||||
//取回cookie
|
||||
$cookie=file_get_contents("../cookie.conf");
|
||||
//拉取歌曲信息
|
||||
$details=json_decode(file_get_contents("http://cloud-music.pl-fe.cn/song/detail?ids=".$_POST["sid"]."&cookie=".urlencode($cookie)));
|
||||
$sql=$conn->prepare("SELECT `sid`, `name`, `alias`, `alid`, `arid`, `hash` FROM `songs` WHERE `name`=?");
|
||||
$sql->bind_param("s",$details->songs[0]->name);
|
||||
$sql->execute();
|
||||
$sql->bind_result($sid,$name,$alias,$alid,$arid,$hash);
|
||||
$rName="";
|
||||
while($sql->fetch()){
|
||||
if($name==$details->songs[0]->name){
|
||||
$rSId=$sid;
|
||||
$rName=$name;
|
||||
$rAlias=$alias;
|
||||
$rAlId=$alid;
|
||||
$rArId=$arid;
|
||||
$rHash=$hash;
|
||||
}
|
||||
}
|
||||
//检测是否已经存在
|
||||
//理顺歌手信息
|
||||
$artists=$details->songs[0]->ar;
|
||||
$artistsFormat=array();
|
||||
foreach ($artists as $value){
|
||||
array_push($artistsFormat,addArtist($conn,$value->name));
|
||||
}
|
||||
$artistsList=array();
|
||||
foreach ($artistsFormat as $value){
|
||||
array_push($artistsList,$value["arid"]);
|
||||
}
|
||||
//检索本地歌手信息
|
||||
$artistsLocal=array();
|
||||
foreach (json_decode($rArId) as $value){
|
||||
array_push($artistsLocal,getArtist($conn,$value));
|
||||
}
|
||||
if($rName==$details->songs[0]->name && $artistsList==$artistsLocal){
|
||||
$album=getAlbum($conn,$rAlId);
|
||||
echo(json_encode(array("status"=>"success","message"=>"success","result"=>array("id"=>$rSId,"name"=>$rName,"url"=>"https://cache.music.ghink.net/song/".$rHash,"hash"=>$rHash,"ar"=>$artistsLocal,"al"=>$album))));
|
||||
}else{
|
||||
//判断是否有返回值
|
||||
if(count($details->songs)==0){
|
||||
echo(json_encode(array("status"=>"failed","message"=>"cannot find the song")));
|
||||
}else{
|
||||
//拉取URL
|
||||
$data=json_decode(file_get_contents("http://cloud-music.pl-fe.cn/song/url?id=".$_POST["sid"]."&cookie=".urlencode($cookie)));
|
||||
$url=$data->data[0]->url;
|
||||
//判断是否拉取成功(避免网易云去世)
|
||||
if($url!=""){
|
||||
//拉取歌曲文件信息
|
||||
$md5=$data->data[0]->md5;
|
||||
$name=$details->songs[0]->name;
|
||||
//拉取封面
|
||||
$coverUrl=$details->songs[0]->al->picUrl;
|
||||
$coverFile=file_get_contents($coverUrl);
|
||||
$coverHash=md5($coverFile);
|
||||
file_put_contents("../cache/cover/".$coverHash,$coverFile);
|
||||
//理顺专辑信息
|
||||
$albumFormat=addAlbum($conn,$details->songs[0]->al->name,NULL,$coverHash);
|
||||
//拉取歌曲文件
|
||||
while (true){
|
||||
$songFile=file_get_contents($url);
|
||||
$songHash=md5($songFile);
|
||||
if($songHash==$md5){
|
||||
break;
|
||||
}
|
||||
}
|
||||
file_put_contents("../cache/song/".$songHash,$songFile);
|
||||
//入库
|
||||
$song=addSong($conn,$name,$albumFormat["alid"],json_encode($artistsList),$md5);
|
||||
//输出
|
||||
echo(json_encode(array("status"=>"success","message"=>"success","result"=>array("id"=>$song["sid"],"name"=>$song['name'],"url"=>"https://cache.music.ghink.net/song/".$song['hash'],"hash"=>$song['hash'],"ar"=>$artistsFormat,"al"=>$albumFormat))));
|
||||
}else{
|
||||
echo(json_encode(array("status"=>"failed","message"=>"failed to quest the api")));
|
||||
}
|
||||
}
|
||||
}
|
||||
}else{
|
||||
echo(json_encode(array("status"=>"failed","message"=>"need song info")));
|
||||
}
|
||||
$conn->close();
|
||||
exit();
|
||||
default:
|
||||
$conn->close();
|
||||
exit(json_encode(array("status"=>"failed","message"=>"wrong platform")));
|
||||
}
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"failed","message"=>"no permission")));
|
||||
}
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"failed","message"=>"wrong app token")));
|
||||
}
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"failed","message"=>"need song info")));
|
||||
}
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"failed","message"=>"need app token")));
|
||||
}
|
1
api/new/logs.txt
Normal file
1
api/new/logs.txt
Normal file
@ -0,0 +1 @@
|
||||
[20, 21][20,21]
|
39
api/search/index.php
Normal file
39
api/search/index.php
Normal file
@ -0,0 +1,39 @@
|
||||
<?php
|
||||
//初始化基础信息
|
||||
include("../libraries/entrance.php");
|
||||
include("../libraries/key.php");
|
||||
include("../libraries/func.php");
|
||||
header("Access-Control-Allow-Origin: *");
|
||||
//初始化SDK
|
||||
$sdk=new ghinkPassport($global_id,$global_key);
|
||||
//初始化请求头
|
||||
header("content-type: application/json");
|
||||
|
||||
if(@$_GET["keyword"]!=""){
|
||||
//数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
$result=array();
|
||||
$songs=array();
|
||||
//按歌名查找歌曲
|
||||
$sql=$conn->prepare("SELECT `sid`, `name`, `alid`, `arid`, `hash` FROM `songs` WHERE `name` LIKE ? OR `sid`=?");
|
||||
$keyword="%".$_GET['keyword']."%";
|
||||
$sql->bind_param("si",$keyword,$_GET['keyword']);
|
||||
$sql->execute();
|
||||
$sql->bind_result($sid,$name,$alid,$arid,$hash);
|
||||
while($sql->fetch()){
|
||||
array_push($songs,array("sid"=>$sid,"name"=>$name,"alid"=>$alid,"arid"=>$arid,"hash"=>$hash));
|
||||
}
|
||||
//理顺结果
|
||||
foreach ($songs as $value){
|
||||
$artistsFormat=array();
|
||||
foreach (json_decode($value["arid"]) as $value2){
|
||||
array_push($artistsFormat,getArtist($conn,$value2));
|
||||
}
|
||||
$albumFormat=getAlbum($conn,$value["alid"]);
|
||||
array_push($result,array("id"=>$value["sid"],"name"=>$value["name"],"url"=>"https://cachev1.radio.fmhs.club/song/".$value["hash"],"hash"=>$value["hash"],"ar"=>$artistsFormat,"al"=>$albumFormat));
|
||||
}
|
||||
$conn->close();
|
||||
exit(json_encode(array("status"=>"success","message"=>"success","result"=>$result)));
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"failed","message"=>"need song info")));
|
||||
}
|
103
database/fmhs_music.sql
Normal file
103
database/fmhs_music.sql
Normal file
@ -0,0 +1,103 @@
|
||||
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
|
||||
START TRANSACTION;
|
||||
SET time_zone = "+00:00";
|
||||
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!40101 SET NAMES utf8mb4 */;
|
||||
|
||||
--
|
||||
-- 数据库: `fmhs_music`
|
||||
--
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- 表的结构 `albums`
|
||||
--
|
||||
|
||||
CREATE TABLE `albums` (
|
||||
`alid` int(11) NOT NULL,
|
||||
`name` text NOT NULL,
|
||||
`alias` json DEFAULT NULL,
|
||||
`cover` text
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- 表的结构 `artists`
|
||||
--
|
||||
|
||||
CREATE TABLE `artists` (
|
||||
`arid` int(11) NOT NULL,
|
||||
`name` text NOT NULL,
|
||||
`alias` json DEFAULT NULL,
|
||||
`pic` text
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- 表的结构 `songs`
|
||||
--
|
||||
|
||||
CREATE TABLE `songs` (
|
||||
`sid` int(11) NOT NULL,
|
||||
`name` text NOT NULL,
|
||||
`alias` json DEFAULT NULL,
|
||||
`alid` int(11) NOT NULL,
|
||||
`arid` json NOT NULL,
|
||||
`hash` text NOT NULL
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
--
|
||||
-- 转储表的索引
|
||||
--
|
||||
|
||||
--
|
||||
-- 表的索引 `albums`
|
||||
--
|
||||
ALTER TABLE `albums`
|
||||
ADD PRIMARY KEY (`alid`);
|
||||
|
||||
--
|
||||
-- 表的索引 `artists`
|
||||
--
|
||||
ALTER TABLE `artists`
|
||||
ADD PRIMARY KEY (`arid`);
|
||||
|
||||
--
|
||||
-- 表的索引 `songs`
|
||||
--
|
||||
ALTER TABLE `songs`
|
||||
ADD PRIMARY KEY (`sid`);
|
||||
|
||||
--
|
||||
-- 在导出的表使用AUTO_INCREMENT
|
||||
--
|
||||
|
||||
--
|
||||
-- 使用表AUTO_INCREMENT `albums`
|
||||
--
|
||||
ALTER TABLE `albums`
|
||||
MODIFY `alid` int(11) NOT NULL AUTO_INCREMENT;
|
||||
|
||||
--
|
||||
-- 使用表AUTO_INCREMENT `artists`
|
||||
--
|
||||
ALTER TABLE `artists`
|
||||
MODIFY `arid` int(11) NOT NULL AUTO_INCREMENT;
|
||||
|
||||
--
|
||||
-- 使用表AUTO_INCREMENT `songs`
|
||||
--
|
||||
ALTER TABLE `songs`
|
||||
MODIFY `sid` int(11) NOT NULL AUTO_INCREMENT;
|
||||
COMMIT;
|
||||
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
151
database/fmhs_radio_song.sql
Normal file
151
database/fmhs_radio_song.sql
Normal file
@ -0,0 +1,151 @@
|
||||
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
|
||||
START TRANSACTION;
|
||||
SET time_zone = "+00:00";
|
||||
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!40101 SET NAMES utf8mb4 */;
|
||||
|
||||
--
|
||||
-- 数据库: `fmhs_radio_song`
|
||||
--
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- 表的结构 `blacklist`
|
||||
--
|
||||
|
||||
CREATE TABLE `blacklist` (
|
||||
`id` int(11) NOT NULL
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- 表的结构 `history`
|
||||
--
|
||||
|
||||
CREATE TABLE `history` (
|
||||
`date` date NOT NULL,
|
||||
`list` text NOT NULL
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- 表的结构 `record`
|
||||
--
|
||||
|
||||
CREATE TABLE `record` (
|
||||
`recId` int(11) NOT NULL,
|
||||
`date` date NOT NULL,
|
||||
`pid` int(11) NOT NULL,
|
||||
`id` text NOT NULL,
|
||||
`uid` int(11) NOT NULL,
|
||||
`time` bigint(20) NOT NULL,
|
||||
`status` text
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- 表的结构 `system`
|
||||
--
|
||||
|
||||
CREATE TABLE `system` (
|
||||
`notice` longtext NOT NULL,
|
||||
`timeInterval` text NOT NULL,
|
||||
`openWeek` text NOT NULL,
|
||||
`refreshDay` tinyint(4) NOT NULL,
|
||||
`switcher` tinytext NOT NULL,
|
||||
`ignoreTime` tinytext NOT NULL,
|
||||
`systemKey` tinyint(4) NOT NULL DEFAULT '1'
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- 表的结构 `users`
|
||||
--
|
||||
|
||||
CREATE TABLE `users` (
|
||||
`uid` int(11) NOT NULL,
|
||||
`type` text NOT NULL,
|
||||
`nickname` text NOT NULL,
|
||||
`songNumsLimit` int(11) NOT NULL DEFAULT '1000',
|
||||
`songTimeUsed` int(11) NOT NULL DEFAULT '0',
|
||||
`songLastTime` date NOT NULL DEFAULT '1970-01-01',
|
||||
`name` text,
|
||||
`status` tinytext,
|
||||
`ban` tinytext,
|
||||
`message` longtext,
|
||||
`auth` json DEFAULT NULL
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- 表的结构 `whitelist`
|
||||
--
|
||||
|
||||
CREATE TABLE `whitelist` (
|
||||
`id` int(11) NOT NULL
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
--
|
||||
-- 转储表的索引
|
||||
--
|
||||
|
||||
--
|
||||
-- 表的索引 `blacklist`
|
||||
--
|
||||
ALTER TABLE `blacklist`
|
||||
ADD PRIMARY KEY (`id`);
|
||||
|
||||
--
|
||||
-- 表的索引 `history`
|
||||
--
|
||||
ALTER TABLE `history`
|
||||
ADD PRIMARY KEY (`date`);
|
||||
|
||||
--
|
||||
-- 表的索引 `record`
|
||||
--
|
||||
ALTER TABLE `record`
|
||||
ADD PRIMARY KEY (`recId`);
|
||||
|
||||
--
|
||||
-- 表的索引 `system`
|
||||
--
|
||||
ALTER TABLE `system`
|
||||
ADD PRIMARY KEY (`systemKey`);
|
||||
|
||||
--
|
||||
-- 表的索引 `users`
|
||||
--
|
||||
ALTER TABLE `users`
|
||||
ADD PRIMARY KEY (`uid`);
|
||||
|
||||
--
|
||||
-- 表的索引 `whitelist`
|
||||
--
|
||||
ALTER TABLE `whitelist`
|
||||
ADD PRIMARY KEY (`id`);
|
||||
|
||||
--
|
||||
-- 在导出的表使用AUTO_INCREMENT
|
||||
--
|
||||
|
||||
--
|
||||
-- 使用表AUTO_INCREMENT `record`
|
||||
--
|
||||
ALTER TABLE `record`
|
||||
MODIFY `recId` int(11) NOT NULL AUTO_INCREMENT;
|
||||
COMMIT;
|
||||
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
91
site/admin/auth.php
Normal file
91
site/admin/auth.php
Normal file
@ -0,0 +1,91 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>管理后台 - 凤鸣高级中学广播站</title>
|
||||
<!-- Bootstrap -->
|
||||
<link href="https://resource.ghink.net/site/public/css/bootstrap_4.4.1.css" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<hr>
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<h1>在线点歌系统</h1>
|
||||
</div>
|
||||
<div class="col-12" id="top">
|
||||
<a href="https://radio.fmhs.club/song">返回点歌系统</a>
|
||||
<div style="text-align:right;"><a href="login.php?location=https://radio.fmhs.club/song/">未登录</a></div>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-lg-8 col-12 jumbotron">
|
||||
<div class="form-group">
|
||||
<div id="body">
|
||||
<center><h3>加载中</h3></center>
|
||||
<hr>
|
||||
<center><h5>客官请稍后,结果马上来...</h5></center>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<footer class="text-center">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<p>Copyright © Ghink Network Studio 2014. All rights reserved.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
|
||||
<script src="https://resource.ghink.net/site/public/js/jquery.js"></script>
|
||||
<!-- Include all compiled plugins (below), or include individual files as needed -->
|
||||
<script src="https://resource.ghink.net/site/public/js/popper.min.js"></script>
|
||||
<script src="https://resource.ghink.net/site/public/js/bootstrap_4.4.1.js"></script>
|
||||
<script>
|
||||
var JsonData = {
|
||||
type: "user"
|
||||
};
|
||||
$.get("https://radio.fmhs.club/song/api.php", JsonData,
|
||||
function(data) {
|
||||
console.log(data);
|
||||
if(data["status"]==true && data["detail"]["type"]=="member"){
|
||||
document.getElementById("top").innerHTML=`
|
||||
<a href="https://radio.fmhs.club/song">返回点歌系统</a> <a href="index.php">系统信息</a> <a href="song.php">歌曲审核</a> <a href="auth.php">实名审核</a> <a href="list.php">今日播放</a>
|
||||
<div style="text-align:right;"><a href="../center/user.php">欢迎您!`+data["detail"]["nickname"]+`</a> <a href='../center/logout.php'>退出登陆</a></div>`;
|
||||
var JsonData = {
|
||||
type: "adminAuth"
|
||||
};
|
||||
$.get("https://radio.fmhs.club/song/api.php", JsonData,
|
||||
function(data) {
|
||||
console.log(data);
|
||||
var body="";
|
||||
body+=`<table width="100%"><tr><th>UID</th><th>昵称</th><th>姓名</th><th>实名照片</th><th>通过/驳回</th></tr><tr>`;
|
||||
for(let i=0;i<data["detail"].length;i++){
|
||||
body+=`<th>`+data["detail"][i][0]+`</th><th>`+data["detail"][i][1]+`</th><th>`+data["detail"][i][2]+`</th><th><img width="100%" src="data:image/png;base64,`+data["detail"][i][3][1]+`"/></th><th><span onClick="pass(`+data["detail"][i][0]+`)" style="color:dodgerblue;">通过</span> <span onClick="refuse(`+data["detail"][i][0]+`)" style="color:dodgerblue;">驳回</span></th></tr>`;
|
||||
}
|
||||
body+=`</tr></table>`;
|
||||
document.getElementById("body").innerHTML=body;
|
||||
})
|
||||
}else{
|
||||
alert("非法访问!");
|
||||
window.location.href='../center/login.php?location=https://radio.fmhs.club/song/';
|
||||
}
|
||||
})
|
||||
function pass(uid){
|
||||
console.log(uid);
|
||||
}
|
||||
function refuse(uid){
|
||||
console.log(uid);
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
91
site/admin/index.php
Normal file
91
site/admin/index.php
Normal file
@ -0,0 +1,91 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>管理后台 - 凤鸣高级中学广播站</title>
|
||||
<!-- Bootstrap -->
|
||||
<link href="https://resource.ghink.net/site/public/css/bootstrap_4.4.1.css" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<hr>
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<h1>在线点歌系统</h1>
|
||||
</div>
|
||||
<div class="col-12" id="top">
|
||||
<a href="https://radio.fmhs.club/song">返回点歌系统</a>
|
||||
<div style="text-align:right;"><a href="login.php?location=https://radio.fmhs.club/song/">未登录</a></div>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-lg-8 col-12 jumbotron">
|
||||
<div class="form-group">
|
||||
<div id="body">
|
||||
<center><h3>加载中</h3></center>
|
||||
<hr>
|
||||
<center><h5>客官请稍后,结果马上来...</h5></center>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<footer class="text-center">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<p>Copyright © Ghink Network Studio 2014. All rights reserved.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
|
||||
<script src="https://resource.ghink.net/site/public/js/jquery.js"></script>
|
||||
<!-- Include all compiled plugins (below), or include individual files as needed -->
|
||||
<script src="https://resource.ghink.net/site/public/js/popper.min.js"></script>
|
||||
<script src="https://resource.ghink.net/site/public/js/bootstrap_4.4.1.js"></script>
|
||||
<script>
|
||||
var JsonData = {
|
||||
type: "user"
|
||||
};
|
||||
$.get("https://radio.fmhs.club/song/api.php", JsonData,
|
||||
function(data) {
|
||||
console.log(data);
|
||||
if(data["status"]==true && data["detail"]["type"]=="member"){
|
||||
document.getElementById("top").innerHTML=`
|
||||
<a href="https://radio.fmhs.club/song">返回点歌系统</a> <a href="index.php">系统信息</a> <a href="song.php">歌曲审核</a> <a href="auth.php">实名审核</a> <a href="list.php">今日播放</a>
|
||||
<div style="text-align:right;"><a href="../center/user.php">欢迎您!`+data["detail"]["nickname"]+`</a> <a href='../center/logout.php'>退出登陆</a></div>`;
|
||||
var JsonData = {
|
||||
type: "system"
|
||||
};
|
||||
$.get("https://radio.fmhs.club/song/api.php", JsonData,
|
||||
function(data) {
|
||||
console.log(data);
|
||||
var body="";
|
||||
var notice=data["notice"].replace(new RegExp("<br>", 'g'),"\n");
|
||||
body+=` <form method="get" class="form-example">
|
||||
<div>
|
||||
<h5><label for="notice">公告: </label></h5>
|
||||
<textarea type="text" name="notice" id="notice" style="width: 100%;">`+notice+`</textarea>
|
||||
</div>
|
||||
<div>
|
||||
</br>
|
||||
<input type="submit" class="btn btn-primary" value="保存">
|
||||
</div>
|
||||
</form>`;
|
||||
document.getElementById("body").innerHTML=body;
|
||||
})
|
||||
}else{
|
||||
alert("非法访问!");
|
||||
window.location.href='../center/login.php?location=https://radio.fmhs.club/song/';
|
||||
}
|
||||
})
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
92
site/admin/list.php
Normal file
92
site/admin/list.php
Normal file
@ -0,0 +1,92 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>管理后台-凤鸣高级中学广播站</title>
|
||||
<link href="https://resource.ghink.net/site/public/css/bootstrap_4.4.1.css" rel="stylesheet">
|
||||
|
||||
<body>
|
||||
<div class="container">
|
||||
<hr>
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<h1>在线点歌系统</h1>
|
||||
</div>
|
||||
<div class="col-12" id="top">
|
||||
<a href="https://radio.fmhs.club/song">返回点歌系统</a>
|
||||
<div style="text-align:right;"><a href="login.php?location=https://radio.fmhs.club/song/">未登录</a></div>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-lg-8 col-12 jumbotron">
|
||||
<div id="body">
|
||||
<center><h3>加载中</h3></center>
|
||||
<hr>
|
||||
<center><h5>客官请稍后,结果马上来...</h5></center>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<footer class="text-center">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<p>Copyright © Ghink Network Studio 2014. All rights reserved.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
<script src="https://resource.ghink.net/site/public/js/jquery.js"></script>
|
||||
<script src="https://resource.ghink.net/site/public/js/popper.min.js"></script>
|
||||
<script src="https://resource.ghink.net/site/public/js/bootstrap_4.4.1.js"></script>
|
||||
<script>
|
||||
var JsonData = {
|
||||
type: "user"
|
||||
};
|
||||
$.get("https://radio.fmhs.club/song/api.php", JsonData,
|
||||
function(data) {
|
||||
console.log(data);
|
||||
if(data["status"]==true && data["detail"]["type"]=="member"){
|
||||
document.getElementById("top").innerHTML=`
|
||||
<a href="https://radio.fmhs.club/song">返回点歌系统</a> <a href="index.php">系统信息</a> <a href="song.php">歌曲审核</a> <a href="auth.php">实名审核</a> <a href="list.php">今日播放</a>
|
||||
<div style="text-align:right;"><a href="../center/user.php">欢迎您!`+data["detail"]["nickname"]+`</a> <a href='../center/logout.php'>退出登陆</a></div>`;
|
||||
var JsonData = {
|
||||
type: "playlist"
|
||||
};
|
||||
$.get("https://radio.fmhs.club/song/api.php", JsonData,
|
||||
function(data) {
|
||||
console.log(data);
|
||||
var result="";
|
||||
for(let i=0;i<data.length;i++){
|
||||
console.log(data[i]);
|
||||
var artist="";
|
||||
for(let j=0;j<data[i]["song"]["ar"].length;j++){
|
||||
if(j==data[i]["song"]["ar"].length-1){
|
||||
artist+=data[i]["song"]["ar"][j]["name"];
|
||||
}else{
|
||||
artist+=data[i]["song"]["ar"][j]["name"]+" , ";
|
||||
}
|
||||
}
|
||||
result+=`<li>`+data[i]["song"]["name"]+` - `+artist+` <br><audio src="`+data[i]["song"]["url"]+`" controls loop></audio><br><span style="color:dodgerblue;">点播者:`+data[i]["user"]+`</span></li>`;
|
||||
}
|
||||
if (result==""){
|
||||
result+="<li>找不到任何结果!</li>";
|
||||
}
|
||||
document.getElementById("body").innerHTML=result;
|
||||
});
|
||||
}else{
|
||||
alert("非法访问!");
|
||||
window.location.href='../center/login.php?location=https://radio.fmhs.club/song/';
|
||||
}
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
159
site/admin/song.php
Normal file
159
site/admin/song.php
Normal file
@ -0,0 +1,159 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>管理后台-凤鸣高级中学广播站</title>
|
||||
<link href="https://resource.ghink.net/site/public/css/bootstrap_4.4.1.css" rel="stylesheet">
|
||||
|
||||
<body>
|
||||
<div class="container">
|
||||
<hr>
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<h1>在线点歌系统</h1>
|
||||
</div>
|
||||
<div class="col-12" id="top">
|
||||
<a href="https://radio.fmhs.club/song">返回点歌系统</a>
|
||||
<div style="text-align:right;"><a href="login.php?location=https://radio.fmhs.club/song/">未登录</a></div>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-lg-8 col-12 jumbotron">
|
||||
<div id="body">
|
||||
<center><h3>加载中</h3></center>
|
||||
<hr>
|
||||
<center><h5>客官请稍后,结果马上来...</h5></center>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<footer class="text-center">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<p>Copyright © Ghink Network Studio 2014. All rights reserved.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
<script src="https://resource.ghink.net/site/public/js/jquery.js"></script>
|
||||
<script src="https://resource.ghink.net/site/public/js/popper.min.js"></script>
|
||||
<script src="https://resource.ghink.net/site/public/js/bootstrap_4.4.1.js"></script>
|
||||
<script>
|
||||
function pass(id){
|
||||
var ensure=confirm("您确定要通过吗?通过的同时会将歌曲加入白名单。");
|
||||
if(ensure){
|
||||
console.log("Pass "+id);
|
||||
var JsonData = {
|
||||
type: "adminSongOperate",
|
||||
operate: "pass",
|
||||
recId: id
|
||||
};
|
||||
$.get("https://radio.fmhs.club/song/api.php", JsonData,
|
||||
function(data) {
|
||||
if(data["status"]==true){
|
||||
alert("成功!");
|
||||
getList();
|
||||
}else{
|
||||
alert("失败!");
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
function reject(id){
|
||||
var ensure=confirm("您确定要驳回吗?驳回的同时会将歌曲加入黑名单。如果不希望将其加入黑名单,请使用忽略!");
|
||||
if(ensure){
|
||||
console.log("Reject "+id);
|
||||
var JsonData = {
|
||||
type: "adminSongOperate",
|
||||
operate: "reject",
|
||||
recId: id
|
||||
};
|
||||
$.get("https://radio.fmhs.club/song/api.php", JsonData,
|
||||
function(data) {
|
||||
if(data["status"]==true){
|
||||
alert("成功!");
|
||||
getList();
|
||||
}else{
|
||||
alert("失败!");
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
function ignore(id){
|
||||
var ensure=confirm("您确定要忽略吗?忽略不会对歌曲做任何操作,仅仅会忽略本次点歌。");
|
||||
if(ensure){
|
||||
console.log("Ignore "+id);
|
||||
var JsonData = {
|
||||
type: "adminSongOperate",
|
||||
operate: "ignore",
|
||||
recId: id
|
||||
};
|
||||
$.get("https://radio.fmhs.club/song/api.php", JsonData,
|
||||
function(data) {
|
||||
if(data["status"]==true){
|
||||
alert("成功!");
|
||||
getList();
|
||||
}else{
|
||||
alert("失败!");
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
function getList(){
|
||||
var JsonData = {
|
||||
type: "adminSong"
|
||||
};
|
||||
$.get("https://radio.fmhs.club/song/api.php", JsonData,
|
||||
function(data) {
|
||||
list=data["detail"];
|
||||
console.log(list);
|
||||
var result="";
|
||||
for(let i=0;i<list.length;i++){
|
||||
console.log(list[i]);
|
||||
var artist="";
|
||||
for(let j=0;j<list[i]["detail"]["ar"].length;j++){
|
||||
if(j==list[i]["detail"]["ar"].length-1){
|
||||
artist+=list[i]["detail"]["ar"][j]["name"];
|
||||
}else{
|
||||
artist+=list[i]["detail"]["ar"][j]["name"]+" , ";
|
||||
}
|
||||
}
|
||||
result+=`<li>`+list[i]["detail"]["name"]+` - `+artist+` <br>
|
||||
<audio src="`+list[i]["detail"]["url"]+`" controls loop></audio><br>
|
||||
<span></span><br>
|
||||
<span onClick="pass(`+list[i]["recId"]+`)" style="color:dodgerblue;">通过</span> <span onClick="reject(`+list[i]["recId"]+`)" style="color:dodgerblue;">驳回</span> <span onClick="ignore(`+list[i]["recId"]+`)" style="color:dodgerblue;">忽略</span></li>`;
|
||||
}
|
||||
if (result==""){
|
||||
result+="<li>找不到任何结果!</li>";
|
||||
}
|
||||
document.getElementById("body").innerHTML=result;
|
||||
});
|
||||
}
|
||||
var JsonData = {
|
||||
type: "user"
|
||||
};
|
||||
$.get("https://radio.fmhs.club/song/api.php", JsonData,
|
||||
function(data) {
|
||||
console.log(data);
|
||||
if(data["status"]==true && data["detail"]["type"]=="member"){
|
||||
document.getElementById("top").innerHTML=`
|
||||
<a href="https://radio.fmhs.club/song">返回点歌系统</a> <a href="index.php">系统信息</a> <a href="song.php">歌曲审核</a> <a href="auth.php">实名审核</a> <a href="list.php">今日播放</a>
|
||||
<div style="text-align:right;"><a href="../center/user.php">欢迎您!`+data["detail"]["nickname"]+`</a> <a href='../center/logout.php'>退出登陆</a></div>`;
|
||||
getList();
|
||||
}else{
|
||||
alert("非法访问!");
|
||||
window.location.href='../center/login.php?location=https://radio.fmhs.club/song/';
|
||||
}
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
100
site/center/auth.php
Normal file
100
site/center/auth.php
Normal file
@ -0,0 +1,100 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>实名认证系统 - 凤鸣高级中学广播站</title>
|
||||
<!-- Bootstrap -->
|
||||
<link href="https://resource.ghink.net/site/public/css/bootstrap_4.4.1.css" rel="stylesheet">
|
||||
<style>
|
||||
#qrcode{
|
||||
/*text-align: center;*/
|
||||
/*display: table-cell;*/
|
||||
/*width: 120px;*/
|
||||
/*height: 120px;*/
|
||||
/*vertical-align:middle;*/
|
||||
/*position: relative;*/
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<hr>
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<h3>在线点歌系统</h3>
|
||||
</div>
|
||||
<div class="col-12" id="top">
|
||||
<a href="https://radio.fmhs.club/">返回首页</a> <a href="../song/index.php">在线点歌</a> <a href="../song/record.php">点歌记录</a> <a href="../song/list.php">黑白名单</a>
|
||||
<div style="text-align:right;"><a href="login.php?location=https://radio.fmhs.club/song/">未登录</a></div>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-lg-8 col-12 jumbotron" id="body">
|
||||
<center><h3>加载中</h3></center>
|
||||
<hr>
|
||||
<center><h5>客官请稍后,结果马上来...</h5></center>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<footer class="text-center">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<p>Copyright © Ghink Network Studio 2014. All rights reserved.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
<script src="https://resource.ghink.net/site/public/js/qrcode.js"></script>
|
||||
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
|
||||
<script src="https://resource.ghink.net/site/public/js/jquery.js"></script>
|
||||
<!-- Include all compiled plugins (below), or include individual files as needed -->
|
||||
<script src="https://resource.ghink.net/site/public/js/popper.min.js"></script>
|
||||
<script src="https://resource.ghink.net/site/public/js/bootstrap_4.4.1.js"></script>
|
||||
<script>
|
||||
var JsonData = {
|
||||
type: "user"
|
||||
};
|
||||
$.get("https://radio.fmhs.club/song/api.php", JsonData,
|
||||
function(data) {
|
||||
console.log(data);
|
||||
if(data["status"]==true){
|
||||
document.getElementById("top").innerHTML=`
|
||||
<a href="https://radio.fmhs.club/">返回首页</a> <a href="../song/index.php">在线点歌</a> <a href="../song/record.php">点歌记录</a> <a href="../song/list.php">黑白名单</a> <a href="../song/myRecord.php">我的已点</a>
|
||||
<div style="text-align:right;"><a href="user.php">欢迎您!`+data["detail"]["nickname"]+`</a> <a href='logout.php'>退出登陆</a></div>`;
|
||||
var body="";
|
||||
body+="<h4>人脸识别状态:</h4>";
|
||||
if(data["detail"]["ghinkAuth"]){
|
||||
body+="<h5> 已完成</h5>";
|
||||
body+="<h4>学生信息实名状态:</h4>";
|
||||
if(data["detail"]["auth"]){
|
||||
body+="<h5> 已完成 "+data["detail"]["name"]+"</h5>";
|
||||
}else{
|
||||
if(data["detail"]["examineAuth"]){
|
||||
body+=`<h5> 审核中</h5>`;
|
||||
}else{
|
||||
body+=`<h5> 未完成</h5>
|
||||
<form id="upload" action="authProcess.php" method="post" enctype="multipart/form-data">
|
||||
上传学生证/胸卡:<input type="file" id="upload" name="upload"/><br/><input type="submit" value="上传"/>
|
||||
</form>`;
|
||||
}
|
||||
}
|
||||
}else{
|
||||
body+="<h5> 未完成 <a href=\"https://center.ghink.net/v1/interface/oauth.php?type=auth\" target=\"_blank\">点我去实名</a></h5>";
|
||||
body+=" 完成后请刷新本页面!";
|
||||
}
|
||||
document.getElementById("body").innerHTML=body;
|
||||
}
|
||||
})
|
||||
function back(){
|
||||
history.go(-1);
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
48
site/center/authProcess.php
Normal file
48
site/center/authProcess.php
Normal file
@ -0,0 +1,48 @@
|
||||
<?php
|
||||
include("../key.php");
|
||||
|
||||
$allowedExts = array("gif", "jpeg", "jpg", "png", "JPG");
|
||||
$temp = explode(".", $_FILES["upload"]["name"]);
|
||||
$extension = end($temp);
|
||||
|
||||
function alert($text){
|
||||
echo "<script>alert('".$text."');</script>";
|
||||
}
|
||||
|
||||
if ((($_FILES["upload"]["type"] == "image/gif")
|
||||
|| ($_FILES["upload"]["type"] == "image/jpeg")
|
||||
|| ($_FILES["upload"]["type"] == "image/jpg")
|
||||
|| ($_FILES["upload"]["type"] == "image/pjpeg")
|
||||
|| ($_FILES["upload"]["type"] == "image/x-png")
|
||||
|| ($_FILES["upload"]["type"] == "image/png"))
|
||||
&& in_array($extension, $allowedExts)){
|
||||
if ($_FILES["uploadfile"]["error"] > 0){
|
||||
alert("错误:".$_FILES["upload"]["error"]);
|
||||
}else{
|
||||
//数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
$file=file_get_contents($_FILES["upload"]["tmp_name"]);
|
||||
$file=base64_encode($file);
|
||||
$info=json_encode(array($_FILES["upload"]["type"],$file));
|
||||
$sql=$conn->prepare("UPDATE `users` SET `auth`=? WHERE `uid`=?");
|
||||
$sql->bind_param("si",$info,$_COOKIE["uid"]);
|
||||
$sql->execute();
|
||||
$conn->close();
|
||||
alert("上传成功!请等待审核!");
|
||||
/*
|
||||
alert("上传文件名: ".$_FILES["upload"]["name"]);
|
||||
alert("文件类型: ".$_FILES["upload"]["type"]);
|
||||
alert("文件大小: ".($_FILES["upload"]["size"] / 1024)."kB");
|
||||
alert("文件临时存储的位置: ".$_FILES["upload"]["tmp_name"]);
|
||||
if (file_exists("upload/".$_FILES["upload"]["name"])){
|
||||
alert($_FILES["upload"]["name"]." 文件已经存在");
|
||||
}else{
|
||||
move_uploaded_file($_FILES["upload"]["tmp_name"], "upload/".$_FILES["upload"]["name"]);
|
||||
alert("文件存储在: "."upload/".$_FILES["upload"]["name"]);
|
||||
}
|
||||
*/
|
||||
}
|
||||
}else{
|
||||
alert("非法的文件格式");
|
||||
}
|
||||
echo "<script>window.location.href='../center/login.php?location=https://radio.fmhs.club/center/auth.php';</script>";
|
15
site/center/entrance.php
Normal file
15
site/center/entrance.php
Normal file
@ -0,0 +1,15 @@
|
||||
<?php
|
||||
/*
|
||||
Copyright GHINK Network Studio
|
||||
Author: Bigsk(https://www.xiaxinzhe.cn)
|
||||
*/
|
||||
|
||||
define(('IN_SYS'),true);//Defined entreance security.
|
||||
include("libraries/task.php");
|
||||
include("libraries/setting.php");
|
||||
include("libraries/post.php");
|
||||
include("libraries/token.php");
|
||||
include("libraries/main.php");
|
||||
include("libraries/user.php");
|
||||
include("libraries/auth.php");
|
||||
include("libraries/app.php");
|
34
site/center/libraries/app.php
Normal file
34
site/center/libraries/app.php
Normal file
@ -0,0 +1,34 @@
|
||||
<?php
|
||||
/*
|
||||
Copyright GHINK Network Studio
|
||||
Author: Bigsk(https://www.xiaxinzhe.cn)
|
||||
*/
|
||||
if(!defined('IN_SYS')){//Defined entreance security.
|
||||
header('HTTP/1.1 403 Forbidden');
|
||||
exit();
|
||||
}
|
||||
|
||||
class app{
|
||||
//查询APP Token是否有效
|
||||
function checkToken($token,$tokenCheck){
|
||||
$data=array("token"=>$token,"tokenCheck"=>$tokenCheck);
|
||||
$result=sendPost("https://center.ghink.net/v1/interface/api.php?type=checkAppToken",$data);
|
||||
$result=json_decode($result,true);
|
||||
if($result["status"]=="success"){
|
||||
return $result["result"];
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
//获取APP等级
|
||||
function checkLevel($token,$tokenCheck){
|
||||
$data=array("token"=>$token,"tokenCheck"=>$tokenCheck);
|
||||
$result=sendPost("https://center.ghink.net/v1/interface/api.php?type=checkAppLevel",$data);
|
||||
$result=json_decode($result,true);
|
||||
if($result["status"]=="success"){
|
||||
return $result["result"];
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
34
site/center/libraries/auth.php
Normal file
34
site/center/libraries/auth.php
Normal file
@ -0,0 +1,34 @@
|
||||
<?php
|
||||
/*
|
||||
Copyright GHINK Network Studio
|
||||
Author: Bigsk(https://www.xiaxinzhe.cn)
|
||||
*/
|
||||
if(!defined('IN_SYS')){//Defined entreance security.
|
||||
header('HTTP/1.1 403 Forbidden');
|
||||
exit();
|
||||
}
|
||||
|
||||
class auth{
|
||||
//查询用户是否实名
|
||||
function check($token,$uid){
|
||||
$data=array("token"=>$token,"uid"=>$uid);
|
||||
$result=sendPost("https://center.ghink.net/v1/interface/api.php?type=checkAuth",$data);
|
||||
$result=json_decode($result,true);
|
||||
if($result["status"]=="success"){
|
||||
return $result["auth"];
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
//查询用户实名信息
|
||||
function getData($token,$uid){
|
||||
$data=array("token"=>$token,"uid"=>$uid);
|
||||
$result=sendPost("https://center.ghink.net/v1/interface/api.php?type=getAuthInfo",$data);
|
||||
$result=json_decode($result,true);
|
||||
if($result["status"]=="success"){
|
||||
return $result["result"];
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
71
site/center/libraries/main.php
Normal file
71
site/center/libraries/main.php
Normal file
@ -0,0 +1,71 @@
|
||||
<?php
|
||||
/*
|
||||
Copyright GHINK Network Studio
|
||||
Author: Bigsk(https://www.xiaxinzhe.cn)
|
||||
*/
|
||||
if(!defined('IN_SYS')){//Defined entreance security.
|
||||
header('HTTP/1.1 403 Forbidden');
|
||||
exit();
|
||||
}
|
||||
|
||||
class ghinkPassport{
|
||||
//初始化
|
||||
function __construct($sId="",$sKey=""){
|
||||
$this->id=$sId;
|
||||
$this->key=$sKey;
|
||||
$token=new token;
|
||||
$this->token=$token->getTokenApp($this->id,$this->key);
|
||||
if($this->token==false){
|
||||
die("Connect to Ghink Center failed!");
|
||||
}
|
||||
}
|
||||
//检查APP Token是否有效
|
||||
function checkTokenApp($token){
|
||||
$app=new app;
|
||||
return $app->checkToken($this->token,$token);
|
||||
}
|
||||
//查询APP开发者等级
|
||||
function checkLevelApp($token){
|
||||
$app=new app;
|
||||
return $app->checkLevel($this->token,$token);
|
||||
}
|
||||
//拼接oauth地址
|
||||
function loginAddr($tid,$location){
|
||||
return "https://center.ghink.net/v1/interface/oauth.php?type=oauth&tid=".$tid."&location=".$location;
|
||||
}
|
||||
//检查用户Token
|
||||
function checkToken($token){
|
||||
$user=new user;
|
||||
return $user->checkToken($token,$this->token);
|
||||
}
|
||||
//申请登录任务
|
||||
function applyLogin(){
|
||||
$task=new task;
|
||||
return $task->applyOauth($this->token);
|
||||
}
|
||||
//检查登录是否成功
|
||||
function checkLogin($tid){
|
||||
$token=new token;
|
||||
return $token->getTokenUsr($this->token,$tid);
|
||||
}
|
||||
//读取用户uid
|
||||
function getUid($token){
|
||||
$user=new user;
|
||||
return $user->getUid($token,$this->token);
|
||||
}
|
||||
//读取用户名
|
||||
function getName($uid){
|
||||
$user=new user;
|
||||
return $user->getName($uid,$this->token);
|
||||
}
|
||||
//检查用户是否实名
|
||||
function checkAuth($uid){
|
||||
$auth=new auth;
|
||||
return $auth->check($this->token,$uid);
|
||||
}
|
||||
//读取用户实名信息
|
||||
function readAuth($uid){
|
||||
$auth=new auth;
|
||||
return $auth->getData($this->token,$uid);
|
||||
}
|
||||
}
|
27
site/center/libraries/post.php
Normal file
27
site/center/libraries/post.php
Normal file
@ -0,0 +1,27 @@
|
||||
<?php
|
||||
/*
|
||||
Copyright GHINK Network Studio
|
||||
Author: Bigsk(https://www.xiaxinzhe.cn)
|
||||
*/
|
||||
if(!defined('IN_SYS')){//Defined entreance security.
|
||||
header('HTTP/1.1 403 Forbidden');
|
||||
exit();
|
||||
}
|
||||
|
||||
function sendPost($url, $post_data) {
|
||||
$postdata=http_build_query($post_data);
|
||||
$options=array(
|
||||
'ssl' => array(
|
||||
'verify_peer' => false,
|
||||
),
|
||||
'http' => array(
|
||||
'method' => 'POST',
|
||||
'header' => 'Content-type:application/x-www-form-urlencoded',
|
||||
'content' => $postdata,
|
||||
'timeout' => 15*60
|
||||
)
|
||||
);
|
||||
$context=stream_context_create($options);
|
||||
$result=file_get_contents($url,false,$context);
|
||||
return $result;
|
||||
}
|
13
site/center/libraries/setting.php
Normal file
13
site/center/libraries/setting.php
Normal file
@ -0,0 +1,13 @@
|
||||
<?php
|
||||
/*
|
||||
Copyright GHINK Network Studio
|
||||
Author: Bigsk(https://www.xiaxinzhe.cn)
|
||||
*/
|
||||
if(!defined('IN_SYS')){//Defined entreance security.
|
||||
header('HTTP/1.1 403 Forbidden');
|
||||
exit();
|
||||
}
|
||||
|
||||
class setting{
|
||||
const version="v1 alpha 2.0.0";
|
||||
}
|
23
site/center/libraries/task.php
Normal file
23
site/center/libraries/task.php
Normal file
@ -0,0 +1,23 @@
|
||||
<?php
|
||||
/*
|
||||
Copyright GHINK Network Studio
|
||||
Author: Bigsk(https://www.xiaxinzhe.cn)
|
||||
*/
|
||||
if(!defined('IN_SYS')){//Defined entreance security.
|
||||
header('HTTP/1.1 403 Forbidden');
|
||||
exit();
|
||||
}
|
||||
|
||||
class task{
|
||||
//申请Oauth Task
|
||||
function applyOauth($token){
|
||||
$data=array("token"=>$token);
|
||||
$result=sendPost("https://center.ghink.net/v1/interface/api.php?type=authTask",$data);
|
||||
$result=json_decode($result,true);
|
||||
if($result["status"]=="success"){
|
||||
return $result["tid"];
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
34
site/center/libraries/token.php
Normal file
34
site/center/libraries/token.php
Normal file
@ -0,0 +1,34 @@
|
||||
<?php
|
||||
/*
|
||||
Copyright GHINK Network Studio
|
||||
Author: Bigsk(https://www.xiaxinzhe.cn)
|
||||
*/
|
||||
if(!defined('IN_SYS')){//Defined entreance security.
|
||||
header('HTTP/1.1 403 Forbidden');
|
||||
exit(file_get_contents(setting::root."template/403.html"));
|
||||
}
|
||||
|
||||
class token{
|
||||
//取回应用Token
|
||||
function getTokenApp($sId,$sKey){
|
||||
$data=array("sid"=>$sId,"skey"=>$sKey);
|
||||
$result=sendPost("https://center.ghink.net/v1/interface/api.php?type=appToken",$data);
|
||||
$result=json_decode($result,true);
|
||||
if($result["status"]=="success"){
|
||||
return $result["token"];
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
//取回用户Token
|
||||
function getTokenUsr($token,$tid){
|
||||
$data=array("token"=>$token,"tid"=>$tid);
|
||||
$result=sendPost("https://center.ghink.net/v1/interface/api.php?type=authBack",$data);
|
||||
$result=json_decode($result,true);
|
||||
if($result["status"]=="success"){
|
||||
return $result["token"];
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
45
site/center/libraries/user.php
Normal file
45
site/center/libraries/user.php
Normal file
@ -0,0 +1,45 @@
|
||||
<?php
|
||||
/*
|
||||
Copyright GHINK Network Studio
|
||||
Author: Bigsk(https://www.xiaxinzhe.cn)
|
||||
*/
|
||||
if(!defined('IN_SYS')){//Defined entreance security.
|
||||
header('HTTP/1.1 403 Forbidden');
|
||||
exit();
|
||||
}
|
||||
|
||||
class user{
|
||||
//取回UID
|
||||
function getUid($tokenUsr,$tokenApp){
|
||||
$data=array("tokenUsr"=>$tokenUsr,"tokenApp"=>$tokenApp);
|
||||
$result=sendPost("https://center.ghink.net/v1/interface/api.php?type=getUid",$data);
|
||||
$result=json_decode($result,true);
|
||||
if($result["status"]=="success"){
|
||||
return $result["uid"];
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
//检查用户Token是否有效
|
||||
function checkToken($tokenUsr,$tokenApp){
|
||||
$data=array("tokenUsr"=>$tokenUsr,"tokenApp"=>$tokenApp);
|
||||
$result=sendPost("https://center.ghink.net/v1/interface/api.php?type=checkToken",$data);
|
||||
$result=json_decode($result,true);
|
||||
if($result["status"]=="success"){
|
||||
return true;
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
//取回昵称
|
||||
function getName($uid,$token){
|
||||
$data=array("uid"=>$uid,"token"=>$token);
|
||||
$result=sendPost("https://center.ghink.net/v1/interface/api.php?type=getName",$data);
|
||||
$result=json_decode($result,true);
|
||||
if($result["status"]=="success"){
|
||||
return $result["name"];
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
91
site/center/login.php
Normal file
91
site/center/login.php
Normal file
@ -0,0 +1,91 @@
|
||||
<?php
|
||||
include("entrance.php");
|
||||
include("../key.php");
|
||||
$sdk=new ghinkPassport($global_id,$global_key);
|
||||
$ts=time();
|
||||
if($_COOKIE["token"]==""){
|
||||
switch(@$_GET["type"]){
|
||||
case "callBack":
|
||||
if(@$_GET["tid"]!=""){
|
||||
$token=$sdk->checkLogin($_GET["tid"]);
|
||||
$uid=$sdk->getUid($token);
|
||||
$nicknameRead=$sdk->getName($uid);
|
||||
$authInfo=json_decode($sdk->readAuth($uid));
|
||||
//数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
$sql=$conn->prepare("SELECT `ban`,`type` FROM `users` WHERE `uid`=?");
|
||||
$sql->bind_param('i',$uid);
|
||||
$sql->execute();
|
||||
$sql->bind_result($ban,$type);
|
||||
while($sql->fetch()){
|
||||
$rBan=$ban;
|
||||
$rType=$type;
|
||||
}
|
||||
if($rType==""){
|
||||
$name=$authInfo->idcard_confirm->name;
|
||||
$number=$authInfo->idcard_confirm->idcard_number;
|
||||
$authList=array();
|
||||
for($i=2019;$i<=2021;$i++){
|
||||
$authList=array_merge($authList,json_decode(file_get_contents("../song/information/".strval($i).".json"),true));
|
||||
}
|
||||
$authStatus=null;
|
||||
foreach ($authList as $value){
|
||||
if(md5($number)==$value && $number!=null){
|
||||
$authStatus="passed";
|
||||
}
|
||||
}
|
||||
$sql=$conn->prepare("SELECT `nickname` FROM `users` WHERE `name`=?");
|
||||
$sql->bind_param("s",$name);
|
||||
$sql->execute();
|
||||
$sql->bind_result($nickname);
|
||||
while($sql->fetch()){
|
||||
$rNickname=$nickname;
|
||||
}
|
||||
if($rNickname==""){
|
||||
$type="user";
|
||||
$sql=$conn->prepare("INSERT INTO `users`(`uid`, `type`, `nickname`, `name`, `status`) VALUES (?,?,?,?,?)");
|
||||
$sql->bind_param('issss',$uid,$type,$nicknameRead,$name,$authStatus);
|
||||
$sql->execute();
|
||||
setcookie("token",$token,$ts+604800,"/");
|
||||
setcookie("uid",$uid,$ts+604800,"/");
|
||||
setcookie("name",$nicknameRead,$ts+604800,"/");
|
||||
}else{
|
||||
exit("<script>alert('对不起!您已经存在一个账号!请使用昵称为".$rNickname."的账号登录!');</script>");
|
||||
}
|
||||
}else if($rBan=="true"){
|
||||
exit("<script>alert('对不起!您已被封禁!请联系广播站技术部负责人,谢谢!');</script>");
|
||||
}else{
|
||||
$name=$authInfo->idcard_confirm->name;
|
||||
$number=$authInfo->idcard_confirm->idcard_number;
|
||||
$authList=array();
|
||||
for($i=2019;$i<=2021;$i++){
|
||||
$authList=array_merge($authList,json_decode(file_get_contents("../song/information/".strval($i).".json"),true));
|
||||
}
|
||||
$authStatus=null;
|
||||
foreach ($authList as $value){
|
||||
if(md5($number)==$value && $number!=null){
|
||||
$authStatus="passed";
|
||||
}
|
||||
}
|
||||
$sql=$conn->prepare("UPDATE `users` SET `name`=?,`nickname`=?,`status`=? WHERE `uid`=?");
|
||||
$sql->bind_param('sssi',$name,$nicknameRead,$authStatus,$uid);
|
||||
$sql->execute();
|
||||
setcookie("token",$token,$ts+604800,"/");
|
||||
setcookie("uid",$uid,$ts+604800,"/");
|
||||
setcookie("name",$nicknameRead,$ts+604800,"/");
|
||||
}
|
||||
$conn->close();
|
||||
header("location:".$_COOKIE["refer"]);
|
||||
}else{
|
||||
echo "登录失败!";
|
||||
}
|
||||
exit();
|
||||
default:
|
||||
setcookie("refer",$_GET["location"],$ts+604800,"/");
|
||||
$tid=$sdk->applyLogin();
|
||||
$location=urlencode("https://radio.fmhs.club/center/login.php?type=callBack&tid=".$tid);
|
||||
header("location:".$sdk->loginAddr($tid,$location));
|
||||
}
|
||||
}else{
|
||||
header("location:".$_GET["location"]);
|
||||
}
|
5
site/center/logout.php
Normal file
5
site/center/logout.php
Normal file
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
setcookie("token","",-1,"/");
|
||||
setcookie("uid","",-1,"/");
|
||||
setcookie("name","",-1,"/");
|
||||
header("location:https://radio.fmhs.club/song");
|
96
site/center/user.php
Normal file
96
site/center/user.php
Normal file
@ -0,0 +1,96 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>个人信息 - 凤鸣高级中学广播站</title>
|
||||
<!-- Bootstrap -->
|
||||
<link href="https://resource.ghink.net/site/public/css/bootstrap_4.4.1.css" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<hr>
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<h1>在线点歌系统</h1>
|
||||
</div>
|
||||
<div class="col-12" id="top">
|
||||
<a href="https://radio.fmhs.club/">返回首页</a> <a href="index.php">在线点歌</a> <a href="record.php">点歌记录</a> <a href="list.php">黑白名单</a>
|
||||
<div style="text-align:right;"><a href="login.php?location=https://radio.fmhs.club/song/">未登录</a></div>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-lg-8 col-12 jumbotron">
|
||||
<div class="form-group">
|
||||
<div id="body">
|
||||
<center><h3>加载中</h3></center>
|
||||
<hr>
|
||||
<center><h5>客官请稍后,结果马上来...</h5></center>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<footer class="text-center">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<p>Copyright © Ghink Network Studio 2014. All rights reserved.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
|
||||
<script src="https://resource.ghink.net/site/public/js/jquery.js"></script>
|
||||
<!-- Include all compiled plugins (below), or include individual files as needed -->
|
||||
<script src="https://resource.ghink.net/site/public/js/popper.min.js"></script>
|
||||
<script src="https://resource.ghink.net/site/public/js/bootstrap_4.4.1.js"></script>
|
||||
<script>
|
||||
var JsonData = {
|
||||
type: "user"
|
||||
};
|
||||
$.get("https://radio.fmhs.club/song/api.php", JsonData,
|
||||
function(data) {
|
||||
console.log(data);
|
||||
if(data["status"]==true){
|
||||
document.getElementById("top").innerHTML=`
|
||||
<a href="https://radio.fmhs.club/">返回首页</a> <a href="../song/index.php">在线点歌</a> <a href="../song/record.php">点歌记录</a> <a href="list.php">黑白名单</a> <a href="../song/myRecord.php">我的已点</a>
|
||||
<div style="text-align:right;"><a href="user.php">欢迎您!`+data["detail"]["nickname"]+`</a> <a href='logout.php'>退出登陆</a></div>`;
|
||||
var body="";
|
||||
body+="<h4>个人信息:</h4>";
|
||||
body+="<h5>昵称:"+data["detail"]["nickname"]+"</h5>";
|
||||
body+="<h5>UID:"+data["detail"]["uid"]+"</h5>";
|
||||
if(data["detail"]["type"]=="member"){
|
||||
var type="管理员(广播站成员)";
|
||||
}else{
|
||||
var type="用户";
|
||||
}
|
||||
body+="<h5>权限:"+type+"</h5>";
|
||||
if(data["detail"]["auth"]==true){
|
||||
var auth="<a href=\"auth.php\">"+data["detail"]["name"]+"</a>";
|
||||
}else{
|
||||
var auth="您还没有实名!<a href='auth.php'>点我去实名</a>";
|
||||
}
|
||||
body+="<h5>实名信息:"+auth+"</h5>";
|
||||
body+="<hr>";
|
||||
body+="<h4>点歌信息:</h4>";
|
||||
body+="<h5>周限制量:"+data["detail"]["song"]["limit"]+"</h5>";
|
||||
body+="<h5>已用量:"+data["detail"]["song"]["used"]+"</h5>";
|
||||
if(data["detail"]["song"]["last"]!="1970-01-01"){
|
||||
var date=data["detail"]["song"]["last"];
|
||||
}else{
|
||||
var date="您还没有点过歌!";
|
||||
}
|
||||
body+="<h5>最后点歌于:"+date+"</h5>";
|
||||
|
||||
document.getElementById("body").innerHTML=body;
|
||||
}
|
||||
})
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
450
site/song/api.php
Normal file
450
site/song/api.php
Normal file
@ -0,0 +1,450 @@
|
||||
<?php
|
||||
include("../center/entrance.php");
|
||||
include("../key.php");
|
||||
$sdk=new ghinkPassport($global_id,$global_key);
|
||||
$cookie=file_get_contents("cookie.conf");
|
||||
|
||||
header("content-type: application/json");
|
||||
|
||||
|
||||
function songBalace($limit,$used,$lastDate){
|
||||
$lastDay=date("w",strtotime($lastDate));
|
||||
$toDay=date("w");
|
||||
if($toDay==6){//星期六时
|
||||
if($lastDay<$toDay){
|
||||
$used=0;
|
||||
}
|
||||
}else{
|
||||
if($lastDay>$toDay){//星期日到星期五
|
||||
$used=0;
|
||||
}
|
||||
}
|
||||
if(($limit-$used)>0){
|
||||
return true;
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
function getSat(){
|
||||
$ts=time();
|
||||
$today=date("w",$ts);
|
||||
if($today==6){
|
||||
return date("Y-m-d",$today);
|
||||
}else{
|
||||
$result=$ts-(84600*abs($today+1));
|
||||
return date("Y-m-d",$result);
|
||||
}
|
||||
}
|
||||
function sendGet($url, $get_data) {
|
||||
$result="?";
|
||||
foreach ($get_data as $key => $value){
|
||||
if($key==end($get_data)){
|
||||
$result=$result.$key."=".urlencode($value);
|
||||
}else{
|
||||
$result=$result.$key."=".urlencode($value)."&";
|
||||
}
|
||||
}
|
||||
$aContext = array(
|
||||
'ssl' => array(
|
||||
'verify_peer' => false,
|
||||
),
|
||||
);
|
||||
$cxContext = stream_context_create($aContext);
|
||||
return file_get_contents($url.$result, false, $cxContext);
|
||||
}
|
||||
|
||||
if(@$_GET["type"]!=""){
|
||||
switch($_GET["type"]){
|
||||
case "system":
|
||||
//数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
$sql=$conn->prepare("SELECT `notice`,`switcher`,`ignoreTime`,`timeInterval` FROM `system` WHERE `systemKey`=1");
|
||||
$sql->execute();
|
||||
$sql->bind_result($notice,$switcher,$ignoreTime,$timeInterval);
|
||||
while($sql->fetch()){
|
||||
$rNotice=$notice;
|
||||
$rSwitcher=$switcher;
|
||||
$rIgnoreTime=$ignoreTime;
|
||||
$rTimeInterval=$timeInterval;
|
||||
}
|
||||
if($rSwitcher=="true"){
|
||||
$rSwitcher=true;
|
||||
}else{
|
||||
$rSwitcher=false;
|
||||
}
|
||||
if($rIgnoreTime=="true"){
|
||||
$rIgnoreTime=true;
|
||||
}else{
|
||||
$rIgnoreTime=false;
|
||||
}
|
||||
$conn->close();
|
||||
exit(json_encode(array("notice"=>$rNotice,"switcher"=>$rSwitcher,"igTime"=>$rIgnoreTime,"timeInt"=>json_decode($rTimeInterval))));
|
||||
break;
|
||||
case "user":
|
||||
if($_COOKIE["token"]==""){
|
||||
exit(json_encode(array("status"=>false)));
|
||||
}else{
|
||||
if(!$sdk->checkToken($_COOKIE["token"])){
|
||||
setcookie("token","",-1,"/");
|
||||
setcookie("uid","",-1,"/");
|
||||
setcookie("name","",-1,"/");
|
||||
header("Refresh:0");
|
||||
$conn->close();
|
||||
exit(json_encode(array("status"=>false)));
|
||||
}else{
|
||||
//刷新账号信息
|
||||
$uid=$sdk->getUid($_COOKIE["token"]);
|
||||
$nicknameRead=$sdk->getName($uid);
|
||||
$authInfo=json_decode($sdk->readAuth($uid));
|
||||
$name=$authInfo->idcard_confirm->name;
|
||||
$number=$authInfo->idcard_confirm->idcard_number;
|
||||
$authList=array();
|
||||
for($i=2019;$i<=2021;$i++){
|
||||
$authList=array_merge($authList,json_decode(file_get_contents("information/".strval($i).".json"),true));
|
||||
}
|
||||
$authStatus=null;
|
||||
foreach ($authList as $value){
|
||||
if(md5($number)==$value && $number!=null){
|
||||
$authStatus="passed";
|
||||
}
|
||||
}
|
||||
//数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
$sql=$conn->prepare("UPDATE `users` SET `name`=?,`nickname`=?,`status`=? WHERE `uid`=?");
|
||||
echo mysqli_error($conn);
|
||||
$sql->bind_param('sssi',$name,$nicknameRead,$authStatus,$uid);
|
||||
$sql->execute();
|
||||
$sql=$conn->prepare("SELECT `status`,`songNumsLimit`,`songTimeUsed`,`songLastTime`,`name`,`type`,`auth` FROM `users` WHERE `uid`=?");
|
||||
$sql->bind_param("i",$_COOKIE["uid"]);
|
||||
$sql->execute();
|
||||
$sql->bind_result($status,$songNumsLimit,$songTimeUsed,$songLastTime,$name,$type,$auth);
|
||||
while($sql->fetch()){
|
||||
$rStatus=$status;
|
||||
$rSongTimeLimit=$songNumsLimit;
|
||||
$rSongTimeUsed=$songTimeUsed;
|
||||
$rSongLastTime=$songLastTime;
|
||||
$rName=$name;
|
||||
$rType=$type;
|
||||
$rAuth=$auth;
|
||||
}
|
||||
if($rStatus=="passed"){
|
||||
$auth=true;
|
||||
}else{
|
||||
$auth=false;
|
||||
}
|
||||
if($rAuth!=null){
|
||||
$examineAuth=true;
|
||||
}else{
|
||||
$examineAuth=false;
|
||||
}
|
||||
$conn->close();
|
||||
$ghinkAuth=$sdk->checkAuth(intval($_COOKIE["uid"]));
|
||||
exit(json_encode(array("status"=>true,"detail"=>array("uid"=>$_COOKIE["uid"],"nickname"=>$_COOKIE["name"],"name"=>$name,"auth"=>$auth,"examineAuth"=>$examineAuth,"ghinkAuth"=>$ghinkAuth,"type"=>$rType,"song"=>array("limit"=>$rSongTimeLimit,"used"=>$rSongTimeUsed,"last"=>$rSongLastTime,"balace"=>songBalace($rSongTimeLimit,$rSongTimeUsed,$rSongLastTime))))));
|
||||
}
|
||||
}
|
||||
break;
|
||||
case "list":
|
||||
//数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
//获取黑名单
|
||||
$black=array();
|
||||
$sql=$conn->prepare("SELECT `id` FROM `blacklist` WHERE 1");
|
||||
$sql->execute();
|
||||
$sql->bind_result($id);
|
||||
while($sql->fetch()){
|
||||
|
||||
$aContext = array(
|
||||
'ssl' => array(
|
||||
'verify_peer' => false,
|
||||
),
|
||||
);
|
||||
$cxContext = stream_context_create($aContext);
|
||||
$result=json_decode(file_get_contents("https://apiv1.radio.fmhs.club/id/?id=".$id, false, $cxContext));
|
||||
array_push($black,$result->result[0]);
|
||||
}
|
||||
|
||||
//获取白名单
|
||||
$white=array();
|
||||
$sql=$conn->prepare("SELECT `id` FROM `whitelist` WHERE 1");
|
||||
$sql->execute();
|
||||
$sql->bind_result($id);
|
||||
while($sql->fetch()){
|
||||
|
||||
$aContext = array(
|
||||
'ssl' => array(
|
||||
'verify_peer' => false,
|
||||
),
|
||||
);
|
||||
$cxContext = stream_context_create($aContext);
|
||||
$result=json_decode(file_get_contents("https://apiv1.radio.fmhs.club/id/?id=".$id, false, $cxContext));
|
||||
array_push($white,$result->result[0]);
|
||||
}
|
||||
$list=array("white"=>$white,"black"=>$black);
|
||||
$conn->close();
|
||||
exit(json_encode($list));
|
||||
break;
|
||||
case "record":
|
||||
//数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
//获取列表
|
||||
$records=array();
|
||||
$sql=$conn->prepare("SELECT `date`, `id`, `uid` FROM `record` WHERE `status`=\"passed\" ORDER BY `time` DESC");
|
||||
$sql->execute();
|
||||
$sql->bind_result($date,$id,$uid);
|
||||
while($sql->fetch()){
|
||||
|
||||
$aContext = array(
|
||||
'ssl' => array(
|
||||
'verify_peer' => false,
|
||||
),
|
||||
);
|
||||
$cxContext = stream_context_create($aContext);
|
||||
$result=json_decode(file_get_contents("https://apiv1.radio.fmhs.club/id/?id=".$id, false, $cxContext));
|
||||
array_push($records,array("date"=>$date,"user"=>$uid,"song"=>$result->result[0]));
|
||||
}
|
||||
foreach ($records as $key => $value){
|
||||
$sql=$conn->prepare("SELECT `nickname` FROM `users` WHERE `uid`=?");
|
||||
$sql->bind_param("i",$records[$key]["user"]);
|
||||
$sql->execute();
|
||||
$sql->bind_result($nickname);
|
||||
while($sql->fetch()){
|
||||
$records[$key]["user"]=$nickname;
|
||||
}
|
||||
}
|
||||
$conn->close();
|
||||
exit(json_encode($records));
|
||||
break;
|
||||
case "myRecord":
|
||||
if($_COOKIE["token"]==""){
|
||||
exit(json_encode(array("status"=>false)));
|
||||
}else{
|
||||
if(!$sdk->checkToken($_COOKIE["token"])){
|
||||
setcookie("token","",-1,"/");
|
||||
setcookie("uid","",-1,"/");
|
||||
setcookie("name","",-1,"/");
|
||||
header("Refresh:0");
|
||||
$conn->close();
|
||||
exit(json_encode(array("status"=>false)));
|
||||
}else{
|
||||
//数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
//获取列表
|
||||
$records=array();
|
||||
$sql=$conn->prepare("SELECT `date`, `id` FROM `record` WHERE `uid`=? ORDER BY `date` DESC");
|
||||
$sql->bind_param("i",$_COOKIE["uid"]);
|
||||
$sql->execute();
|
||||
$sql->bind_result($date,$id);
|
||||
while($sql->fetch()){
|
||||
|
||||
$aContext = array(
|
||||
'ssl' => array(
|
||||
'verify_peer' => false,
|
||||
),
|
||||
);
|
||||
$cxContext = stream_context_create($aContext);
|
||||
$result=json_decode(file_get_contents("https://apiv1.radio.fmhs.club/id/?id=".$id, false, $cxContext));
|
||||
array_push($records,array("date"=>$date,"song"=>$result->result[0]));
|
||||
}
|
||||
$conn->close();
|
||||
exit(json_encode($records));
|
||||
}
|
||||
}
|
||||
break;
|
||||
case "playlist":
|
||||
//数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
//获取列表
|
||||
$records=array();
|
||||
$sql=$conn->prepare("SELECT `id`, `uid` FROM `record` WHERE `status`=\"passed\" AND `date`=? ORDER BY `time`");
|
||||
$sql->bind_param("s",date("Y-m-d",time()));
|
||||
$sql->execute();
|
||||
$sql->bind_result($id,$uid);
|
||||
while($sql->fetch()){
|
||||
|
||||
$aContext = array(
|
||||
'ssl' => array(
|
||||
'verify_peer' => false,
|
||||
),
|
||||
);
|
||||
$cxContext = stream_context_create($aContext);
|
||||
$result=json_decode(file_get_contents("https://apiv1.radio.fmhs.club/id/?id=".$id, false, $cxContext));
|
||||
array_push($records,array("user"=>$uid,"song"=>$result->result[0]));
|
||||
}
|
||||
foreach ($records as $key => $value){
|
||||
$sql=$conn->prepare("SELECT `nickname` FROM `users` WHERE `uid`=?");
|
||||
$sql->bind_param("i",$records[$key]["user"]);
|
||||
$sql->execute();
|
||||
$sql->bind_result($nickname);
|
||||
while($sql->fetch()){
|
||||
$records[$key]["user"]=$nickname;
|
||||
}
|
||||
}
|
||||
$conn->close();
|
||||
echo json_encode($records);
|
||||
break;
|
||||
case "adminAuth":
|
||||
if($_COOKIE["token"]==""){
|
||||
exit(json_encode(array("status"=>false)));
|
||||
}else{
|
||||
if(!$sdk->checkToken($_COOKIE["token"])){
|
||||
setcookie("token","",-1,"/");
|
||||
setcookie("uid","",-1,"/");
|
||||
setcookie("name","",-1,"/");
|
||||
header("Refresh:0");
|
||||
$conn->close();
|
||||
exit(json_encode(array("status"=>false)));
|
||||
}else{
|
||||
//数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
$sql=$conn->prepare("SELECT `type` FROM `users` WHERE `uid`=?");
|
||||
$sql->bind_param("i",$_COOKIE["uid"]);
|
||||
$sql->execute();
|
||||
$sql->bind_result($type);
|
||||
while($sql->fetch()){
|
||||
$rType=$type;
|
||||
}
|
||||
if($rType=="member"){
|
||||
$authList=array();
|
||||
$sql=$conn->prepare("SELECT `uid`, `nickname`, `name`, `auth` FROM `users` WHERE `status` IS NULL AND `auth` IS NOT NULL");
|
||||
$sql->execute();
|
||||
$sql->bind_result($uid,$nickname,$name,$auth);
|
||||
while($sql->fetch()){
|
||||
array_push($authList,array($uid,$nickname,$name,json_decode($auth)));
|
||||
}
|
||||
$conn->close();
|
||||
exit(json_encode(array("status"=>true,"detail"=>$authList)));
|
||||
}else{
|
||||
$conn->close();
|
||||
exit(json_encode(array("status"=>false)));
|
||||
}
|
||||
}
|
||||
}
|
||||
break;
|
||||
case "adminSong":
|
||||
if($_COOKIE["token"]==""){
|
||||
exit(json_encode(array("status"=>false)));
|
||||
}else{
|
||||
if(!$sdk->checkToken($_COOKIE["token"])){
|
||||
setcookie("token","",-1,"/");
|
||||
setcookie("uid","",-1,"/");
|
||||
setcookie("name","",-1,"/");
|
||||
header("Refresh:0");
|
||||
$conn->close();
|
||||
exit(json_encode(array("status"=>false)));
|
||||
}else{
|
||||
//数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
$sql=$conn->prepare("SELECT `recId`, `date`, `pid`, `id`, `uid`, `time` FROM `record` WHERE `status` IS NULL ORDER BY time");
|
||||
$sql->execute();
|
||||
$sql->bind_result($recId,$date,$pid,$id,$uid,$time);
|
||||
$songFall=array();
|
||||
$outOfDateFall=array();
|
||||
while($sql->fetch()){
|
||||
if(($time/1000 >= strtotime(getSat())) || ((((strtotime($date) >= time())) && date("w",time())!=0) || (((time() - strtotime($date)) >= 86400)) && date("w",time())==0)){
|
||||
switch($pid){
|
||||
case 1:
|
||||
$getData=array("keyword"=>$id);
|
||||
$reqResult=json_decode(sendGet("https://apiv1.radio.fmhs.club/search/",$getData));
|
||||
foreach ($reqResult->result as $value){
|
||||
if($value->id==$id){
|
||||
$result=$value;
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
array_push($songFall,array("recId"=>$recId,"date"=>$date,"pid"=>$pid,"id"=>$id,"uid"=>$uid,"time"=>$time,"detail"=>$result));
|
||||
}else{
|
||||
array_push($outOfDateFall,$recId);
|
||||
}
|
||||
}
|
||||
for($i=0;$i<count($outOfDateFall);$i++){
|
||||
$sql=$conn->prepare("UPDATE `record` SET `status`='outOfDate' WHERE `recId`=?");
|
||||
$sql->bind_param("i",intval($outOfDateFall[$i]));
|
||||
$sql->execute();
|
||||
}
|
||||
$conn->close();
|
||||
exit(json_encode(array("status"=>true,"detail"=>$songFall)));
|
||||
}
|
||||
}
|
||||
break;
|
||||
case "adminSongOperate":
|
||||
if($_COOKIE["token"]==""){
|
||||
exit(json_encode(array("status"=>false)));
|
||||
}else{
|
||||
if(!$sdk->checkToken($_COOKIE["token"])){
|
||||
setcookie("token","",-1,"/");
|
||||
setcookie("uid","",-1,"/");
|
||||
setcookie("name","",-1,"/");
|
||||
header("Refresh:0");
|
||||
$conn->close();
|
||||
exit(json_encode(array("status"=>false)));
|
||||
}else{
|
||||
if(@$_GET["operate"]!="" && @$_GET["recId"]!=""){
|
||||
//数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
$sql=$conn->prepare("SELECT `id`,`status` FROM `record` WHERE `recId`=?");
|
||||
$recId=intval($_GET["recId"]);
|
||||
$sql->bind_param("i",$recId);
|
||||
$sql->execute();
|
||||
$sql->bind_result($id,$status);
|
||||
$flag=false;
|
||||
while($sql->fetch()){
|
||||
if($status==null){
|
||||
$flag=true;
|
||||
}
|
||||
$rId=$id;
|
||||
}
|
||||
if($flag && ($_GET["operate"]=="pass" || $_GET["operate"]=="reject" || $_GET["operate"]=="ignore")){
|
||||
$operate=array("pass"=>"passed","reject"=>"rejected","ignore"=>"ignored");
|
||||
$sql=$conn->prepare("UPDATE `record` SET `status`=? WHERE `recId`=?");
|
||||
$recId=intval($_GET["recId"]);
|
||||
$sql->bind_param("si",$operate[$_GET["operate"]],$recId);
|
||||
$sql->execute();
|
||||
if($_GET["operate"]=="pass"){
|
||||
$sql=$conn->prepare("SELECT `id` FROM `whitelist` WHERE `id`=?");
|
||||
$sql->bind_param("i",$rId);
|
||||
$sql->execute();
|
||||
$sql->bind_result($id);
|
||||
$exists=false;
|
||||
while($sql->fetch()){
|
||||
if($id!=null){
|
||||
$exists=true;
|
||||
}
|
||||
}
|
||||
if(!$exists){
|
||||
$sql=$conn->prepare("INSERT INTO `whitelist`(`id`) VALUES (?)");
|
||||
$sql->bind_param("i",$rId);
|
||||
$sql->execute();
|
||||
}
|
||||
}else if($_GET["operate"]=="reject"){
|
||||
$sql=$conn->prepare("SELECT `id` FROM `blacklist` WHERE `id`=?");
|
||||
$sql->bind_param("i",$rId);
|
||||
$sql->execute();
|
||||
$sql->bind_result($id);
|
||||
$exists=false;
|
||||
while($sql->fetch()){
|
||||
if($id!=null){
|
||||
$exists=true;
|
||||
}
|
||||
}
|
||||
if(!$exists){
|
||||
$sql=$conn->prepare("INSERT INTO `blacklist`(`id`) VALUES (?)");
|
||||
$sql->bind_param("i",$rId);
|
||||
$sql->execute();
|
||||
}
|
||||
}
|
||||
echo json_encode(array("status"=>true));
|
||||
}else{
|
||||
echo json_encode(array("status"=>false));
|
||||
}
|
||||
$conn->close();
|
||||
}else{
|
||||
echo json_encode(array("status"=>false));
|
||||
}
|
||||
}
|
||||
}
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
91
site/song/confirm.php
Normal file
91
site/song/confirm.php
Normal file
@ -0,0 +1,91 @@
|
||||
<?php
|
||||
include("../center/entrance.php");
|
||||
include("../key.php");
|
||||
$sdk=new ghinkPassport($global_id,$global_key);
|
||||
$cookie=file_get_contents("cookie.conf");
|
||||
|
||||
function songBalace($limit,$used,$last,$refresh){
|
||||
if((time()-strtotime($last))>=604800){
|
||||
return true;
|
||||
}else{
|
||||
if($refresh==6){
|
||||
$refresh=date("Y-m-d",strtotime(getDay($refresh))-604800);
|
||||
if(strtotime($refresh)>=strtotime($last) && $limit!=0){
|
||||
return "true";
|
||||
}else{
|
||||
if(($limit-$used)>0){
|
||||
return "true";
|
||||
}else{
|
||||
return "false";
|
||||
}
|
||||
}
|
||||
}else{
|
||||
$refresh=getDay($refresh);
|
||||
if(strtotime($refresh)<=strtotime($last) && $limit!=0){
|
||||
return "true";
|
||||
}else{
|
||||
if(($limit-$used)>0){
|
||||
return "true";
|
||||
}else{
|
||||
return "false";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
function getDay($week){
|
||||
$ts=time();
|
||||
$today=date("w",$ts);
|
||||
if($today==0){ //礼拜天忽略当天禁止点播当天(审核日与节目日重合)
|
||||
$result=$ts+(84600*abs($today-$week));
|
||||
return date("Y-m-d",$result);
|
||||
}else if($today==6){ //礼拜六计算下个礼拜(当天放假)
|
||||
$result=$ts+(84600*($week+1));
|
||||
return date("Y-m-d",$result);
|
||||
}else if($today>=$week){
|
||||
return false;
|
||||
}else{
|
||||
$result=$ts+(84600*abs($today-$week));
|
||||
return date("Y-m-d",$result);
|
||||
}
|
||||
}
|
||||
//数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
$sql=$conn->prepare("SELECT `switcher`,`ignoreTime`,`timeInterval`,`openWeek`,`refreshDay` FROM `system` WHERE `systemKey`=1");
|
||||
$sql->execute();
|
||||
$sql->bind_result($switcher,$ignoreTime,$timeInterval,$openWeek,$refreshDay);
|
||||
while($sql->fetch()){
|
||||
$rSwitcher=$switcher;
|
||||
$rIgnoreTime=$ignoreTime;
|
||||
$rTimeInterval=$timeInterval;
|
||||
$rOpenWeek=$openWeek;
|
||||
$rRefreshDay=$refreshDay;
|
||||
}
|
||||
$sql=$conn->prepare("SELECT `status`,`songNumsLimit`,`songTimeUsed`,`songLastTime` FROM `users` WHERE `uid`=?");
|
||||
$sql->bind_param("i",$_COOKIE["uid"]);
|
||||
$sql->execute();
|
||||
$sql->bind_result($status,$songNumsLimit,$songTimeUsed,$songLastTime);
|
||||
while($sql->fetch()){
|
||||
$rStatus=$status;
|
||||
$rSongTimeLimit=$songNumsLimit;
|
||||
$rSongTimeUsed=$songTimeUsed;
|
||||
$rSongLastTime=$songLastTime;
|
||||
}
|
||||
$balace=songBalace($rSongTimeLimit,$rSongTimeUsed,$rSongLastTime,$rRefreshDay);
|
||||
if($rStatus=="passed"){
|
||||
$auth="true";
|
||||
}else{
|
||||
$auth="false";
|
||||
}
|
||||
$conn->close();
|
||||
$option="";
|
||||
$openWeek=json_decode($rOpenWeek,true);
|
||||
$arr=array("天","一","二","三","四","五","六");
|
||||
foreach ($openWeek as $value){
|
||||
$week=getDay($value);
|
||||
if($week!=false){
|
||||
$option=$option.'<option value=\''.$week.'\'>'.$week." 星期".$arr[intval(date("w",strtotime($week)))].'</option>';
|
||||
}
|
||||
}
|
||||
echo str_replace("{{option}}",$option,str_replace("{{balace}}",$balace,str_replace("{{timeQuatum}}",$rTimeInterval,str_replace("{{igTime}}",$rIgnoreTime,str_replace("{{switcher}}",$rSwitcher,str_replace("{{auth}}",$auth,str_replace("{{uid}}",$_GET["uid"],str_replace("{{name}}",$_GET["name"],str_replace("{{cookie}}",$cookie,str_replace("{{id}}",$_GET["id"],str_replace("{{pid}}",$_GET["pid"],file_get_contents("template/confirm.html"))))))))))));
|
||||
?>
|
1
site/song/cookie.conf
Normal file
1
site/song/cookie.conf
Normal file
@ -0,0 +1 @@
|
||||
MUSIC_A_T=1522502710766; Max-Age=2147483647; Expires=Wed, 5 Apr 2090 07:23:08 GMT; Path=/eapi/feedback;;MUSIC_R_T=1522502740217; Max-Age=2147483647; Expires=Wed, 5 Apr 2090 07:23:08 GMT; Path=/eapi/clientlog;;MUSIC_R_T=1522502740217; Max-Age=2147483647; Expires=Wed, 5 Apr 2090 07:23:08 GMT; Path=/eapi/feedback;;MUSIC_R_T=1522502740217; Max-Age=2147483647; Expires=Wed, 5 Apr 2090 07:23:08 GMT; Path=/wapi/feedback;;MUSIC_A_T=1522502710766; Max-Age=2147483647; Expires=Wed, 5 Apr 2090 07:23:08 GMT; Path=/wapi/clientlog;;MUSIC_R_T=1522502740217; Max-Age=2147483647; Expires=Wed, 5 Apr 2090 07:23:08 GMT; Path=/neapi/clientlog;;MUSIC_R_T=1522502740217; Max-Age=2147483647; Expires=Wed, 5 Apr 2090 07:23:08 GMT; Path=/weapi/clientlog;;MUSIC_R_T=1522502740217; Max-Age=2147483647; Expires=Wed, 5 Apr 2090 07:23:08 GMT; Path=/api/feedback;;NMTID=00Ou54cQZaKWU2sKEqMqVmcJO8qbbYAAAF_mzbnzA; Max-Age=315360000; Expires=Mon, 15 Mar 2032 04:09:01 GMT; Path=/;;MUSIC_A_T=1522502710766; Max-Age=2147483647; Expires=Wed, 5 Apr 2090 07:23:08 GMT; Path=/weapi/feedback;;MUSIC_A_T=1522502710766; Max-Age=2147483647; Expires=Wed, 5 Apr 2090 07:23:08 GMT; Path=/eapi/clientlog;;MUSIC_R_T=1522502740217; Max-Age=2147483647; Expires=Wed, 5 Apr 2090 07:23:08 GMT; Path=/openapi/clientlog;;MUSIC_A_T=1522502710766; Max-Age=2147483647; Expires=Wed, 5 Apr 2090 07:23:08 GMT; Path=/openapi/clientlog;;MUSIC_R_T=1522502740217; Max-Age=2147483647; Expires=Wed, 5 Apr 2090 07:23:08 GMT; Path=/api/clientlog;;MUSIC_A_T=1522502710766; Max-Age=2147483647; Expires=Wed, 5 Apr 2090 07:23:08 GMT; Path=/neapi/feedback;;MUSIC_R_T=1522502740217; Max-Age=2147483647; Expires=Wed, 5 Apr 2090 07:23:08 GMT; Path=/weapi/feedback;;MUSIC_A_T=1522502710766; Max-Age=2147483647; Expires=Wed, 5 Apr 2090 07:23:08 GMT; Path=/weapi/clientlog;;__remember_me=true; Max-Age=1296000; Expires=Sat, 2 Apr 2022 04:09:01 GMT; Path=/;;__csrf=1435f3d8adba9fb751f244838b797cc6; Max-Age=1296010; Expires=Sat, 2 Apr 2022 04:09:11 GMT; Path=/;;MUSIC_A_T=1522502710766; Max-Age=2147483647; Expires=Wed, 5 Apr 2090 07:23:08 GMT; Path=/api/clientlog;;MUSIC_R_T=1522502740217; Max-Age=2147483647; Expires=Wed, 5 Apr 2090 07:23:08 GMT; Path=/wapi/clientlog;;MUSIC_A_T=1522502710766; Max-Age=2147483647; Expires=Wed, 5 Apr 2090 07:23:08 GMT; Path=/wapi/feedback;;MUSIC_U=fda39638a3fa82936d0cb8aac944a529722acefa4e32be9a52891ef91830e3872db2b90205957188d78b6050a17a35e705925a4e6992f61d07c385928f88e8de; Max-Age=1296000; Expires=Sat, 2 Apr 2022 04:09:01 GMT; Path=/;;MUSIC_SNS=; Max-Age=0; Expires=Fri, 18 Mar 2022 04:09:01 GMT; Path=/;MUSIC_A_T=1522502710766; Max-Age=2147483647; Expires=Wed, 5 Apr 2090 07:23:08 GMT; Path=/api/feedback;;MUSIC_R_T=1522502740217; Max-Age=2147483647; Expires=Wed, 5 Apr 2090 07:23:08 GMT; Path=/neapi/feedback;;MUSIC_A_T=1522502710766; Max-Age=2147483647; Expires=Wed, 5 Apr 2090 07:23:08 GMT; Path=/neapi/clientlog;
|
13
site/song/getCookie.py
Normal file
13
site/song/getCookie.py
Normal file
@ -0,0 +1,13 @@
|
||||
import requests,json
|
||||
|
||||
|
||||
def main():
|
||||
cookies=["879abe98b06a4d769429a79794065af3","c3c1d4d3b1467791405729457459c4cd"]
|
||||
session=requests.session()
|
||||
info={"phone":"19537806644","md5_password":cookies[1]}
|
||||
cookie=json.loads(session.post("https://music-netease.vercel.app/login/cellphone",data=info).text)["cookie"]
|
||||
with open("cookie.conf","w+") as fp:
|
||||
fp.write(cookie)
|
||||
|
||||
if __name__=="__main__":
|
||||
main()
|
222
site/song/index.php
Normal file
222
site/song/index.php
Normal file
@ -0,0 +1,222 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>在线点歌-凤鸣高级中学广播站</title>
|
||||
<link rel="shortcut icon" href="https://cdn.fmhs.club/image/radio/favicon.png">
|
||||
<link href="https://cdn.ghink.net/assembly/bootstrap/4.6.1/css/bootstrap.min.css" rel="stylesheet">
|
||||
|
||||
<body>
|
||||
<div class="container">
|
||||
<hr>
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<h1>在线点歌系统</h1>
|
||||
</div>
|
||||
<div class="col-12" id="top">
|
||||
<a href="https://radio.fmhs.club/">返回首页</a> <a href="index.php">在线点歌</a> <a href="record.php">点歌记录</a> <a href="list.php">黑白名单</a>
|
||||
<div style="text-align:right;"><a href="../center/login.php?location=https://radio.fmhs.club/song/">未登录</a></div>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<h5>
|
||||
<div id="notice"></div>
|
||||
</h5>
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-lg-8 col-12 jumbotron">
|
||||
<div id="body">
|
||||
<center><h3>加载中</h3></center>
|
||||
<hr>
|
||||
<center><h5>客官请稍后,结果马上来...</h5></center>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<footer class="text-center">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<p>Copyright © Ghink Network Studio 2014. All rights reserved.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
<script src="https://cdn.ghink.net/js/jquery/jquery-3.6.0.min.js"></script>
|
||||
<script src="https://resource.ghink.net/site/public/js/popper.min.js"></script>
|
||||
<script src="https://cdn.ghink.net/assembly/bootstrap/4.6.1/js/bootstrap.min.js"></script>
|
||||
<script>
|
||||
var pageGlobal = 1;
|
||||
var JsonData = {
|
||||
type: "user"
|
||||
};
|
||||
$.get("https://radio.fmhs.club/song/api.php", JsonData,
|
||||
function(data) {
|
||||
if(data["status"]==true){
|
||||
document.getElementById("top").innerHTML=`
|
||||
<a href="https://radio.fmhs.club/">返回首页</a> <a href="index.php">在线点歌</a> <a href="record.php">点歌记录</a> <a href="list.php">黑白名单</a> <a href="myRecord.php">我的已点</a>
|
||||
<div style="text-align:right;"><a href="../center/user.php">欢迎您!`+data["detail"]["nickname"]+`</a> <a href='../center/logout.php'>退出登陆</a></div>`;
|
||||
window.uid=String(data["detail"]["uid"]);
|
||||
window.auth=data["detail"]["auth"];
|
||||
window.balace=data["detail"]["song"]["balace"];
|
||||
}else{
|
||||
window.uid="";
|
||||
window.auth=false;
|
||||
window.balace=false;
|
||||
}
|
||||
var JsonData = {
|
||||
type: "system"
|
||||
};
|
||||
$.get("https://radio.fmhs.club/song/api.php", JsonData,
|
||||
function(data) {
|
||||
window.switcher=data["switcher"];
|
||||
window.timeQuatum=data["timeInt"];
|
||||
window.igTime=data["igTime"];
|
||||
document.getElementById("notice").innerHTML="<center>"+data["notice"]+"</center>";
|
||||
document.getElementById("body").innerHTML=
|
||||
`
|
||||
<form onsubmit="return false">
|
||||
<div class="form-group" id="songSelect"></div>
|
||||
<div class="form-group" id="search">
|
||||
<label for="name">请输入要查找的歌曲名</label>
|
||||
<input type="text" class="form-control" id="info" name="info" placeholder="歌曲名"></div>
|
||||
<div class="text-center">
|
||||
<button class="btn btn-primary" id="searchSumbit" onClick="search()">搜索</button></div>
|
||||
</form>
|
||||
`;
|
||||
})
|
||||
|
||||
})
|
||||
function search() {
|
||||
pageGlobal=1;
|
||||
searchSong();
|
||||
}
|
||||
function searchSong() {
|
||||
var info = $('input[name="info"]').val();
|
||||
document.getElementById("searchSumbit").innerHTML="加载中";
|
||||
|
||||
var JsonData = {
|
||||
keyword: info,
|
||||
page: pageGlobal
|
||||
};
|
||||
$.get("https://radio.fmhs.club/song/search.php", JsonData,
|
||||
function(data) {
|
||||
console.log(data);
|
||||
var result="";
|
||||
for(let i=0;i<data.length;i++){
|
||||
if(data[i]["platform"]=="ghink"){
|
||||
for(let i2=0;i2<data[i]["result"].length;i2++){
|
||||
console.log(data[i]["result"][i2]);
|
||||
var artist="";
|
||||
for(let i3=0;i3<data[i]["result"][i2]["ar"].length;i3++){
|
||||
if(i3==data[i]["result"][i2]["ar"].length-1){
|
||||
artist+=data[i]["result"][i2]["ar"][i3]["name"];
|
||||
}else{
|
||||
artist+=data[i]["result"][i2]["ar"][i3]["name"]+" , ";
|
||||
}
|
||||
}
|
||||
result+=`<li>(极科音乐) `+data[i]["result"][i2]["name"]+` - `+artist+` <br><audio src="`+data[i]["result"][i2]["url"]+`" controls loop></audio><br><span onClick="confirm('`+data[i]["result"][i2]["id"]+`',1,'`+data[i]["result"][i2]["name"]+` - `+artist+`')" style="color:dodgerblue;">就它了</span></li>`;
|
||||
}
|
||||
}else if(data[i]["platform"]=="netease"){
|
||||
for(let i2=0;i2<data[i]["result"].length;i2++){
|
||||
console.log(data[i]["result"][i2]);
|
||||
var artist="";
|
||||
for(let i3=0;i3<data[i]["result"][i2]["ar"].length;i3++){
|
||||
if(i3==data[i]["result"][i2]["ar"].length-1){
|
||||
artist+=data[i]["result"][i2]["ar"][i3]["name"];
|
||||
}else{
|
||||
artist+=data[i]["result"][i2]["ar"][i3]["name"]+" , ";
|
||||
}
|
||||
}
|
||||
result+=`<li>(网易云音乐) `+data[i]["result"][i2]["name"]+` - `+artist+` <br><audio src="`+data[i]["result"][i2]["url"]+`" controls loop></audio><br><span onClick="confirm('`+data[i]["result"][i2]["id"]+`',2,'`+data[i]["result"][i2]["name"]+` - `+artist+`')" style="color:dodgerblue;">就它了</span></li>`;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (result==""){
|
||||
result+="<li>找不到任何结果!</li>";
|
||||
}else{
|
||||
result+=`<span onClick="pageControl('down')" style="color:dodgerblue;">上一页</span> <span onClick="pageControl('up')" style="color:dodgerblue;">下一页</span> `;
|
||||
result+=`当前为第`+pageGlobal+`页`;
|
||||
}
|
||||
document.getElementById("songSelect").innerHTML=result;
|
||||
document.getElementById("searchSumbit").innerHTML="再搜一首";
|
||||
});
|
||||
}
|
||||
function pageControl(operate) {
|
||||
if(operate=="up"){
|
||||
pageGlobal+=1;
|
||||
searchSong();
|
||||
}else{
|
||||
if(pageGlobal==1){
|
||||
print("已经是第一页啦!");
|
||||
}else{
|
||||
pageGlobal-=1;
|
||||
searchSong();
|
||||
}
|
||||
}
|
||||
}
|
||||
function print(data) {
|
||||
alert(data);
|
||||
console.log(data);
|
||||
}
|
||||
function isWechat(){
|
||||
var ua = window.navigator.userAgent.toLowerCase();
|
||||
if(ua.match(/MicroMessenger/i) == 'micromessenger'){
|
||||
return true;
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
function isDuring(beginDateStr, endDateStr) {
|
||||
var curDate = new Date(),
|
||||
beginDate = new Date(beginDateStr),
|
||||
endDate = new Date(endDateStr);
|
||||
if (curDate >= beginDate && curDate <= endDate) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
function confirm(id, platform, name) {
|
||||
if(uid!=""){
|
||||
if(auth){
|
||||
var timeLimit = timeQuatum;
|
||||
var day = new Date().getDay();
|
||||
var date = new Date().getFullYear()+"-"+(new Date().getMonth()+1)+"-"+new Date().getDate();
|
||||
var timestamp = Date.parse(new Date())/1000;
|
||||
var timeSwitcher = false;
|
||||
for (i in timeLimit){
|
||||
if((day==timeLimit[i][0] && isDuring(date+" "+timeLimit[i][1],date+" "+timeLimit[i][2])) || igTime){
|
||||
timeSwitcher = true;
|
||||
}
|
||||
}
|
||||
if(timeSwitcher){
|
||||
if(balace){
|
||||
if(switcher){
|
||||
window.open('confirm.php?uid='+uid+'&name='+name+'&id='+id+'&pid='+platform,"_blank","alwaysRaised=yes");
|
||||
}else{
|
||||
print("点歌通道已经关闭!");
|
||||
}
|
||||
}else{
|
||||
print("您的本周点歌余额不足!");
|
||||
}
|
||||
}else{
|
||||
print("当前非点歌时间段!");
|
||||
}
|
||||
}else{
|
||||
print("请先实名!");
|
||||
window.location.href='https://radio.fmhs.club/center/auth.php';
|
||||
}
|
||||
}else{
|
||||
print("请先登录!");
|
||||
window.location.href='../center/login.php?location=https://radio.fmhs.club/song/';
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
1
site/song/information/2019.json
Normal file
1
site/song/information/2019.json
Normal file
File diff suppressed because one or more lines are too long
1
site/song/information/2020.json
Normal file
1
site/song/information/2020.json
Normal file
File diff suppressed because one or more lines are too long
1
site/song/information/2021.json
Normal file
1
site/song/information/2021.json
Normal file
File diff suppressed because one or more lines are too long
135
site/song/list.php
Normal file
135
site/song/list.php
Normal file
@ -0,0 +1,135 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>黑/白名单 - 凤鸣高级中学广播站</title>
|
||||
<link rel="shortcut icon" href="https://cdn.fmhs.club/image/radio/favicon.png">
|
||||
<link href="https://cdn.ghink.net/assembly/bootstrap/4.6.1/css/bootstrap.min.css" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<hr>
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<h1>在线点歌系统</h1>
|
||||
</div>
|
||||
<div class="col-12" id="top">
|
||||
<a href="https://radio.fmhs.club/">返回首页</a> <a href="index.php">在线点歌</a> <a href="record.php">点歌记录</a> <a href="list.php">黑白名单</a>
|
||||
<div style="text-align:right;"><a href="../center/login.php?location=https://radio.fmhs.club/song/">未登录</a></div>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-lg-8 col-12 jumbotron">
|
||||
<div class="form-group">
|
||||
<div id="black">
|
||||
<center><h3>加载中</h3></center>
|
||||
</div>
|
||||
<hr>
|
||||
<div id="white">
|
||||
<center><h5>客官请稍后,结果马上来...</h5></center>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<footer class="text-center">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<p>Copyright © Ghink Network Studio 2014. All rights reserved.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
<script src="https://cdn.ghink.net/js/jquery/jquery-3.6.0.min.js"></script>
|
||||
<script src="https://resource.ghink.net/site/public/js/popper.min.js"></script>
|
||||
<script src="https://cdn.ghink.net/assembly/bootstrap/4.6.1/js/bootstrap.min.js"></script>
|
||||
<script>
|
||||
var JsonData = {
|
||||
type: "user"
|
||||
};
|
||||
$.get("https://radio.fmhs.club/song/api.php", JsonData,
|
||||
function(data) {
|
||||
console.log(data);
|
||||
if(data["status"]==true){
|
||||
document.getElementById("top").innerHTML=`
|
||||
<a href="https://radio.fmhs.club/">返回首页</a> <a href="index.php">在线点歌</a> <a href="record.php">点歌记录</a> <a href="list.php">黑白名单</a> <a href="myRecord.php">我的已点</a>
|
||||
<div style="text-align:right;"><a href="../center/user.php">欢迎您!`+data["detail"]["nickname"]+`</a> <a href='../center/logout.php'>退出登陆</a></div>`;
|
||||
}
|
||||
})
|
||||
var JsonData = {
|
||||
type: "list"
|
||||
};
|
||||
$.get("https://radio.fmhs.club/song/api.php", JsonData,
|
||||
function(data) {
|
||||
console.log(data);
|
||||
//黑名单
|
||||
var black=`<h5>黑名单</h5><table width="100%"><tr><th>曲目</th><th>艺术家</th></tr>`;
|
||||
if(data["black"].length==0){
|
||||
black+=`<tr><th>暂无更多数据</th></tr></table>`;
|
||||
}else{
|
||||
for(let i=0;i<data["black"].length;i++){
|
||||
if(i==data["black"].length-1){
|
||||
black+="<tr><th>"+data["black"][i]["name"]+"</th>";
|
||||
black+="<th>";
|
||||
for(let i2=0;i2<data["black"][i]["ar"].length;i2++){
|
||||
if(i2==i2<data["black"][i]["ar"].length-1){
|
||||
black+=data["black"][i]["ar"][i2]["name"]+"</th></tr></table>";
|
||||
}else{
|
||||
black+=data["black"][i]["ar"][i2]["name"]+" , ";
|
||||
}
|
||||
}
|
||||
}else{
|
||||
black+="<tr><th>"+data["black"][i]["name"]+"</th>";
|
||||
black+="<th>";
|
||||
for(let i2=0;i2<data["black"][i]["ar"].length;i2++){
|
||||
if(i2==i2<data["black"][i]["ar"].length-1){
|
||||
black+=data["black"][i]["ar"][i2]["name"]+"</th><tr>";
|
||||
}else{
|
||||
black+=data["black"][i]["ar"][i2]["name"]+" , ";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
document.getElementById("black").innerHTML=black;
|
||||
//白名单
|
||||
var white=`<h5>白名单</h5><table width="100%"><tr><th>曲目</th><th>艺术家</th></tr>`;
|
||||
if(data["white"].length==0){
|
||||
black+=`<tr><th>暂无更多数据</th></tr></table>`;
|
||||
}else{
|
||||
for(let i=0;i<data["white"].length;i++){
|
||||
if(i==data["white"].length-1){
|
||||
white+="<tr><th>"+data["white"][i]["name"]+"</th>";
|
||||
white+="<th>";
|
||||
for(let i2=0;i2<data["white"][i]["ar"].length;i2++){
|
||||
if(i2==i2<data["white"][i]["ar"].length-1){
|
||||
white+=data["white"][i]["ar"][i2]["name"]+"</th></tr></table>";
|
||||
}else{
|
||||
white+=data["white"][i]["ar"][i2]["name"]+" , ";
|
||||
}
|
||||
}
|
||||
}else{
|
||||
white+="<tr><th>"+data["white"][i]["name"]+"</th>";
|
||||
white+="<th>";
|
||||
for(let i2=0;i2<data["white"][i]["ar"].length;i2++){
|
||||
if(i2==i2<data["white"][i]["ar"].length-1){
|
||||
white+=data["white"][i]["ar"][i2]["name"]+"</th><tr>";
|
||||
}else{
|
||||
white+=data["white"][i]["ar"][i2]["name"]+" , ";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
document.getElementById("white").innerHTML=white;
|
||||
})
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
107
site/song/myRecord.php
Normal file
107
site/song/myRecord.php
Normal file
@ -0,0 +1,107 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>我的已点 - 凤鸣高级中学广播站</title>
|
||||
<link rel="shortcut icon" href="https://cdn.fmhs.club/image/radio/favicon.png">
|
||||
<link href="https://cdn.ghink.net/assembly/bootstrap/4.6.1/css/bootstrap.min.css" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<hr>
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<h1>在线点歌系统</h1>
|
||||
</div>
|
||||
<div class="col-12" id="top">
|
||||
<a href="https://radio.fmhs.club/">返回首页</a> <a href="index.php">在线点歌</a> <a href="record.php">点歌记录</a> <a href="list.php">黑白名单</a>
|
||||
<div style="text-align:right;"><a href="../center/login.php?location=https://radio.fmhs.club/song/">未登录</a></div>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-lg-8 col-12 jumbotron">
|
||||
<div class="form-group">
|
||||
<div id="record">
|
||||
<center><h3>加载中</h3></center>
|
||||
<hr>
|
||||
<center><h5>客官请稍后,结果马上来...</h5></center>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<footer class="text-center">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<p>Copyright © Ghink Network Studio 2014. All rights reserved.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
<script src="https://cdn.ghink.net/js/jquery/jquery-3.6.0.min.js"></script>
|
||||
<script src="https://resource.ghink.net/site/public/js/popper.min.js"></script>
|
||||
<script src="https://cdn.ghink.net/assembly/bootstrap/4.6.1/js/bootstrap.min.js"></script>
|
||||
<script>
|
||||
var JsonData = {
|
||||
type: "user"
|
||||
};
|
||||
$.get("https://radio.fmhs.club/song/api.php", JsonData,
|
||||
function(data) {
|
||||
console.log(data);
|
||||
if(data["status"]==true){
|
||||
document.getElementById("top").innerHTML=`
|
||||
<a href="https://radio.fmhs.club/">返回首页</a> <a href="index.php">在线点歌</a> <a href="record.php">点歌记录</a> <a href="list.php">黑白名单</a> <a href="myRecord.php">我的已点</a>
|
||||
<div style="text-align:right;"><a href="../center/user.php">欢迎您!`+data["detail"]["nickname"]+`</a> <a href='../center/logout.php'>退出登陆</a></div>`;
|
||||
}
|
||||
})
|
||||
var JsonData = {
|
||||
type: "myRecord"
|
||||
};
|
||||
$.get("https://radio.fmhs.club/song/api.php", JsonData,
|
||||
function(data) {
|
||||
console.log(data);
|
||||
var record=`<table width="100%"><tr><th>日期</th><th>曲目</th></tr>`;
|
||||
if(data.length==0){
|
||||
record+="<tr><th>没有任何结果!</th></tr></table>";
|
||||
}else if(data["status"]==false){
|
||||
alert("请先登录!");
|
||||
window.location.href='../center/login.php?location=https://radio.fmhs.club/song/';
|
||||
}else{
|
||||
for(let i=0;i<data.length;i++){
|
||||
if(i==data.length-1){
|
||||
record+="<tr><th>"+data[i]["date"]+"</th>";
|
||||
record+="<th>"+data[i]["song"]["name"]+" - ";
|
||||
for(let i2=0;i2<data[i]["song"]["ar"].length;i2++){
|
||||
if(i2==data[i]["song"]["ar"].length-1){
|
||||
record+=data[i]["song"]["ar"][i2]["name"]+"</th>";
|
||||
}else{
|
||||
record+=data[i]["song"]["ar"][i2]["name"]+" , ";
|
||||
}
|
||||
}
|
||||
record+="</tr></table>";
|
||||
}else{
|
||||
record+="<tr><th>"+data[i]["date"]+"</th>";
|
||||
record+="<th>"+data[i]["song"]["name"]+" - ";
|
||||
for(let i2=0;i2<data[i]["song"]["ar"].length;i2++){
|
||||
if(i2==data[i]["song"]["ar"].length-1){
|
||||
record+=data[i]["song"]["ar"][i2]["name"]+"</th>";
|
||||
}else{
|
||||
record+=data[i]["song"]["ar"][i2]["name"]+" , ";
|
||||
}
|
||||
}
|
||||
record+="</tr>";
|
||||
}
|
||||
}
|
||||
}
|
||||
document.getElementById("record").innerHTML=record;
|
||||
})
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
220
site/song/process.php
Normal file
220
site/song/process.php
Normal file
@ -0,0 +1,220 @@
|
||||
<?php
|
||||
include("../center/entrance.php");
|
||||
include("../key.php");
|
||||
$sdk=new ghinkPassport($global_id,$global_key);
|
||||
function mts(){
|
||||
$t=explode(' ', microtime());
|
||||
return (floatval($t[0])+floatval($t[1]));
|
||||
}
|
||||
$mts=mts();
|
||||
$ts=round($mts);
|
||||
function songBalace($limit,$used,$last,$refresh){
|
||||
if((time()-strtotime($last))>=604800){
|
||||
return true;
|
||||
}else{
|
||||
if($refresh==6){
|
||||
$refresh=date("Y-m-d",strtotime(getDay($refresh))-604800);
|
||||
if(strtotime($refresh)>=strtotime($last) && $limit!=0){
|
||||
return true;
|
||||
}else{
|
||||
if(($limit-$used)>0){
|
||||
return true;
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}else{
|
||||
$refresh=getDay($refresh);
|
||||
if(strtotime($refresh)<=strtotime($last) && $limit!=0){
|
||||
return true;
|
||||
}else{
|
||||
if(($limit-$used)>0){
|
||||
return true;
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
function getDay($var){
|
||||
$ts=time();
|
||||
$var2=date("w",$ts);
|
||||
if($var2=="6"){
|
||||
$var3=$ts+(84600*(abs(0-$var)+1));
|
||||
return date("Y-m-d",$var3);
|
||||
}else if($var2>=$var){
|
||||
return false;
|
||||
}else{
|
||||
$var3=$ts+(84600*abs($var2-$var));
|
||||
return date("Y-m-d",$var3);
|
||||
}
|
||||
}
|
||||
$domain=explode("/",preg_replace("/https:\/\/|http:\/\//","",$_SERVER["HTTP_REFERER"]))[0];
|
||||
|
||||
function duringTime($start,$end){
|
||||
$Day = date('Y-m-d ',time());
|
||||
$timeBegin = strtotime($Day.$start);
|
||||
$timeEnd = strtotime($Day.$end);
|
||||
$curr_time = time();
|
||||
if($curr_time >= $timeBegin && $curr_time <= $timeEnd){
|
||||
return true;
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
if($domain=="radio.fmhs.club" || true){
|
||||
if(@$_GET['pid']!="" && @$_GET['id']!="" && @$_GET['date']!=""){
|
||||
$token=false;
|
||||
if($_GET["id"]!="1"){
|
||||
$tokenClass=new token;
|
||||
$token=$tokenClass->getTokenApp($global_id,$global_key);
|
||||
if($token!=false){
|
||||
$data=array("token"=>$token,"pid"=>$_GET['pid'],"sid"=>$_GET['id']);
|
||||
$result=sendPost("https://apiv1.radio.fmhs.club/new/",$data);
|
||||
//var_dump($result);
|
||||
}
|
||||
}
|
||||
if($_COOKIE["token"]==""){
|
||||
exit(json_encode(array("status"=>"failed")));
|
||||
}else{
|
||||
if($sdk->checkToken($_COOKIE["token"])){
|
||||
$uid=$_COOKIE["uid"];
|
||||
//数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
$sql=$conn->prepare("SELECT `status` FROM `users` WHERE `uid`=?");
|
||||
$sql->bind_param("i",$uid);
|
||||
$sql->execute();
|
||||
$sql->bind_result($status);
|
||||
while($sql->fetch()){
|
||||
$rStatus=$status;
|
||||
}
|
||||
if($rStatus=="passed"){
|
||||
$sql=$conn->prepare("SELECT `switcher`,`ignoreTime`,`timeInterval`,`refreshDay` FROM `system` WHERE `systemKey`=1");
|
||||
$sql->execute();
|
||||
$sql->bind_result($switcher,$ignoreTime,$timeInterval,$refreshDay);
|
||||
while($sql->fetch()){
|
||||
$rSwitcher=$switcher;
|
||||
$rIgnoreTime=$ignoreTime;
|
||||
$rTimeInterval=$timeInterval;
|
||||
$rRefreshDay=$refreshDay;
|
||||
}
|
||||
$json=json_decode($rTimeInterval);
|
||||
if($rIgnoreTime=="true"){
|
||||
$igTime=true;
|
||||
}else{
|
||||
$igTime=false;
|
||||
}
|
||||
if($rSwitcher=="true"){
|
||||
$switcher=true;
|
||||
}else{
|
||||
$switcher=false;
|
||||
}
|
||||
$timeSwitcher=false;
|
||||
foreach ($json as $key => $value){
|
||||
if($value[0]==date("w") && duringTime($value[1],$value[2])){
|
||||
$timeSwitcher=true;
|
||||
}
|
||||
}
|
||||
if($timeSwitcher || $igTime){
|
||||
$sql=$conn->prepare("SELECT `songNumsLimit`,`songTimeUsed`,`songLastTime` FROM `users` WHERE `uid`=?");
|
||||
$sql->bind_param("i",$uid);
|
||||
$sql->execute();
|
||||
$sql->bind_result($songNumsLimit,$songTimeUsed,$songLastTime);
|
||||
while($sql->fetch()){
|
||||
$rSongNumsLimit=$songNumsLimit;
|
||||
$rSongTimeUsed=$songTimeUsed;
|
||||
$rSongLastTime=$songLastTime;
|
||||
}
|
||||
if(songBalace($rSongNumsLimit,$rSongTimeUsed,$rSongLastTime,$rRefreshDay)){
|
||||
if($switcher){
|
||||
if($_GET["pid"]=="1"){
|
||||
$cacheId=intval($_GET["id"]);
|
||||
}else if($_GET["pid"]=="2"){
|
||||
$data=array("token"=>$token,"pid"=>$_GET['pid'],"sid"=>$_GET['id']);
|
||||
$result=sendPost("https://apiv1.radio.fmhs.club/new/",$data);
|
||||
//var_dump($result);
|
||||
$result=json_decode($result);
|
||||
$cacheId=$result->result->id;
|
||||
}
|
||||
//获取黑名单
|
||||
$sql=$conn->prepare("SELECT `id` FROM `blacklist` WHERE `id`=?");
|
||||
$sql->bind_param("i",$cacheId);
|
||||
$sql->execute();
|
||||
$sql->bind_result($id);
|
||||
while($sql->fetch()){
|
||||
$rId=$id;
|
||||
}
|
||||
if($rId==null){
|
||||
$songStatus=null;
|
||||
//获取白名单
|
||||
$sql=$conn->prepare("SELECT `id` FROM `whitelist` WHERE `id`=?");
|
||||
$sql->bind_param("i",$cacheId);
|
||||
$sql->execute();
|
||||
$sql->bind_result($id);
|
||||
while($sql->fetch()){
|
||||
$rId=$id;
|
||||
}
|
||||
if($rId!=null){
|
||||
$songStatus="passed";
|
||||
}
|
||||
$pid=1;
|
||||
$mts=intval($mts*1000);
|
||||
$sql=$conn->prepare("INSERT INTO `record`(`date`, `pid`, `id`, `uid`, `time`, `status`) VALUES (?,?,?,?,?,?)");
|
||||
$sql->bind_param("sisiis",$_GET['date'],$pid,$cacheId,$uid,$mts,$songStatus);
|
||||
$sql->execute();
|
||||
if((time()-strtotime($rSongLastTime))>=604800){
|
||||
$used=1;
|
||||
}else{
|
||||
if($rRefreshDay==6){
|
||||
$refresh=date("Y-m-d",strtotime(getDay($rRefreshDay))-604800);
|
||||
if(strtotime($refresh)>=strtotime($rSongLastTime) && $rSongNumsLimit!=0){
|
||||
$used=1;
|
||||
}else{
|
||||
$used=$rSongTimeUsed+1;
|
||||
}
|
||||
}else{
|
||||
$refresh=getDay($rRefreshDay);
|
||||
if(strtotime($refresh)<=strtotime($rSongLastTime) && $rSongNumsLimit!=0){
|
||||
$used=1;
|
||||
}else{
|
||||
$used=$rSongTimeUsed+1;
|
||||
}
|
||||
}
|
||||
}
|
||||
$sql=$conn->prepare("UPDATE `users` SET `songTimeUsed`=?,`songLastTime`=? WHERE `uid`=?");
|
||||
$today=date("Y-m-d",$ts);
|
||||
$sql->bind_param("isi",$used,$today,$uid);
|
||||
$sql->execute();
|
||||
$conn->close();
|
||||
exit("点歌成功!");
|
||||
}else{
|
||||
$conn->close();
|
||||
exit("您点播的歌曲为黑名单歌曲!");
|
||||
}
|
||||
}else{
|
||||
$conn->close();
|
||||
exit("点歌通道已经关闭!");
|
||||
}
|
||||
}else{
|
||||
$conn->close();
|
||||
exit("您的本周点歌余额不足!");
|
||||
}
|
||||
}else{
|
||||
$conn->close();
|
||||
exit("当前非点歌时间段!");
|
||||
}
|
||||
}else{
|
||||
$conn->close();
|
||||
exit("请先实名!");
|
||||
}
|
||||
}else{
|
||||
exit("请先登录!");
|
||||
}
|
||||
}
|
||||
}else{
|
||||
exit("参数无效!");
|
||||
}
|
||||
}else{
|
||||
exit("非法访问!");
|
||||
}
|
101
site/song/record.php
Normal file
101
site/song/record.php
Normal file
@ -0,0 +1,101 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>点歌记录 - 凤鸣高级中学广播站</title>
|
||||
<link rel="shortcut icon" href="https://cdn.fmhs.club/image/radio/favicon.png">
|
||||
<link href="https://cdn.ghink.net/assembly/bootstrap/4.6.1/css/bootstrap.min.css" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<hr>
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<h1>在线点歌系统</h1>
|
||||
</div>
|
||||
<div class="col-12" id="top">
|
||||
<a href="https://radio.fmhs.club/">返回首页</a> <a href="index.php">在线点歌</a> <a href="record.php">点歌记录</a> <a href="list.php">黑白名单</a>
|
||||
<div style="text-align:right;"><a href="../center/login.php?location=https://radio.fmhs.club/song/">未登录</a></div>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-lg-8 col-12 jumbotron">
|
||||
<div class="form-group">
|
||||
<div id="record">
|
||||
<center><h3>加载中</h3></center>
|
||||
<hr>
|
||||
<center><h5>客官请稍后,结果马上来...</h5></center>
|
||||
</div>
|
||||
</div>
|
||||
<strong><center>(仅显示通过审核的曲目)</center></strong>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<footer class="text-center">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<p>Copyright © Ghink Network Studio 2014. All rights reserved.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
<script src="https://cdn.ghink.net/js/jquery/jquery-3.6.0.min.js"></script>
|
||||
<script src="https://resource.ghink.net/site/public/js/popper.min.js"></script>
|
||||
<script src="https://cdn.ghink.net/assembly/bootstrap/4.6.1/js/bootstrap.min.js"></script>
|
||||
<script>
|
||||
var JsonData = {
|
||||
type: "user"
|
||||
};
|
||||
$.get("https://radio.fmhs.club/song/api.php", JsonData,
|
||||
function(data) {
|
||||
console.log(data);
|
||||
if(data["status"]==true){
|
||||
document.getElementById("top").innerHTML=`
|
||||
<a href="https://radio.fmhs.club/">返回首页</a> <a href="index.php">在线点歌</a> <a href="record.php">点歌记录</a> <a href="list.php">黑白名单</a> <a href="myRecord.php">我的已点</a>
|
||||
<div style="text-align:right;"><a href="../center/user.php">欢迎您!`+data["detail"]["nickname"]+`</a> <a href='../center/logout.php'>退出登陆</a></div>`;
|
||||
}
|
||||
})
|
||||
var JsonData = {
|
||||
type: "record"
|
||||
};
|
||||
$.get("https://radio.fmhs.club/song/api.php", JsonData,
|
||||
function(data) {
|
||||
console.log(data);
|
||||
var record=`<table width="100%"><tr><th>日期</th><th>曲目</th><th>点播者</th></tr>`;
|
||||
for(let i=0;i<data.length;i++){
|
||||
if(i==data.length-1){
|
||||
record+="<tr><th>"+data[i]["date"]+"</th>";
|
||||
record+="<th>"+data[i]["song"]["name"]+" - ";
|
||||
for(let i2=0;i2<data[i]["song"]["ar"].length;i2++){
|
||||
if(i2==data[i]["song"]["ar"].length-1){
|
||||
record+=data[i]["song"]["ar"][i2]["name"]+"</th>";
|
||||
}else{
|
||||
record+=data[i]["song"]["ar"][i2]["name"]+" , ";
|
||||
}
|
||||
}
|
||||
record+="<th>"+data[i]["user"]+"</th></tr></table>";
|
||||
}else{
|
||||
record+="<tr><th>"+data[i]["date"]+"</th>";
|
||||
record+="<th>"+data[i]["song"]["name"]+" - ";
|
||||
for(let i2=0;i2<data[i]["song"]["ar"].length;i2++){
|
||||
if(i2==data[i]["song"]["ar"].length-1){
|
||||
record+=data[i]["song"]["ar"][i2]["name"]+"</th>";
|
||||
}else{
|
||||
record+=data[i]["song"]["ar"][i2]["name"]+" , ";
|
||||
}
|
||||
}
|
||||
record+="<th>"+data[i]["user"]+"</th></tr>";
|
||||
}
|
||||
}
|
||||
document.getElementById("record").innerHTML=record;
|
||||
})
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
110
site/song/search.php
Normal file
110
site/song/search.php
Normal file
@ -0,0 +1,110 @@
|
||||
<?php
|
||||
|
||||
function sendPost($url, $post_data) {
|
||||
$postdata=http_build_query($post_data);
|
||||
$options=array(
|
||||
'ssl' => array(
|
||||
'verify_peer' => false,
|
||||
),
|
||||
'http' => array(
|
||||
'method' => 'POST',
|
||||
'header' => 'Content-type:application/x-www-form-urlencoded',
|
||||
'content' => $postdata,
|
||||
'timeout' => 15*60
|
||||
)
|
||||
);
|
||||
$context=stream_context_create($options);
|
||||
$result=file_get_contents($url,false,$context);
|
||||
return $result;
|
||||
}
|
||||
function sendGet($url, $get_data) {
|
||||
$result="?";
|
||||
$options=array(
|
||||
'ssl' => array(
|
||||
'verify_peer' => false,
|
||||
),
|
||||
'http' => array(
|
||||
'method' => 'POST',
|
||||
'header' => 'Content-type:application/x-www-form-urlencoded',
|
||||
'content' => $postdata,
|
||||
'timeout' => 15*60
|
||||
)
|
||||
);
|
||||
$context=stream_context_create($options);
|
||||
foreach ($get_data as $key => $value){
|
||||
if($key==end($get_data)){
|
||||
$result=$result.$key."=".urlencode($value);
|
||||
}else{
|
||||
$result=$result.$key."=".urlencode($value)."&";
|
||||
}
|
||||
}
|
||||
return file_get_contents($url.$result,false,$context);
|
||||
}
|
||||
|
||||
$cookie=file_get_contents("cookie.conf");
|
||||
header("Content-type: application/json");
|
||||
|
||||
if(@$_GET["keyword"]!=""){
|
||||
|
||||
if(@$_GET["page"]!=""){
|
||||
$page=intval($_GET["page"])-1;
|
||||
}else{
|
||||
$page=0;
|
||||
}
|
||||
|
||||
$result=array();
|
||||
|
||||
//极科音乐
|
||||
//构建查询数据
|
||||
$getData=array(
|
||||
"limit"=>2,
|
||||
"keyword"=>$_GET["keyword"]
|
||||
);
|
||||
$data=sendGet("https://apiv1.radio.fmhs.club/search/",$getData);
|
||||
$ghink=json_decode($data);
|
||||
$ghinkFormat=array();
|
||||
foreach ($ghink->result as $value){
|
||||
$artists=array();
|
||||
foreach ($value->ar as $artist){
|
||||
$artist=json_decode(json_encode($artist),true);
|
||||
unset($artist["alias"]);
|
||||
unset($artist["pic"]);
|
||||
array_push($artists,$artist);
|
||||
}
|
||||
array_push($ghinkFormat,array("name"=>$value->name,"id"=>$value->id,"ar"=>$artists,"url"=>$value->url));
|
||||
}
|
||||
array_push($result,array("platform"=>"ghink","result"=>$ghinkFormat));
|
||||
|
||||
//网易云
|
||||
//构建查询数据
|
||||
$postData=array(
|
||||
"limit"=>2,
|
||||
"offset"=>2*$page,
|
||||
"keywords"=>$_GET["keyword"],
|
||||
"cookie"=>$cookie
|
||||
);
|
||||
$data=sendGet("http://cloud-music.pl-fe.cn/cloudsearch",$postData);
|
||||
$netease=json_decode($data);
|
||||
$neteaseFormat=array();
|
||||
if($netease->result->songCount!=0){
|
||||
foreach ($netease->result->songs as $value){
|
||||
$artists=array();
|
||||
foreach ($value->ar as $artist){
|
||||
$artist=json_decode(json_encode($artist),true);
|
||||
unset($artist["alias"]);
|
||||
unset($artist["alia"]);
|
||||
unset($artist["tns"]);
|
||||
array_push($artists,$artist);
|
||||
}
|
||||
$data=json_decode(file_get_contents("http://cloud-music.pl-fe.cn/song/url?id=".$value->id."&cookie=".urlencode($cookie)));
|
||||
$url=$data->data[0]->url;
|
||||
array_push($neteaseFormat,array("name"=>$value->name,"id"=>$value->id,"ar"=>$artists,"url"=>str_replace("http://","https://",$url)));
|
||||
}
|
||||
array_push($result,array("platform"=>"netease","result"=>$neteaseFormat));
|
||||
}
|
||||
|
||||
exit(json_encode($result));
|
||||
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"failed","message"=>"wrong keywords")));
|
||||
}
|
159
site/song/template/confirm.html
Normal file
159
site/song/template/confirm.html
Normal file
@ -0,0 +1,159 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>点歌确认-凤鸣高级中学广播站</title>
|
||||
<link href="https://resource.ghink.net/site/public/css/bootstrap_4.4.1.css" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container mt-2">
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<div class="jumbotron">
|
||||
<h3 class="text-center">点歌确认</h3>
|
||||
<h5 class="text-center">您选择的歌为:{{name}}</h5>
|
||||
<div class="row justify-content-center">
|
||||
<select id="selection">
|
||||
{{option}}
|
||||
</select>
|
||||
</div><br>
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-auto">
|
||||
<p><a class="btn btn-primary btn-lg" href="javascript:void(0)" onClick="cancel()" role="button">取消</a> </p>
|
||||
</div>
|
||||
<div class="col-auto">
|
||||
<p><a class="btn btn-success btn-lg" href="javascript:void(0)" id="confirm" onClick="confirm()" role="button">确定</a> </p>
|
||||
</div>
|
||||
</div>
|
||||
<p class="text-center">确认后将无法修改,并消耗您本周的点歌次数,请三思而后行!</p>
|
||||
<p class="text-center">第一次被人点播的歌曲需要等待服务器缓存,可能会暂时没有响应,请耐心等候!</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<footer class="text-center">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<p>Copyright © Ghink Network Studio 2014. All rights reserved.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<script>
|
||||
var pid = {{pid}};
|
||||
var id = '{{id}}';
|
||||
var cookies = '{{cookie}}';
|
||||
var uid = "{{uid}}";
|
||||
var auth = {{auth}};
|
||||
var switcher = {{switcher}};
|
||||
var timeQuatum = `{{timeQuatum}}`;
|
||||
var igTime = {{igTime}};
|
||||
var balace = {{balace}};
|
||||
function isWechat(){
|
||||
var ua = window.navigator.userAgent.toLowerCase();
|
||||
if(ua.match(/MicroMessenger/i) == 'micromessenger'){
|
||||
return true;
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
function print(data) {
|
||||
alert(data);
|
||||
console.log(data);
|
||||
}
|
||||
function confirm() {
|
||||
var info = $("#selection option:selected").val();
|
||||
if(uid!=""){
|
||||
if(auth){
|
||||
var timeLimit = JSON.parse(timeQuatum);
|
||||
var day = new Date().getDay();
|
||||
var date = new Date().getFullYear()+"-"+(new Date().getMonth()+1)+"-"+new Date().getDate();
|
||||
var timestamp = Date.parse(new Date())/1000;
|
||||
var timeSwitcher = false;
|
||||
for (i in timeLimit){
|
||||
if((day==timeLimit[i][0] && isDuring(date+" "+timeLimit[i][1],date+" "+timeLimit[i][2])) || igTime){
|
||||
timeSwitcher = true;
|
||||
}
|
||||
}
|
||||
if(timeSwitcher){
|
||||
if(balace){
|
||||
if(switcher){
|
||||
JsonData = {
|
||||
pid: pid,
|
||||
id: id,
|
||||
date: info
|
||||
};
|
||||
document.getElementById("confirm").innerHTML="请稍后";
|
||||
$.get("process.php", JsonData,
|
||||
function(data) {
|
||||
document.getElementById("confirm").innerHTML="确定";
|
||||
print(data);
|
||||
if(isWechat()){
|
||||
history.go(-1);
|
||||
}else{
|
||||
window.close();
|
||||
}
|
||||
});
|
||||
}else{
|
||||
print("点歌通道已经关闭!");
|
||||
if(isWechat()){
|
||||
history.go(-1);
|
||||
}else{
|
||||
window.close();
|
||||
}
|
||||
}
|
||||
}else{
|
||||
print("您的本周点歌余额不足!");
|
||||
if(isWechat()){
|
||||
history.go(-1);
|
||||
}else{
|
||||
window.close();
|
||||
}
|
||||
}
|
||||
}else{
|
||||
print("当前非点歌时间段!");
|
||||
if(isWechat()){
|
||||
history.go(-1);
|
||||
}else{
|
||||
window.close();
|
||||
}
|
||||
}
|
||||
}else{
|
||||
print("请先实名!");
|
||||
if(isWechat()){
|
||||
history.go(-1);
|
||||
}else{
|
||||
window.close();
|
||||
}
|
||||
}
|
||||
}else{
|
||||
print("请先登录!");
|
||||
window.location.href='../center/login.php?location=https://radio.fmhs.club/song/';
|
||||
}
|
||||
}
|
||||
function isDuring(beginDateStr, endDateStr) {
|
||||
var curDate = new Date(),
|
||||
beginDate = new Date(beginDateStr),
|
||||
endDate = new Date(endDateStr);
|
||||
if (curDate >= beginDate && curDate <= endDate) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
function cancel() {
|
||||
if(isWechat()){
|
||||
history.go(-1);
|
||||
}else{
|
||||
window.close();
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<script src="https://resource.ghink.net/site/public/js/jquery.js"></script>
|
||||
<script src="https://resource.ghink.net/site/public/js/popper.min.js"></script>
|
||||
<script src="https://resource.ghink.net/site/public/js/bootstrap_4.4.1.js"></script>
|
||||
</body>
|
||||
</html>
|
151
user_center/fmhs_radio_song.sql
Normal file
151
user_center/fmhs_radio_song.sql
Normal file
@ -0,0 +1,151 @@
|
||||
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
|
||||
START TRANSACTION;
|
||||
SET time_zone = "+00:00";
|
||||
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!40101 SET NAMES utf8mb4 */;
|
||||
|
||||
--
|
||||
-- 数据库: `fmhs_radio_song`
|
||||
--
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- 表的结构 `blacklist`
|
||||
--
|
||||
|
||||
CREATE TABLE `blacklist` (
|
||||
`id` int(11) NOT NULL
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- 表的结构 `history`
|
||||
--
|
||||
|
||||
CREATE TABLE `history` (
|
||||
`date` date NOT NULL,
|
||||
`list` text NOT NULL
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- 表的结构 `record`
|
||||
--
|
||||
|
||||
CREATE TABLE `record` (
|
||||
`recId` int(11) NOT NULL,
|
||||
`date` date NOT NULL,
|
||||
`pid` int(11) NOT NULL,
|
||||
`id` text NOT NULL,
|
||||
`uid` int(11) NOT NULL,
|
||||
`time` bigint(20) NOT NULL,
|
||||
`status` text
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- 表的结构 `system`
|
||||
--
|
||||
|
||||
CREATE TABLE `system` (
|
||||
`notice` longtext NOT NULL,
|
||||
`timeInterval` text NOT NULL,
|
||||
`openWeek` text NOT NULL,
|
||||
`refreshDay` tinyint(4) NOT NULL,
|
||||
`switcher` tinytext NOT NULL,
|
||||
`ignoreTime` tinytext NOT NULL,
|
||||
`systemKey` tinyint(4) NOT NULL DEFAULT '1'
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- 表的结构 `users`
|
||||
--
|
||||
|
||||
CREATE TABLE `users` (
|
||||
`uid` int(11) NOT NULL,
|
||||
`type` text NOT NULL,
|
||||
`nickname` text NOT NULL,
|
||||
`songNumsLimit` int(11) NOT NULL DEFAULT '1000',
|
||||
`songTimeUsed` int(11) NOT NULL DEFAULT '0',
|
||||
`songLastTime` date NOT NULL DEFAULT '1970-01-01',
|
||||
`name` text,
|
||||
`status` tinytext,
|
||||
`ban` tinytext,
|
||||
`message` longtext,
|
||||
`auth` json DEFAULT NULL
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- 表的结构 `whitelist`
|
||||
--
|
||||
|
||||
CREATE TABLE `whitelist` (
|
||||
`id` int(11) NOT NULL
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
--
|
||||
-- 转储表的索引
|
||||
--
|
||||
|
||||
--
|
||||
-- 表的索引 `blacklist`
|
||||
--
|
||||
ALTER TABLE `blacklist`
|
||||
ADD PRIMARY KEY (`id`);
|
||||
|
||||
--
|
||||
-- 表的索引 `history`
|
||||
--
|
||||
ALTER TABLE `history`
|
||||
ADD PRIMARY KEY (`date`);
|
||||
|
||||
--
|
||||
-- 表的索引 `record`
|
||||
--
|
||||
ALTER TABLE `record`
|
||||
ADD PRIMARY KEY (`recId`);
|
||||
|
||||
--
|
||||
-- 表的索引 `system`
|
||||
--
|
||||
ALTER TABLE `system`
|
||||
ADD PRIMARY KEY (`systemKey`);
|
||||
|
||||
--
|
||||
-- 表的索引 `users`
|
||||
--
|
||||
ALTER TABLE `users`
|
||||
ADD PRIMARY KEY (`uid`);
|
||||
|
||||
--
|
||||
-- 表的索引 `whitelist`
|
||||
--
|
||||
ALTER TABLE `whitelist`
|
||||
ADD PRIMARY KEY (`id`);
|
||||
|
||||
--
|
||||
-- 在导出的表使用AUTO_INCREMENT
|
||||
--
|
||||
|
||||
--
|
||||
-- 使用表AUTO_INCREMENT `record`
|
||||
--
|
||||
ALTER TABLE `record`
|
||||
MODIFY `recId` int(11) NOT NULL AUTO_INCREMENT;
|
||||
COMMIT;
|
||||
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
222
user_center/interface/api.php
Normal file
222
user_center/interface/api.php
Normal file
@ -0,0 +1,222 @@
|
||||
<?php
|
||||
/*
|
||||
Copyright GHINK Network Studio
|
||||
Author: Bigsk(https://www.xiaxinzhe.cn)
|
||||
*/
|
||||
include("../libraries/entrance.php");
|
||||
//捕获当前时间
|
||||
$ts=time();
|
||||
//真实IP获取
|
||||
$ipadd=new ip;
|
||||
$ip=$ipadd->getReal();
|
||||
//解析信息
|
||||
$stream_opts = [
|
||||
"ssl" => [
|
||||
"verify_peer"=>false,
|
||||
"verify_peer_name"=>false,
|
||||
]
|
||||
];
|
||||
$ipInfo=json_decode(file_get_contents("https://api.ghink.net/ip/?ip=".$ip,false,stream_context_create($stream_opts)),true);
|
||||
//获取IP信息分区
|
||||
$area=$ipInfo["city"];
|
||||
//获取来路信息
|
||||
$domain=explode("/",preg_replace("/https:\/\/|http:\/\//","",$_SERVER["HTTP_REFERER"]))[0];
|
||||
switch($_GET['type']){
|
||||
//申请APP Token
|
||||
case "appToken":
|
||||
if($_POST['sid']!="" && $_POST['skey']!=""){
|
||||
$app=new app;
|
||||
$result=$app->giveToken($_POST['sid'],$_POST['skey']);
|
||||
if($result==false){
|
||||
exit(json_encode(array("status"=>"failed")));
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"success","token"=>$result)));
|
||||
}
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"failed")));
|
||||
}
|
||||
//申请Auth任务
|
||||
case "authTask":
|
||||
if($_POST["token"]!=""){
|
||||
$app=new app;
|
||||
if($app->checkToken($_POST["token"])){
|
||||
$task=new task;
|
||||
$result=$task->create("oauthCreate","","","","","",$_POST["token"]);
|
||||
if($result==false){
|
||||
exit(json_encode(array("status"=>"failed")));
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"success","tid"=>$result)));
|
||||
}
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"failed")));
|
||||
}
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"failed")));
|
||||
}
|
||||
//取回Auth任务结果(用户Token)
|
||||
case "authBack":
|
||||
if($_POST["token"]!="" && $_POST["tid"]!=""){
|
||||
$app=new app;
|
||||
if($app->checkToken($_POST["token"])){
|
||||
$task=new task;
|
||||
$result=$task->getbackOauth($_POST["tid"]);
|
||||
if($result==false){
|
||||
exit(json_encode(array("status"=>"failed")));
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"success","token"=>$result)));
|
||||
}
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"failed")));
|
||||
}
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"failed")));
|
||||
}
|
||||
exit();
|
||||
//获取用户UID
|
||||
case "getUid":
|
||||
if($_POST["tokenUsr"]!="" && $_POST["tokenApp"]!=""){
|
||||
$app=new app;
|
||||
if($app->checkToken($_POST["tokenApp"])){
|
||||
$user=new user;
|
||||
if($user->checkToken($_POST["tokenUsr"])){
|
||||
$result=$user->getIdToken($_POST["tokenUsr"]);
|
||||
if($result!=false){
|
||||
$result=$user->getUidId($result);
|
||||
if($result!=false){
|
||||
exit(json_encode(array("status"=>"success","uid"=>$result)));
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"failed")));
|
||||
}
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"failed")));
|
||||
}
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"failed")));
|
||||
}
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"failed")));
|
||||
}
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"failed")));
|
||||
}
|
||||
exit();
|
||||
//检查用户Token是否有效
|
||||
case "checkToken":
|
||||
if($_POST["tokenUsr"]!="" && $_POST["tokenApp"]!=""){
|
||||
$app=new app;
|
||||
if($app->checkToken($_POST["tokenApp"])){
|
||||
$user=new user;
|
||||
if($user->checkToken($_POST["tokenUsr"])){
|
||||
exit(json_encode(array("status"=>"success")));
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"failed")));
|
||||
}
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"failed")));
|
||||
}
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"failed")));
|
||||
}
|
||||
exit();
|
||||
//取回用户昵称
|
||||
case "getName":
|
||||
if($_POST['token']!="" && $_POST["uid"]!=""){
|
||||
$app=new app;
|
||||
if($app->checkToken($_POST["token"])){
|
||||
$user=new user;
|
||||
$result=$user->getNameUid($_POST["uid"]);
|
||||
exit(json_encode(array("status"=>"success","name"=>$result)));
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"failed")));
|
||||
}
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"failed")));
|
||||
}
|
||||
exit();
|
||||
//检测是否已经实名
|
||||
case "checkAuth":
|
||||
if($_POST['token']!="" && $_POST["uid"]!=""){
|
||||
$app=new app;
|
||||
if($app->checkToken($_POST["token"])){
|
||||
$auth=new realNameAuth;
|
||||
if($auth->check($uid)){
|
||||
exit(json_encode(array("status"=>"success","auth"=>true)));
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"success","auth"=>false)));
|
||||
}
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"failed")));
|
||||
}
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"failed")));
|
||||
}
|
||||
exit();
|
||||
//取回实名信息
|
||||
case "getAuthInfo":
|
||||
if($_POST['token']!="" && $_POST["uid"]!=""){
|
||||
$app=new app;
|
||||
if($app->checkToken($_POST["token"])){
|
||||
$aid=$app->getAidToken($_POST["token"]);
|
||||
$level=$app->checkLevel($aid);
|
||||
if($level=="official"){
|
||||
$auth=new realNameAuth;
|
||||
exit(json_encode(array("status"=>"success","result"=>$auth->readData($_POST["uid"]))));
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"failed")));
|
||||
}
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"failed")));
|
||||
}
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"failed")));
|
||||
}
|
||||
exit();
|
||||
case "checkAppLevel":
|
||||
if($_POST['token']!="" && $_POST["tokenCheck"]!=""){
|
||||
$app=new app;
|
||||
if($app->checkToken($_POST["token"])){
|
||||
$aid=$app->getAidToken($_POST["token"]);
|
||||
$level=$app->checkLevel($aid);
|
||||
if($level=="enterprise" || $level=="official"){
|
||||
if($app->checkToken($_POST["tokenCheck"])){
|
||||
$aidCheck=$app->getAidToken($_POST["tokenCheck"]);
|
||||
$levelCheck=$app->checkLevel($aidCheck);
|
||||
exit(json_encode(array("status"=>"success","result"=>$levelCheck)));
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"failed")));
|
||||
}
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"failed")));
|
||||
}
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"failed")));
|
||||
}
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"failed")));
|
||||
}
|
||||
exit();
|
||||
case "checkAppToken":
|
||||
if($_POST['token']!="" && $_POST["tokenCheck"]!=""){
|
||||
$app=new app;
|
||||
if($app->checkToken($_POST["token"])){
|
||||
$aid=$app->getAidToken($_POST["token"]);
|
||||
$level=$app->checkLevel($aid);
|
||||
if($level=="enterprise" || $level=="official"){
|
||||
if($app->checkToken($_POST["tokenCheck"])){
|
||||
exit(json_encode(array("status"=>"success","result"=>true)));
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"success","result"=>false)));
|
||||
}
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"failed")));
|
||||
}
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"failed")));
|
||||
}
|
||||
}else{
|
||||
exit(json_encode(array("status"=>"failed")));
|
||||
}
|
||||
exit();
|
||||
default:
|
||||
exit(json_encode(array("status"=>"success")));
|
||||
}
|
281
user_center/interface/oauth.php
Normal file
281
user_center/interface/oauth.php
Normal file
@ -0,0 +1,281 @@
|
||||
<?php
|
||||
/*
|
||||
Copyright GHINK Network Studio
|
||||
Author: Bigsk(https://www.xiaxinzhe.cn)
|
||||
*/
|
||||
include("../libraries/entrance.php");
|
||||
//检测数据库
|
||||
$conn=mysqli_connect(database::addr,database::user,database::pass,database::name) or die('Database Error! Please contact with administrator!');
|
||||
mysqli_close($conn);
|
||||
//捕获当前时间
|
||||
$ts=time();
|
||||
//真实IP获取
|
||||
$ipadd=new ip;
|
||||
$ip=$ipadd->getReal();
|
||||
//解析信息
|
||||
$stream_opts = [
|
||||
"ssl" => [
|
||||
"verify_peer"=>false,
|
||||
"verify_peer_name"=>false,
|
||||
]
|
||||
];
|
||||
$ipInfo=json_decode(file_get_contents("https://api.ghink.net/ip/?ip=".$ip,false,stream_context_create($stream_opts)),true);
|
||||
//获取IP信息分区
|
||||
$area=$ipInfo["city"];
|
||||
//获取来路信息
|
||||
$domain=explode("/",preg_replace("/https:\/\/|http:\/\//","",$_SERVER["HTTP_REFERER"]))[0];
|
||||
switch($_GET["type"]){
|
||||
//退出登陆模块
|
||||
case "exit":
|
||||
setcookie("ghinkToken","",-1,"/");
|
||||
header("location: oauth.php?type=log");
|
||||
exit();
|
||||
//实名认证模块
|
||||
case "auth":
|
||||
$user=new user;
|
||||
if(!$user->checkToken($_COOKIE["ghinkToken"])){
|
||||
$token="";
|
||||
$url="Need Login";
|
||||
echo str_replace("{{url}}",$url,str_replace("{{token}}",$token,file_get_contents(setting::root."template/authentication/authentication.html")));
|
||||
}else{
|
||||
$token=$_COOKIE["ghinkToken"];
|
||||
//检查是否为中国大陆用户
|
||||
$auth=new realNameAuth;
|
||||
$id=$user->getIdToken($token);
|
||||
$uid=$user->getUidId($id);
|
||||
$url=$auth->create($uid);
|
||||
if($user->getAreaUid($uid)=="global" || $auth->check($uid)){
|
||||
header("location: oauth.php?type=panel");
|
||||
}else{
|
||||
echo str_replace("{{url}}",$url,str_replace("{{token}}",$token,file_get_contents(setting::root."template/authentication/authentication.html")));
|
||||
}
|
||||
}
|
||||
exit();
|
||||
//实名认证回调模块
|
||||
case "authBack":
|
||||
if($_GET['tid']==""){
|
||||
exit(file_get_contents(setting::root."template/403.html"));
|
||||
}else{
|
||||
$realNameAuth=new realNameAuth;
|
||||
if($realNameAuth->getResult($_GET['tid'])){
|
||||
echo file_get_contents(setting::root."template/authentication/success.html");
|
||||
}else{
|
||||
echo file_get_contents(setting::root."template/authentication/failed.html");
|
||||
}
|
||||
}
|
||||
exit();
|
||||
//实名失败模块
|
||||
case "authFailed":
|
||||
echo file_get_contents(setting::root."template/authentication/failed.html");
|
||||
exit();
|
||||
//找回密码模块
|
||||
case "find":
|
||||
echo "暂未开放 Not Open";
|
||||
exit();
|
||||
//面板模块
|
||||
case "panel":
|
||||
$user=new user;
|
||||
if(!$user->checkToken($_COOKIE["ghinkToken"])){
|
||||
header("location: oauth.php?type=log");
|
||||
}else{
|
||||
echo "暂未开放 Not Open<br/>";
|
||||
echo '<a href="oauth.php?type=auth">点我进行实名认证</a><br>';
|
||||
echo '您的UID为:'.$user->getUidId($user->getIdToken($_COOKIE["ghinkToken"])).'<br>';
|
||||
echo '您的昵称为:'.$user->getNameUid($user->getUidId($user->getIdToken($_COOKIE["ghinkToken"]))).'<br>';
|
||||
echo '<a href="oauth.php?type=exit">退出登录</a><br>';
|
||||
}
|
||||
exit();
|
||||
//OAUTH模块核验
|
||||
case "oauthCheck":
|
||||
//判断来路信息
|
||||
if($domain==setting::domain){
|
||||
if($_POST['tid']!=""){
|
||||
$task=new task;
|
||||
if($task->checkOauth($_POST['tid'])){
|
||||
if($_POST["email"]=="" || $_POST["pass"]==""){
|
||||
//判断并输出信息
|
||||
if($area==""){
|
||||
echo json_encode(array("","Log in failed! "));
|
||||
}else{
|
||||
echo json_encode(array("","登陆失败!"));
|
||||
}
|
||||
}else{
|
||||
$user=new user;
|
||||
$task=new task;
|
||||
$aid=$task->getAidTid($_POST['tid']);
|
||||
$result=$user->login($_POST["email"],$_POST["pass"],$ip,$aid);
|
||||
if($result==false){
|
||||
//判断并输出信息
|
||||
if($area==""){
|
||||
echo json_encode(array("","Log in failed! "));
|
||||
}else{
|
||||
echo json_encode(array("","登陆失败!"));
|
||||
}
|
||||
}else{
|
||||
//设置cookie
|
||||
setcookie("ghinkToken",$result,$ts+604800,"/");
|
||||
$task->recordOauth($_POST['tid'],$result);
|
||||
//判断并输出信息
|
||||
if($area==""){
|
||||
echo json_encode(array($result,"Log in success! "));
|
||||
}else{
|
||||
echo json_encode(array($result,"登陆成功!"));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}else{
|
||||
//非法访问403
|
||||
exit(file_get_contents(setting::root."template/403.html"));
|
||||
}
|
||||
}else{
|
||||
//非法访问403
|
||||
exit(file_get_contents(setting::root."template/403.html"));
|
||||
}
|
||||
exit();
|
||||
//OAUTH模块
|
||||
case "oauth":
|
||||
if($_GET['tid']!="" && $_GET['location']!=""){
|
||||
//判断并输出模板
|
||||
if($area==""){
|
||||
echo str_replace("{{LOCATION}}",$_GET['location'],str_replace("{{TID}}",$_GET['tid'],file_get_contents(setting::root."template/oauth/en_US.html")));
|
||||
}else{
|
||||
echo str_replace("{{LOCATION}}",$_GET['location'],str_replace("{{TID}}",$_GET['tid'],file_get_contents(setting::root."template/oauth/zh_CN.html")));
|
||||
}
|
||||
}else{
|
||||
exit(file_get_contents(setting::root."template/403.html"));
|
||||
}
|
||||
exit();
|
||||
//登录模块
|
||||
case "log":
|
||||
$user=new user;
|
||||
if($_COOKIE['ghinkToken']!="" && $user->checkToken($_COOKIE['ghinkToken'])){
|
||||
header("location: oauth.php?type=panel");
|
||||
exit();
|
||||
}
|
||||
//判断并输出模板
|
||||
if($area==""){
|
||||
echo file_get_contents(setting::root."template/log/en_US.html");
|
||||
}else{
|
||||
echo file_get_contents(setting::root."template/log/zh_CN.html");
|
||||
}
|
||||
exit();
|
||||
//登录核验模块
|
||||
case "logCheck":
|
||||
if($domain==setting::domain){
|
||||
if($_POST["email"]=="" || $_POST["pass"]==""){
|
||||
//判断并输出信息
|
||||
if($area==""){
|
||||
echo json_encode(array("","Log in failed! "));
|
||||
}else{
|
||||
echo json_encode(array("","登陆失败!"));
|
||||
}
|
||||
}else{
|
||||
$user=new user;
|
||||
$result=$user->login($_POST["email"],$_POST["pass"],$ip);
|
||||
if($result==false){
|
||||
//判断并输出信息
|
||||
if($area==""){
|
||||
echo json_encode(array("","Log in failed! "));
|
||||
}else{
|
||||
echo json_encode(array("","登陆失败!"));
|
||||
}
|
||||
}else{
|
||||
//设置cookie
|
||||
setcookie("ghinkToken",$result,$ts+604800,"/");
|
||||
//判断并输出信息
|
||||
if($area==""){
|
||||
echo json_encode(array($result,"Log in success! "));
|
||||
}else{
|
||||
echo json_encode(array($result,"登陆成功!"));
|
||||
}
|
||||
}
|
||||
}
|
||||
}else{
|
||||
//非法访问403
|
||||
exit(file_get_contents(setting::root."template/403.html"));
|
||||
}
|
||||
exit();
|
||||
//注册模块
|
||||
case "reg":
|
||||
$user=new user;
|
||||
//判断并输出模板
|
||||
if($area==""){
|
||||
echo file_get_contents(setting::root."template/reg/en_US.html");
|
||||
}else{
|
||||
echo file_get_contents(setting::root."template/reg/zh_CN.html");
|
||||
}
|
||||
exit();
|
||||
//注册邮件发送模块
|
||||
case "regMail":
|
||||
if($domain==setting::domain){
|
||||
if($area==""){
|
||||
//非空判断
|
||||
if($_POST["email"]=="" || $_POST["pass"]=="" || $_POST["name"]==""){
|
||||
exit("Auth mail send failed!");
|
||||
}else{
|
||||
//处理邮件请求
|
||||
$user=new user;
|
||||
$result=$user->reg($_POST["name"],$_POST["pass"],$_POST["email"],$ip);
|
||||
if($result==false){
|
||||
exit("Auth mail send failed! Maybe the user has already exist!");
|
||||
}else{
|
||||
echo "Auth mail has sent to your email! Please Check.";
|
||||
}
|
||||
}
|
||||
}else{
|
||||
//非空判断
|
||||
if($_POST["email"]=="" || $_POST["pass"]=="" || $_POST["name"]==""){
|
||||
exit("验证邮件发送失败!");
|
||||
}else{
|
||||
//处理邮件请求
|
||||
$user=new user;
|
||||
$result=$user->reg($_POST["name"],$_POST["pass"],$_POST["email"],$ip);
|
||||
if($result==false){
|
||||
exit("验证邮件发送失败!可能是用户已经存在!");
|
||||
}else{
|
||||
echo "验证邮件发送成功!请查收。";
|
||||
}
|
||||
}
|
||||
}
|
||||
}else{
|
||||
//非法访问403
|
||||
exit(file_get_contents(setting::root."template/403.html"));
|
||||
}
|
||||
exit();
|
||||
//注册邮件验证模块
|
||||
case "regMailCheck":
|
||||
//非空判断
|
||||
if($_GET["email"]=="" || $_GET["tid"]=="" || $_GET["code"]==""){
|
||||
exit(file_get_contents(setting::root."template/403.html"));
|
||||
}else{
|
||||
//处理核验请求
|
||||
$mail=new mail;
|
||||
$result=$mail->checkReg($_GET["email"],$_GET["tid"],$_GET["code"]);
|
||||
if($result){
|
||||
//判断并输出模板
|
||||
if($area==""){
|
||||
echo file_get_contents(setting::root."template/regMailCheck/success_en_US.html");
|
||||
}else{
|
||||
echo file_get_contents(setting::root."template/regMailCheck/success_zh_CN.html");
|
||||
}
|
||||
}else{
|
||||
//判断并输出模板
|
||||
if($area==""){
|
||||
echo file_get_contents(setting::root."template/regMailCheck/failed_en_US.html");
|
||||
}else{
|
||||
echo file_get_contents(setting::root."template/regMailCheck/failed_zh_CN.html");
|
||||
}
|
||||
}
|
||||
}
|
||||
exit();
|
||||
//协议模块
|
||||
case "agreement":
|
||||
//输出协议页
|
||||
echo file_get_contents(setting::root."template/agreement.html");
|
||||
exit();
|
||||
//非法访问
|
||||
default:
|
||||
//非法访问403
|
||||
exit(file_get_contents(setting::root."template/403.html"));
|
||||
}
|
408
user_center/libraries/app.php
Normal file
408
user_center/libraries/app.php
Normal file
@ -0,0 +1,408 @@
|
||||
<?php
|
||||
/*
|
||||
Copyright GHINK Network Studio
|
||||
Author: Bigsk(https://www.xiaxinzhe.cn)
|
||||
*/
|
||||
if(!defined('IN_SYS')){//Defined entreance security.
|
||||
header('HTTP/1.1 403 Forbidden');
|
||||
exit(file_get_contents(setting::root."template/403.html"));
|
||||
}
|
||||
//全局应用与开发者管理工具
|
||||
class developer{
|
||||
//检查开发者权限
|
||||
function checkLevel($did){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//创建数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
$sql=$conn->prepare("SELECT level FROM `developers` WHERE `did`=?");
|
||||
$sql->bind_param('i',$did);
|
||||
$sql->execute();
|
||||
$sql->bind_result($level);
|
||||
while($sql->fetch()){
|
||||
$rLevel=$level;
|
||||
}
|
||||
loger($conn,"developer-checkLevel","success",$ts,"info",json_encode(array("did"=>$did)));
|
||||
$conn->close();
|
||||
return $rLevel;
|
||||
}
|
||||
//新增开发者
|
||||
function create($uid,$level="personal"){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//创建数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
if(!$this->checkExist($uid)){
|
||||
$user=new user;
|
||||
$id=$user->getIdUid($uid);
|
||||
$area=$user->getAreaId($uid);
|
||||
$sql=$conn->prepare("INSERT INTO developers (
|
||||
did,uid,area,level) VALUES(
|
||||
NULL,?,?,?)");
|
||||
$sql->bind_param('iss',$uid,$area,$level);
|
||||
$sql->execute();
|
||||
//取回开发者id
|
||||
$did=mysqli_insert_id($conn);
|
||||
//更新全局开发者数
|
||||
$sql=$conn->prepare("SELECT deveNum FROM `system` WHERE 1");
|
||||
$sql->execute();
|
||||
$sql->bind_result($deveNum);
|
||||
while($sql->fetch()){
|
||||
$rDdeveNum=$deveNum;
|
||||
}
|
||||
$sql=$conn->prepare("UPDATE `system` SET `deveNum`=? WHERE 1");
|
||||
$rDdeveNum=$rDdeveNum+1;
|
||||
$sql->bind_param('i',$rDdeveNum);
|
||||
$sql->execute();
|
||||
loger($conn,"developer-create","success",$ts,"info",json_encode(array("uid"=>$uid)));
|
||||
$conn->close();
|
||||
return $did;
|
||||
}else{
|
||||
loger($conn,"developer-create","failed",$ts,"info",json_encode(array("uid"=>$uid)));
|
||||
$conn->close();
|
||||
return false;
|
||||
}
|
||||
}
|
||||
function quit($uid){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//创建数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
if($this->checkExist($uid)){
|
||||
//移除开发者所有APP
|
||||
$app=new app;
|
||||
$app->removeForDeve($did);
|
||||
loger($conn,"developer-quit","success",$ts,"info",json_encode(array("uid"=>$uid)));
|
||||
$conn->close();
|
||||
return $did;
|
||||
}else{
|
||||
loger($conn,"developer-quit","failed",$ts,"info",json_encode(array("uid"=>$uid)));
|
||||
$conn->close();
|
||||
return false;
|
||||
}
|
||||
}
|
||||
function checkExist($uid){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//创建数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
$sql=$conn->prepare("SELECT uid FROM `developers` WHERE `uid`=?");
|
||||
$sql->bind_param('i',$uid);
|
||||
$sql->execute();
|
||||
$sql->bind_result($uid);
|
||||
while($sql->fetch()){
|
||||
$rUid=$uid;
|
||||
}
|
||||
loger($conn,"developer-checkExist","success",$ts,"info",json_encode(array("uid"=>$uid)));
|
||||
if($rUid==""){
|
||||
$conn->close();
|
||||
return false;
|
||||
}else{
|
||||
$conn->close();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
class app{
|
||||
//新增APP
|
||||
function create($did,$name){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//创建数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
if(!$this->checkExist($name)){
|
||||
//获取已使用的全局id数
|
||||
$sql=$conn->prepare("SELECT idUsed FROM `system` WHERE 1");
|
||||
$sql->execute();
|
||||
$sql->bind_result($idUsed);
|
||||
while($sql->fetch()){
|
||||
$rIdUsed=$idUsed;
|
||||
}
|
||||
$id=$rIdUsed+1;
|
||||
//更新全局id数
|
||||
$sql=$conn->prepare("UPDATE `system` SET `idUsed`=? WHERE 1");
|
||||
$sql->bind_param('i',$id);
|
||||
$sql->execute();
|
||||
//新增APP
|
||||
$sql=$conn->prepare("INSERT INTO apps (
|
||||
id,aid,name,sid,skey,ban,lastIP,addTime,lastTime,ownerId,users) VALUES(
|
||||
?,NULL,?,?,?,?,?,?,?,?,?)");
|
||||
$users=json_encode(array());
|
||||
$ban="false";
|
||||
$lastIP="0.0.0.0";
|
||||
//创建sId与sKey
|
||||
$hash=new hash;
|
||||
$sIdKey=$hash->generateSIdKey($name);
|
||||
$sql->bind_param('isssssiiis',$id,$name,$sIdKey[0],$sIdKey[1],$ban,$lastIP,$ts,$ts,$did,$users);
|
||||
$sql->execute();
|
||||
//取回APPiD
|
||||
$aid=mysqli_insert_id($conn);
|
||||
loger($conn,"app-create","success",$ts,"info",json_encode(array("did"=>$did)));
|
||||
$conn->close();
|
||||
return array($aid,$sIdKey[0],$sIdKey[1]);
|
||||
}else{
|
||||
loger($conn,"app-create","failed",$ts,"info",json_encode(array("did"=>$did)));
|
||||
$conn->close();
|
||||
return false;
|
||||
}
|
||||
}
|
||||
//移除APP
|
||||
function remove($aid){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//创建数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
//判断是否存在
|
||||
if($this->checkExistAid($aid)){
|
||||
//删除APP
|
||||
$sql=$conn->prepare("DELETE FROM `apps` WHERE `aid`=?");
|
||||
$sql->bind_param('i',$aid);
|
||||
$sql->execute();
|
||||
loger($conn,"app-remove","success",$ts,"info",json_encode(array("did"=>$rDid)));
|
||||
$conn->close();
|
||||
return true;
|
||||
}else{
|
||||
loger($conn,"app-remove","failed",$ts,"info",json_encode(array("did"=>$rDid)));
|
||||
$conn->close();
|
||||
return false;
|
||||
}
|
||||
}
|
||||
function giveToken($sId,$sKey){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//创建数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
if($this->checkRight($sId,$sKey)){
|
||||
//获取APP的全局ID
|
||||
$id=$this->getIdSId($sId);
|
||||
//检测Token是否已经存在
|
||||
$sql=$conn->prepare("SELECT `value`,`createTime`,`renewal` FROM `tokens` WHERE `id`=?");
|
||||
$sql->bind_param('i',$id);
|
||||
$sql->execute();
|
||||
$sql->bind_result($value,$createTime,$renewal);
|
||||
while($sql->fetch()){
|
||||
$rValue=$value;
|
||||
$rCreateTime=$createTime;
|
||||
$rRenewal=$renewal;
|
||||
}
|
||||
if($rValue=="" || (($ts-$rCreateTime)>604800 && $rRenewal=="") || (($ts-$rCreateTime)>1209600 && $rRenewal=="true")){
|
||||
$hash=new hash;
|
||||
//计算Token
|
||||
$token=$hash->generateToken($sId+$sKey);
|
||||
$sql=$conn->prepare("INSERT INTO `tokens`(`tid`, `type`, `createTime`, `renewal`, `id`, `value`)
|
||||
VALUES (NULL,'app',?,NULL,?,?)");
|
||||
$sql->bind_param('iis',$ts,$id,$token);
|
||||
$sql->execute();
|
||||
loger($conn,"app-giveToken","success",$ts,"info",json_encode(array("sid"=>$sId)));
|
||||
$conn->close();
|
||||
return $token;
|
||||
}else{
|
||||
loger($conn,"app-giveToken","failed",$ts,"info",json_encode(array("sid"=>$sId)));
|
||||
$conn->close();
|
||||
return $rValue;
|
||||
}
|
||||
}else{
|
||||
loger($conn,"app-giveToken","failed",$ts,"info",json_encode(array("email"=>$email)));
|
||||
return false;
|
||||
}
|
||||
}
|
||||
//销毁Token
|
||||
function destroyToken($token){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//创建数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
if($this->checkToken($token)){
|
||||
$sql=$conn->prepare("UPDATE `tokens` SET `destroy`=\"true\" WHERE `value`=?");
|
||||
$sql->bind_param('s',$token);
|
||||
$sql->execute();
|
||||
loger($conn,"app-destroyToken","success",$ts,"info",json_encode(array("token"=>$token)));
|
||||
$conn->close();
|
||||
return true;
|
||||
}else{
|
||||
loger($conn,"app-destroyToken","failed",$ts,"info",json_encode(array("token"=>$token)));
|
||||
$conn->close();
|
||||
return false;
|
||||
}
|
||||
}
|
||||
//检测Token是否有效
|
||||
function checkToken($token){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//创建数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
//获取Token
|
||||
$sql=$conn->prepare("SELECT createTime,renewal,destroy FROM `tokens` WHERE `value`=?");
|
||||
$sql->bind_param('s',$token);
|
||||
$sql->execute();
|
||||
$sql->bind_result($createTime,$renewal,$destroy);
|
||||
while($sql->fetch()){
|
||||
$rCreateTime=$createTime;
|
||||
$rRenewal=$renewal;
|
||||
$rDestroy=$destroy;
|
||||
}
|
||||
//判断Token时效
|
||||
if((($ts-$rCreateTime)>604800 && $rRenewal=="") || (($ts-$rCreateTime)>1209600 && $rRenewal=="true") || ($rDestroy=="true")){
|
||||
loger($conn,"app-checkToken","success",$ts,"info",json_encode(array("token"=>$token)));
|
||||
$conn->close();
|
||||
return false;
|
||||
}else{
|
||||
loger($conn,"app-checkToken","success",$ts,"info",json_encode(array("token"=>$token)));
|
||||
$conn->close();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
//移除开发者所有APP
|
||||
function removeForDeve($did){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//创建数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
//删除APP
|
||||
$sql=$conn->prepare("DELETE FROM `apps` WHERE `did`=?");
|
||||
$sql->bind_param('i',$did);
|
||||
$sql->execute();
|
||||
loger($conn,"app-removeForDeve","success",$ts,"info",json_encode(array("did"=>$did)));
|
||||
$conn->close();
|
||||
return true;
|
||||
}
|
||||
//使用Token获取Aid
|
||||
function getAidToken($token){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//创建数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
//检测Token是否已经存在
|
||||
if($this->checkToken($token)){
|
||||
$sql=$conn->prepare("SELECT `id` FROM `tokens` WHERE `value`=?");
|
||||
$sql->bind_param('s',$token);
|
||||
$sql->execute();
|
||||
$sql->bind_result($id);
|
||||
while($sql->fetch()){
|
||||
$rId=$id;
|
||||
}
|
||||
$aid=$this->getAidId($rId);
|
||||
return $aid;
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
//使用全局ID获取APP的Aid
|
||||
function getAidId($id){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//创建数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
$sql=$conn->prepare("SELECT aid FROM `apps` WHERE `id`=?");
|
||||
$sql->bind_param('i',$id);
|
||||
$sql->execute();
|
||||
$sql->bind_result($aid);
|
||||
while($sql->fetch()){
|
||||
$rAid=$aid;
|
||||
}
|
||||
loger($conn,"app-getIdAid","success",$ts,"info",json_encode(array("id"=>$id)));
|
||||
$conn->close();
|
||||
return $rAid;
|
||||
}
|
||||
//使用sId获取APP的全局ID
|
||||
function getIdSId($sId){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//创建数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
$sql=$conn->prepare("SELECT id FROM `apps` WHERE `sid`=?");
|
||||
$sql->bind_param('i',$sId);
|
||||
$sql->execute();
|
||||
$sql->bind_result($id);
|
||||
while($sql->fetch()){
|
||||
$rId=$id;
|
||||
}
|
||||
loger($conn,"app-getIdSId","success",$ts,"info",json_encode(array("sid"=>$sId)));
|
||||
$conn->close();
|
||||
return $rId;
|
||||
}
|
||||
//使用APP ID检查APP是否存在
|
||||
function checkExistAid($aid){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//创建数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
$sql=$conn->prepare("SELECT name FROM `apps` WHERE `aid`=?");
|
||||
$sql->bind_param('i',$aid);
|
||||
$sql->execute();
|
||||
$sql->bind_result($name);
|
||||
while($sql->fetch()){
|
||||
$rName=$name;
|
||||
}
|
||||
loger($conn,"app-checkExistAid","success",$ts,"info",json_encode(array("aid"=>$aid)));
|
||||
if($rName==""){
|
||||
$conn->close();
|
||||
return false;
|
||||
}else{
|
||||
$conn->close();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
//检查APP是否已经存在或者重名
|
||||
function checkExist($name){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//创建数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
$sql=$conn->prepare("SELECT aid FROM `apps` WHERE `name`=?");
|
||||
$sql->bind_param('s',$name);
|
||||
$sql->execute();
|
||||
$sql->bind_result($aid);
|
||||
while($sql->fetch()){
|
||||
$rAid=$aid;
|
||||
}
|
||||
loger($conn,"app-checkExist","success",$ts,"info",json_encode(array("name"=>$name)));
|
||||
if($rAid==""){
|
||||
$conn->close();
|
||||
return false;
|
||||
}else{
|
||||
$conn->close();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
//检查APP信息是否正确
|
||||
function checkRight($sId,$sKey){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//创建数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
$sql=$conn->prepare("SELECT skey FROM `apps` WHERE `sid`=?");
|
||||
$sql->bind_param('s',$sId);
|
||||
$sql->execute();
|
||||
$sql->bind_result($sKey);
|
||||
while($sql->fetch()){
|
||||
$rSKey=$sKey;
|
||||
}
|
||||
loger($conn,"app-checkRight","success",$ts,"info",json_encode(array("sid"=>$sId)));
|
||||
if($sKey==$rSKey){
|
||||
$conn->close();
|
||||
return true;
|
||||
}else{
|
||||
$conn->close();
|
||||
return false;
|
||||
}
|
||||
}
|
||||
//检查应用权限级别
|
||||
function checkLevel($aid){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//创建数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
$sql=$conn->prepare("SELECT ownerId FROM `apps` WHERE `aid`=?");
|
||||
$sql->bind_param('i',$aid);
|
||||
$sql->execute();
|
||||
$sql->bind_result($ownerId);
|
||||
while($sql->fetch()){
|
||||
$rOwnerId=$ownerId;
|
||||
}
|
||||
$deve=new developer;
|
||||
loger($conn,"app-checkLevel","success",$ts,"info",json_encode(array("aid"=>$aid)));
|
||||
$conn->close();
|
||||
return $deve->checkLevel($rOwnerId);
|
||||
}
|
||||
}
|
314
user_center/libraries/auth.php
Normal file
314
user_center/libraries/auth.php
Normal file
@ -0,0 +1,314 @@
|
||||
<?php
|
||||
/*
|
||||
Copyright GHINK Network Studio
|
||||
Author: Bigsk(https://www.xiaxinzhe.cn)
|
||||
*/
|
||||
if(!defined('IN_SYS')){//Defined entreance security.
|
||||
header('HTTP/1.1 403 Forbidden');
|
||||
exit(file_get_contents(setting::root."template/403.html"));
|
||||
}
|
||||
//百度大脑认证接口
|
||||
class baiduBrain{
|
||||
function __construct(){
|
||||
$this->getToken();
|
||||
}
|
||||
//请求TOKEN
|
||||
function getToken(){
|
||||
$jsonData=array("grant_type"=>"client_credentials",
|
||||
"client_id"=>setting::baiduCloud[0],
|
||||
"client_secret"=>setting::baiduCloud[1]);
|
||||
$this->token=json_decode(sendPost("https://aip.baidubce.com/oauth/2.0/token",$jsonData),true)["access_token"];
|
||||
}
|
||||
//生成验证TOKEN
|
||||
function getVeriToken(){
|
||||
$options=array(
|
||||
'http' => array(
|
||||
'method' => 'POST',
|
||||
'header' => 'Content-type:application/json',
|
||||
'content' => '{"plan_id":"'.setting::baiduAuthPlanId.'"}',
|
||||
'timeout' => 15*60
|
||||
)
|
||||
);
|
||||
$context=stream_context_create($options);
|
||||
$result=file_get_contents("https://aip.baidubce.com/rpc/2.0/brain/solution/faceprint/verifyToken/generate?access_token=".$this->token,false,$context);
|
||||
$result=json_decode($result,true);
|
||||
if($result["success"]){
|
||||
return $result["result"]["verify_token"];
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
//取回验证结果
|
||||
function getBack($veriToken){
|
||||
$options=array(
|
||||
'http' => array(
|
||||
'method' => 'POST',
|
||||
'header' => 'Content-type:application/json',
|
||||
'content' => '{"verify_token":"'.$veriToken.'"}',
|
||||
'timeout' => 15*60
|
||||
)
|
||||
);
|
||||
$context=stream_context_create($options);
|
||||
$result=file_get_contents("https://aip.baidubce.com/rpc/2.0/brain/solution/faceprint/result/detail?access_token=".$this->token,false,$context);
|
||||
$result=json_decode($result,true);
|
||||
if($result["success"]){
|
||||
return $result["result"];
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
//实名认证接口
|
||||
class realNameAuth{
|
||||
//创建实名认证任务
|
||||
function create($uid){
|
||||
$brain=new baiduBrain;
|
||||
$task=new task;
|
||||
$veriToken=$brain->getVeriToken();
|
||||
if($veriToken==false){
|
||||
return false;
|
||||
}else{
|
||||
$tid=$task->createAuth($veriToken,$uid);
|
||||
if($tid==false){
|
||||
return false;
|
||||
}else{
|
||||
$result=$this->makeUrl($veriToken,$tid);
|
||||
return $result;
|
||||
}
|
||||
}
|
||||
}
|
||||
//构造实名认证URL
|
||||
function makeUrl($veriToken,$tid){
|
||||
$url="https://brain.baidu.com/face/print/?token=".urlencode($veriToken)."&successUrl=".urlencode("https://center.ghink.net/v1/interface/oauth.php?type=authBack&tid=".$tid)."&failedUrl=https://center.ghink.net/v1/interface/oauth.php?type=authFailed";
|
||||
return $url;
|
||||
}
|
||||
//取回实名认证结果
|
||||
function getResult($tid){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
$task=new task;
|
||||
$brain=new baiduBrain;
|
||||
$result=$task->getBackAuth($tid);
|
||||
if($result==false){
|
||||
return false;
|
||||
}else{
|
||||
$veriToken=$result[1];
|
||||
$uid=$result[0];
|
||||
$result=$brain->getBack($veriToken);
|
||||
$result=json_encode($result);
|
||||
//记录数据库
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
loger($conn,"realNameAuth-getResult","success",$ts,"info",json_encode(array("tid"=>$tid)));
|
||||
//录入数据库
|
||||
$sql=$conn->prepare("UPDATE `userInfoCN` SET `idCradInfo`=? WHERE `uid`=?");
|
||||
$sql->bind_param('si',$result,$uid);
|
||||
$sql->execute();
|
||||
$json=json_decode($result);
|
||||
$name=$json->idcard_confirm->name;
|
||||
$brithday=date('Ymd',strtotime($json->idcard_ocr_result->birthday));
|
||||
$sex=$json->idcard_ocr_result->gender;
|
||||
$sql=$conn->prepare("UPDATE `userInfoCN` SET `name`=?,`brithday`=?,`sex`=? WHERE `uid`=?");
|
||||
$sql->bind_param('sssi',$name,$brithday,$sex,$uid);
|
||||
$sql->execute();
|
||||
$conn->close();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
//检查某个用户是否已经实名
|
||||
function check($uid){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//数据库链接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
$sql=$conn->prepare("SELECT idCradInfo FROM `userInfoCN` WHERE `uid`=?");
|
||||
$sql->bind_param('i',$uid);
|
||||
$sql->execute();
|
||||
$sql->bind_result($idCardInfo);
|
||||
while($sql->fetch()){
|
||||
$rIdCradInfo=$idCardInfo;
|
||||
}
|
||||
if($rIdCradInfo!=""){
|
||||
$json=json_decode($rIdCradInfo,true);
|
||||
$expire=strtotime($json["idcard_ocr_result"]["expire_time"]);
|
||||
$issue=strtotime($json["idcard_ocr_result"]["issue_time"]);
|
||||
if($ts<$expire && $ts>$issue){
|
||||
return true;
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
//读取实名认证数据
|
||||
function readData($uid){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//数据库链接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
$sql=$conn->prepare("SELECT idCradInfo FROM `userInfoCN` WHERE `uid`=?");
|
||||
$sql->bind_param('i',$uid);
|
||||
$sql->execute();
|
||||
$sql->bind_result($idCardInfo);
|
||||
while($sql->fetch()){
|
||||
$rIdCradInfo=$idCardInfo;
|
||||
}
|
||||
if($rIdCradInfo!=""){
|
||||
return $rIdCradInfo;
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
//邮件验证
|
||||
class mail{
|
||||
//登陆地区警告函数
|
||||
function sendWarn($email,$area,$lastArea){
|
||||
$user=new user;
|
||||
$name=$user->getName($email);
|
||||
$uArea=$user->getArea($email);
|
||||
if($uArea=="china"){
|
||||
$title="极科通行证异地登录告警";
|
||||
$body=str_replace("{{lastArea}}",$lastArea,file_get_contents(setting::root."template/logWarn/zh_CN.html"));
|
||||
$body=str_replace("{{area}}",$area,$body);
|
||||
$body=str_replace("{{name}}",$name,$body);
|
||||
}else{
|
||||
$title="Ghink Passport Different places Log Warn";
|
||||
$body=str_replace("{{lastArea}}",$lastArea,file_get_contents(setting::root."template/logWarn/en_US.html"));
|
||||
$body=str_replace("{{area}}",$area,$body);
|
||||
$body=str_replace("{{name}}",$name,$body);
|
||||
}
|
||||
$this->send($email,$title,$body);
|
||||
}
|
||||
//注册邮件核验函数
|
||||
function checkReg($email,$tid,$code){
|
||||
//获取时间戳
|
||||
$ts=time();
|
||||
//数据库链接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
//请求核验信息
|
||||
$sql=$conn->prepare("SELECT content FROM `tasks` WHERE `tid`=?");
|
||||
$sql->bind_param('s',$tid);
|
||||
$sql->execute();
|
||||
$sql->bind_result($content);
|
||||
while($sql->fetch()){
|
||||
$rContent=$content;
|
||||
}
|
||||
//判断是否存在
|
||||
if($rContent==""){
|
||||
loger($conn,"check-reg","success",$ts,"info",json_encode(array("email"=>$email)));
|
||||
$conn->close();
|
||||
return false;
|
||||
}
|
||||
//json解码
|
||||
$content=json_decode($rContent);
|
||||
//合法性判断
|
||||
if($content[0]==$code && $content[1]==$email){
|
||||
//获取已使用的全局id数
|
||||
$sql=$conn->prepare("SELECT idUsed FROM `system` WHERE 1");
|
||||
$sql->execute();
|
||||
$sql->bind_result($idUsed);
|
||||
while($sql->fetch()){
|
||||
$rIdUsed=$idUsed;
|
||||
}
|
||||
$id=$rIdUsed+1;
|
||||
//更新全局id数
|
||||
$sql=$conn->prepare("UPDATE `system` SET `idUsed`=? WHERE 1");
|
||||
$sql->bind_param('i',$id);
|
||||
$sql->execute();
|
||||
//核销处理记录
|
||||
$sql=$conn->prepare("UPDATE `tasks` SET `content`=\"done\" WHERE `tid`=?");
|
||||
$sql->bind_param('i',$tid);
|
||||
$sql->execute();
|
||||
//记录用户信息
|
||||
$sql=$conn->prepare(
|
||||
"INSERT INTO users(id,uid,name,pass,email,ban,area,regTime,logTime,regIP,logIP)
|
||||
VALUES(?,NULL,?,?,?,'false',?,?,?,?,?)");
|
||||
$sql->bind_param('issssiiss',$id,$content[2],$content[3],$email,$content[4],$ts,$ts,$content[5],$content[5]);
|
||||
$sql->execute();
|
||||
$uid=mysqli_insert_id($conn);
|
||||
if($content[4]=="china"){
|
||||
$sql=$conn->prepare(
|
||||
"INSERT INTO `userInfoCN`(`uid`)
|
||||
VALUES (?)");
|
||||
$sql->bind_param('i',$uid);
|
||||
$sql->execute();
|
||||
}else{
|
||||
$sql=$conn->prepare(
|
||||
"INSERT INTO `userInfoGL`(`uid`)
|
||||
VALUES (?)");
|
||||
$sql->bind_param('i',$uid);
|
||||
$sql->execute();
|
||||
}
|
||||
loger($conn,"check-reg","success",$ts,"info",json_encode(array("tid"=>$tid)));
|
||||
$conn->close();
|
||||
return true;
|
||||
}
|
||||
loger($conn,"check-reg","failed",$ts,"info",json_encode(array("tid"=>$tid)));
|
||||
$conn->close();
|
||||
return false;
|
||||
}
|
||||
//注册邮件发送函数
|
||||
function sendReg($email,$name,$pass,$area,$ip){
|
||||
//获取时间戳
|
||||
$ts=time();
|
||||
//数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
//检查是否已经存在
|
||||
$sql=$conn->prepare("SELECT content FROM `tasks` WHERE `content` REGEXP ?");
|
||||
$sql->bind_param('s',$email);
|
||||
$sql->execute();
|
||||
$sql->bind_result($content);
|
||||
while($sql->fetch()){
|
||||
$rContent=$content;
|
||||
}
|
||||
loger($conn,"mail-sendReg","success",$ts,"info",json_encode(array("email"=>$email)));
|
||||
if($rContent==""){
|
||||
//实例化对象
|
||||
$tsk=new task;
|
||||
$hash=new hash;
|
||||
$pass=$hash->generatePass($pass);
|
||||
$result=$tsk->create("reg",$email,$name,$pass,$area,$ip);
|
||||
//URL拼接
|
||||
$url=setting::url."/v1/interface/oauth.php?type=regMailCheck&tid=".$result[0]."&email=".$email."&code=".$result[1];
|
||||
//区域判断与邮件发送
|
||||
if($area=="china"){
|
||||
$title="极科通行证注册验证邮件";
|
||||
$body=str_replace("{{link}}",$url,file_get_contents(setting::root."template/regMail/zh_CN.html"));
|
||||
}else{
|
||||
$title="Reg Ghink Passport";
|
||||
$body=str_replace("{{link}}",$url,file_get_contents(setting::root."template/regMail/zh_CN.html"));
|
||||
}
|
||||
$this->send($email,$title,$body);
|
||||
$conn->close();
|
||||
return true;
|
||||
}else{
|
||||
$conn->close();
|
||||
return false;
|
||||
}
|
||||
}
|
||||
//邮件发送便利化函数
|
||||
function send($mailto, $mailsub, $mailbd){
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
$smtpserver="smtp.exmail.qq.com";
|
||||
$smtpserverport=25;
|
||||
$smtpusermail="system@ghink.net";
|
||||
$smtpemailto=$mailto;
|
||||
$smtpuser="system@ghink.net";
|
||||
$smtppass="GkNet2014";
|
||||
$mailsubject=$mailsub;
|
||||
$mailsubject="=?UTF-8?B?".base64_encode($mailsubject)."?=";
|
||||
$mailbody=$mailbd;
|
||||
//$mailbody="=?UTF-8?B?".base64_encode($mailbody)."?=";
|
||||
$mailtype="HTML";
|
||||
$smtp=new smtp($smtpserver, $smtpserverport, true, $smtpuser, $smtppass);
|
||||
$smtp->debug=false;
|
||||
$smtp->sendmail($smtpemailto, $smtpusermail, $mailsubject, $mailbody, $mailtype);
|
||||
if($smtp->log_file==""){
|
||||
loger($conn,"mail-send","success",$ts,"info",json_encode(array("mailto"=>$mailto)));
|
||||
}else{
|
||||
loger($conn,"mail-send","failed",$ts,"error",json_encode(array("mailto"=>$mailto,"smtpLog"=>$smtp->log_file)));
|
||||
}
|
||||
$conn->close();
|
||||
}
|
||||
}
|
17
user_center/libraries/database.php
Normal file
17
user_center/libraries/database.php
Normal file
@ -0,0 +1,17 @@
|
||||
<?php
|
||||
/*
|
||||
Copyright GHINK Network Studio
|
||||
Author: Bigsk(https://www.xiaxinzhe.cn)
|
||||
*/
|
||||
if(!defined('IN_SYS')){//Defined entreance security.
|
||||
header('HTTP/1.1 403 Forbidden');
|
||||
exit(file_get_contents(setting::root."template/403.html"));
|
||||
}
|
||||
//全局数据库类
|
||||
class database{
|
||||
//定义数据库信息
|
||||
const addr="127.0.0.1";
|
||||
const user="center";
|
||||
const pass="Ghink@2014";
|
||||
const name="center";
|
||||
}
|
18
user_center/libraries/entrance.php
Normal file
18
user_center/libraries/entrance.php
Normal file
@ -0,0 +1,18 @@
|
||||
<?php
|
||||
/*
|
||||
Copyright GHINK Network Studio
|
||||
Author: Bigsk(https://www.xiaxinzhe.cn)
|
||||
*/
|
||||
|
||||
define(('IN_SYS'),true);//Defined entreance security.
|
||||
include("app.php");
|
||||
include("auth.php");
|
||||
include("database.php");
|
||||
include("hash.php");
|
||||
include("log.php");
|
||||
include("mail.php");
|
||||
include("setting.php");
|
||||
include("task.php");
|
||||
include("user.php");
|
||||
include("ip.php");
|
||||
include("post.php");
|
45
user_center/libraries/hash.php
Normal file
45
user_center/libraries/hash.php
Normal file
@ -0,0 +1,45 @@
|
||||
<?php
|
||||
/*
|
||||
Copyright GHINK Network Studio
|
||||
Author: Bigsk(https://www.xiaxinzhe.cn)
|
||||
*/
|
||||
error_reporting(0);
|
||||
if(!defined('IN_SYS')){//Defined entreance security.
|
||||
header('HTTP/1.1 403 Forbidden');
|
||||
exit(file_get_contents(setting::root."template/403.html"));
|
||||
}
|
||||
//哈希库
|
||||
class hash{
|
||||
//MD5计算,用于接口对接的预留
|
||||
function cryptMD5($disencrypted){
|
||||
return md5($disencrypted);
|
||||
}
|
||||
//密码生成算法,非时效性
|
||||
function generatePass($pass){
|
||||
for ($i=0;$i<=strlen($pass);$i++){
|
||||
$pass=$this->cryptMD5($pass);
|
||||
}
|
||||
return $pass;
|
||||
}
|
||||
//Token生成算法,时效性
|
||||
function generateToken($value){
|
||||
$time=time();
|
||||
for ($i=0;$i<=strlen($value);$i++){
|
||||
$result=$result+$this->cryptMd5($value)+$time;
|
||||
}
|
||||
return $this->cryptMd5($result);
|
||||
}
|
||||
//sId与sKey生成算法,唯一性
|
||||
function generateSIdKey($name){
|
||||
$time=time();
|
||||
for ($i=0;$i<=strlen($name);$i++){
|
||||
@$result=$result+$name+$this->cryptMd5($name)+$time;
|
||||
}
|
||||
$sId=$this->cryptMd5($result);
|
||||
for ($i=0;$i<=strlen($name);$i++){
|
||||
@$result=$result+$time+$this->cryptMd5($name)+$name;
|
||||
}
|
||||
$sKey=$this->cryptMd5($result);
|
||||
return array($sId,$sKey);
|
||||
}
|
||||
}
|
62
user_center/libraries/ip.php
Normal file
62
user_center/libraries/ip.php
Normal file
@ -0,0 +1,62 @@
|
||||
<?php
|
||||
/*
|
||||
Copyright GHINK Network Studio
|
||||
Author: Bigsk(https://www.xiaxinzhe.cn)
|
||||
*/
|
||||
if(!defined('IN_SYS')){//Defined entreance security.
|
||||
header('HTTP/1.1 403 Forbidden');
|
||||
exit(file_get_contents(setting::root."template/403.html"));
|
||||
}
|
||||
//全局IP处理
|
||||
class ip{
|
||||
//真实IP获取
|
||||
function getReal(){
|
||||
if (getenv("HTTP_CLIENT_IP"))
|
||||
$ip=getenv("HTTP_CLIENT_IP");
|
||||
else if(getenv("HTTP_X_FORWARDED_FOR"))
|
||||
$ip=getenv("HTTP_X_FORWARDED_FOR");
|
||||
else if(getenv("REMOTE_ADDR"))
|
||||
$ip=getenv("REMOTE_ADDR");
|
||||
else
|
||||
$ip=false;
|
||||
return $ip;
|
||||
}
|
||||
//获取最后登录/请求ip
|
||||
function getLast($id){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//创建数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
//获取数据库返回值
|
||||
$sql=$conn->prepare("SELECT logIP FROM `users` WHERE `id`=?");
|
||||
$sql->bind_param('s',$id);
|
||||
$sql->execute();
|
||||
$sql->bind_result($logIP);
|
||||
while($sql->fetch()){
|
||||
$rLogIP=$logIP;
|
||||
}
|
||||
//非用户
|
||||
if($rLogIP==""){
|
||||
$sql=$conn->prepare("SELECT lastIP FROM `apps` WHERE `id`=?");
|
||||
$sql->bind_param('s',$id);
|
||||
$sql->execute();
|
||||
$sql->bind_result($lastIP);
|
||||
while($sql->fetch()){
|
||||
$rLastIP=$lastIP;
|
||||
}
|
||||
if($rLastIP==""){
|
||||
loger($conn,"user-getLast","success",$ts,"info",$id);
|
||||
$conn->close();
|
||||
return false;
|
||||
}else{
|
||||
loger($conn,"user-getLast","success",$ts,"info",$id);
|
||||
$conn->close();
|
||||
return $rLastIP;
|
||||
}
|
||||
}else{
|
||||
loger($conn,"user-getLast","success",$ts,"info",$id);
|
||||
$conn->close();
|
||||
return $logIP;
|
||||
}
|
||||
}
|
||||
}
|
15
user_center/libraries/log.php
Normal file
15
user_center/libraries/log.php
Normal file
@ -0,0 +1,15 @@
|
||||
<?php
|
||||
/*
|
||||
Copyright GHINK Network Studio
|
||||
Author: Bigsk(https://www.xiaxinzhe.cn)
|
||||
*/
|
||||
if(!defined('IN_SYS')){//Defined entreance security.
|
||||
header('HTTP/1.1 403 Forbidden');
|
||||
exit(file_get_contents(setting::root."template/403.html"));
|
||||
}
|
||||
//日志记录
|
||||
function loger($conn,$name,$status,$ts,$type,$info){
|
||||
$sql=$conn->prepare("INSERT INTO `logs` VALUES (NULL,?,?,?,0,?,?)");
|
||||
$sql->bind_param('ssiss',$name,$status,$ts,$type,$info);
|
||||
$sql->execute();
|
||||
}
|
261
user_center/libraries/mail.php
Normal file
261
user_center/libraries/mail.php
Normal file
@ -0,0 +1,261 @@
|
||||
<?php
|
||||
/*
|
||||
Copyright GHINK Network Studio
|
||||
Author: Bigsk(https://www.xiaxinzhe.cn)
|
||||
*/
|
||||
if(!defined('IN_SYS')){//Defined entreance security.
|
||||
header('HTTP/1.1 403 Forbidden');
|
||||
exit(file_get_contents(setting::root."template/403.html"));
|
||||
}
|
||||
//邮件发送函数
|
||||
class smtp{
|
||||
var $smtp_port;
|
||||
var $time_out;
|
||||
var $host_name;
|
||||
var $log_file;
|
||||
var $relay_host;
|
||||
var $debug;
|
||||
var $auth;
|
||||
var $user;
|
||||
var $pass;
|
||||
var $sock;
|
||||
function __construct($relay_host="", $smtp_port=25, $auth=false, $user, $pass){
|
||||
$this->debug=FALSE;
|
||||
$this->smtp_port=$smtp_port;
|
||||
$this->relay_host=$relay_host;
|
||||
$this->time_out=30;
|
||||
$this->auth=$auth;
|
||||
$this->user=$user;
|
||||
$this->pass=$pass;
|
||||
$this->host_name="localhost";
|
||||
$this->log_file="";
|
||||
$this->sock=FALSE;
|
||||
}
|
||||
function sendmail($to, $from, $subject="", $body="", $mailtype, $cc="", $bcc="", $additional_headers=""){
|
||||
$header="";
|
||||
$mail_from=$this->get_address($this->strip_comment($from));
|
||||
$body=mb_ereg_replace("(^|(\r\n))(\\.)", "\\1.\\3", $body);
|
||||
$header .="MIME-Version:1.0\r\n";
|
||||
if ($mailtype=="HTML") {
|
||||
$header .='Content-type: text/html; charset=utf-8'."\r\n";
|
||||
}
|
||||
$header .="To: ".$to."\r\n";
|
||||
if ($cc !="") {
|
||||
$header .="Cc: ".$cc."\r\n";
|
||||
}
|
||||
$header .="From: ".$from."\r\n";
|
||||
$header .="Subject: ".$subject."\r\n";
|
||||
$header .=$additional_headers;
|
||||
$header .="Date: ".date("r")."\r\n";
|
||||
$header .="X-Mailer:By (PHP/".phpversion().")\r\n";
|
||||
list($msec, $sec)=explode(" ", microtime());
|
||||
$header .="Message-ID: <".date("YmdHis", $sec).".".($msec * 1000000).".".$mail_from.">\r\n";
|
||||
$TO=explode(",", $this->strip_comment($to));
|
||||
if ($cc !="") {
|
||||
$TO=array_merge($TO, explode(",", $this->strip_comment($cc)));
|
||||
}
|
||||
if ($bcc !="") {
|
||||
$TO=array_merge($TO, explode(",", $this->strip_comment($bcc)));
|
||||
}
|
||||
$sent=TRUE;
|
||||
foreach ($TO as $rcpt_to) {
|
||||
$rcpt_to=$this->get_address($rcpt_to);
|
||||
if (!$this->smtp_sockopen($rcpt_to)) {
|
||||
$this->log_write("Error: Cannot send email to ".$rcpt_to."\n");
|
||||
$sent=FALSE;
|
||||
continue;
|
||||
}
|
||||
if ($this->smtp_send($this->host_name, $mail_from, $rcpt_to, $header, $body)) {
|
||||
$this->log_write("E-mail has been sent to <".$rcpt_to.">\n");
|
||||
}else{
|
||||
$this->log_write("Error: Cannot send email to <".$rcpt_to.">\n");
|
||||
$sent=FALSE;
|
||||
}
|
||||
fclose($this->sock);
|
||||
$this->log_write("Disconnected from remote host\n");
|
||||
}
|
||||
echo "<br>";
|
||||
return $sent;
|
||||
}
|
||||
function smtp_send($helo, $from, $to, $header, $body=""){
|
||||
if (!$this->smtp_putcmd("HELO", $helo)) {
|
||||
return $this->smtp_error("sending HELO command");
|
||||
}
|
||||
if ($this->auth) {
|
||||
if (!$this->smtp_putcmd("AUTH LOGIN", base64_encode($this->user))) {
|
||||
return $this->smtp_error("sending HELO command");
|
||||
}
|
||||
if (!$this->smtp_putcmd("", base64_encode($this->pass))) {
|
||||
return $this->smtp_error("sending HELO command");
|
||||
}
|
||||
}
|
||||
#
|
||||
if (!$this->smtp_putcmd("MAIL", "FROM:<".$from.">")) {
|
||||
return $this->smtp_error("sending MAIL FROM command");
|
||||
}
|
||||
if (!$this->smtp_putcmd("RCPT", "TO:<".$to.">")) {
|
||||
return $this->smtp_error("sending RCPT TO command");
|
||||
}
|
||||
if (!$this->smtp_putcmd("DATA")) {
|
||||
return $this->smtp_error("sending DATA command");
|
||||
}
|
||||
if (!$this->smtp_message($header, $body)) {
|
||||
return $this->smtp_error("sending message");
|
||||
}
|
||||
if (!$this->smtp_eom()) {
|
||||
return $this->smtp_error("sending <CR><LF>.<CR><LF> [EOM]");
|
||||
}
|
||||
if (!$this->smtp_putcmd("QUIT")) {
|
||||
return $this->smtp_error("sending QUIT command");
|
||||
}
|
||||
return TRUE;
|
||||
}
|
||||
function smtp_sockopen($address){
|
||||
if ($this->relay_host=="") {
|
||||
return $this->smtp_sockopen_mx($address);
|
||||
}else{
|
||||
return $this->smtp_sockopen_relay();
|
||||
}
|
||||
}
|
||||
function smtp_sockopen_relay(){
|
||||
$this->log_write("Trying to ".$this->relay_host.":".$this->smtp_port."\n");
|
||||
$this->sock=@fsockopen($this->relay_host, $this->smtp_port, $errno, $errstr, $this->time_out);
|
||||
if (!($this->sock && $this->smtp_ok())) {
|
||||
$this->log_write("Error: Cannot connenct to relay host ".$this->relay_host."\n");
|
||||
$this->log_write("Error: ".$errstr." (".$errno.")\n");
|
||||
return FALSE;
|
||||
}
|
||||
$this->log_write("Connected to relay host ".$this->relay_host."\n");
|
||||
return TRUE;
|
||||
;
|
||||
}
|
||||
function smtp_sockopen_mx($address){
|
||||
$domain=ereg_replace("^.+@([^@]+)$", "\\1", $address);
|
||||
if (!@getmxrr($domain, $MXHOSTS)) {
|
||||
$this->log_write("Error: Cannot resolve MX \"".$domain."\"\n");
|
||||
return FALSE;
|
||||
}
|
||||
foreach ($MXHOSTS as $host) {
|
||||
$this->log_write("Trying to ".$host.":".$this->smtp_port."\n");
|
||||
$this->sock=@fsockopen($host, $this->smtp_port, $errno, $errstr, $this->time_out);
|
||||
if (!($this->sock && $this->smtp_ok())) {
|
||||
$this->log_write("Warning: Cannot connect to mx host ".$host."\n");
|
||||
$this->log_write("Error: ".$errstr." (".$errno.")\n");
|
||||
continue;
|
||||
}
|
||||
$this->log_write("Connected to mx host ".$host."\n");
|
||||
return TRUE;
|
||||
}
|
||||
$this->log_write("Error: Cannot connect to any mx hosts (".implode(", ", $MXHOSTS).")\n");
|
||||
return FALSE;
|
||||
}
|
||||
function smtp_message($header, $body){
|
||||
fputs($this->sock, $header."\r\n".$body);
|
||||
$this->smtp_debug("> ".str_replace("\r\n", "\n"."> ", $header."\n> ".$body."\n> "));
|
||||
return TRUE;
|
||||
}
|
||||
function smtp_eom(){
|
||||
fputs($this->sock, "\r\n.\r\n");
|
||||
$this->smtp_debug(". [EOM]\n");
|
||||
return $this->smtp_ok();
|
||||
}
|
||||
function smtp_ok(){
|
||||
$response=str_replace("\r\n", "", fgets($this->sock, 512));
|
||||
$this->smtp_debug($response."\n");
|
||||
if (!mb_ereg("^[23]", $response)) {
|
||||
fputs($this->sock, "QUIT\r\n");
|
||||
fgets($this->sock, 512);
|
||||
$this->log_write("Error: Remote host returned \"".$response."\"\n");
|
||||
return FALSE;
|
||||
}
|
||||
return TRUE;
|
||||
}
|
||||
function smtp_putcmd($cmd, $arg=""){
|
||||
if ($arg !="") {
|
||||
if ($cmd=="")
|
||||
$cmd=$arg;
|
||||
else
|
||||
$cmd=$cmd." ".$arg;
|
||||
}
|
||||
fputs($this->sock, $cmd."\r\n");
|
||||
$this->smtp_debug("> ".$cmd."\n");
|
||||
return $this->smtp_ok();
|
||||
}
|
||||
function smtp_error($string){
|
||||
$this->log_write("Error: Error occurred while ".$string.".\n");
|
||||
return FALSE;
|
||||
}
|
||||
function log_write($message){
|
||||
$this->smtp_debug($message);
|
||||
if ($this->log_file=="") {
|
||||
return TRUE;
|
||||
}
|
||||
$message=date("M d H:i:s ").get_current_user()."[".getmypid()."]: ".$message;
|
||||
if (!@file_exists($this->log_file) || !($fp=@fopen($this->log_file, "a"))) {
|
||||
$this->smtp_debug("Warning: Cannot open log file \"".$this->log_file."\"\n");
|
||||
return FALSE;
|
||||
}
|
||||
flock($fp, LOCK_EX);
|
||||
fputs($fp, $message);
|
||||
fclose($fp);
|
||||
return TRUE;
|
||||
}
|
||||
function strip_comment($address){
|
||||
$comment="\\([^()]*\\)";
|
||||
while (mb_ereg($comment, $address)) {
|
||||
$address=mb_ereg_replace($comment, "", $address);
|
||||
}
|
||||
return $address;
|
||||
}
|
||||
function get_address($address){
|
||||
$address=mb_ereg_replace("([ \t\r\n])+", "", $address);
|
||||
$address=mb_ereg_replace("^.*<(.+)>.*$", "\\1", $address);
|
||||
return $address;
|
||||
}
|
||||
function smtp_debug($message){
|
||||
if ($this->debug) {
|
||||
echo $message."<br>";
|
||||
}
|
||||
}
|
||||
function get_attach_type($image_tag){
|
||||
$filedata=array();
|
||||
$img_file_con=fopen($image_tag, "r");
|
||||
unset($image_data);
|
||||
while ($tem_buffer=AddSlashes(fread($img_file_con, filesize($image_tag))))
|
||||
$image_data .=$tem_buffer;
|
||||
fclose($img_file_con);
|
||||
$filedata['context']=$image_data;
|
||||
$filedata['filename']=basename($image_tag);
|
||||
$extension=substr($image_tag, strrpos($image_tag, "."), strlen($image_tag) - strrpos($image_tag, "."));
|
||||
switch ($extension) {
|
||||
case ".gif":
|
||||
$filedata['type']="image/gif";
|
||||
break;
|
||||
case ".gz":
|
||||
$filedata['type']="application/x-gzip";
|
||||
break;
|
||||
case ".htm":
|
||||
$filedata['type']="text/html";
|
||||
break;
|
||||
case ".html":
|
||||
$filedata['type']="text/html";
|
||||
break;
|
||||
case ".jpg":
|
||||
$filedata['type']="image/jpeg";
|
||||
break;
|
||||
case ".tar":
|
||||
$filedata['type']="application/x-tar";
|
||||
break;
|
||||
case ".txt":
|
||||
$filedata['type']="text/plain";
|
||||
break;
|
||||
case ".zip":
|
||||
$filedata['type']="application/zip";
|
||||
break;
|
||||
default:
|
||||
$filedata['type']="application/octet-stream";
|
||||
break;
|
||||
}
|
||||
return $filedata;
|
||||
}
|
||||
}
|
24
user_center/libraries/post.php
Normal file
24
user_center/libraries/post.php
Normal file
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
/*
|
||||
Copyright GHINK Network Studio
|
||||
Author: Bigsk(https://www.xiaxinzhe.cn)
|
||||
*/
|
||||
if(!defined('IN_SYS')){//Defined entreance security.
|
||||
header('HTTP/1.1 403 Forbidden');
|
||||
exit(file_get_contents(setting::root."template/403.html"));
|
||||
}
|
||||
|
||||
function sendPost($url, $post_data) {
|
||||
$postdata=http_build_query($post_data);
|
||||
$options=array(
|
||||
'http' => array(
|
||||
'method' => 'POST',
|
||||
'header' => 'Content-type:application/x-www-form-urlencoded',
|
||||
'content' => $postdata,
|
||||
'timeout' => 15*60
|
||||
)
|
||||
);
|
||||
$context=stream_context_create($options);
|
||||
$result=file_get_contents($url,false,$context);
|
||||
return $result;
|
||||
}
|
25
user_center/libraries/setting.php
Normal file
25
user_center/libraries/setting.php
Normal file
@ -0,0 +1,25 @@
|
||||
<?php
|
||||
/*
|
||||
Copyright GHINK Network Studio
|
||||
Author: Bigsk(https://www.xiaxinzhe.cn)
|
||||
*/
|
||||
if(!defined('IN_SYS')){//Defined entreance security.
|
||||
header('HTTP/1.1 403 Forbidden');
|
||||
exit(file_get_contents(setting::root."template/403.html"));
|
||||
}
|
||||
//全局设置信息
|
||||
class setting{
|
||||
const url="https://center.ghink.net";
|
||||
const root="/www/wwwroot/official/center/v1/";
|
||||
const domain="center.ghink.net";
|
||||
const baiduCloud=array("uAga4MeDGj9Cj6YNcQ1D8G3B","h0dGFWtHBlSKcTiPwjKm6x0oRlVkiRdV");
|
||||
const baiduAuthPlanId="12406";
|
||||
function initialization(){
|
||||
$db=new database;
|
||||
$db->reset();
|
||||
$dev=new developer;
|
||||
$did=$dev->create(1,"official");
|
||||
$app=new app;
|
||||
$app->create($did,"Ghink Application");
|
||||
}
|
||||
}
|
199
user_center/libraries/task.php
Normal file
199
user_center/libraries/task.php
Normal file
@ -0,0 +1,199 @@
|
||||
<?php
|
||||
/*
|
||||
Copyright GHINK Network Studio
|
||||
Author: Bigsk(https://www.xiaxinzhe.cn)
|
||||
*/
|
||||
if(!defined('IN_SYS')){//Defined entreance security.
|
||||
header('HTTP/1.1 403 Forbidden');
|
||||
exit(file_get_contents(setting::root."template/403.html"));
|
||||
}
|
||||
//全局时效任务管理
|
||||
class task{
|
||||
//创建任务
|
||||
function create($type,$email="",$name="",$pass="",$area="",$ip="",$token=""){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
$sql=$conn->prepare("INSERT INTO tasks
|
||||
(tid,type,createTime,invalidTime,aid,status,content) VALUES
|
||||
(NULL,?,?,?,?,\"open\",?)");
|
||||
switch($type){
|
||||
//创造注册邮件验证任务
|
||||
case "reg":
|
||||
$validTime=$ts+10800;//三个小时
|
||||
$aid=0;
|
||||
//生成验证码
|
||||
$code=rand(100000,999999);
|
||||
//编码json,信息无关性储存
|
||||
$content=json_encode(array($code,$email,$name,$pass,$area,$ip));
|
||||
$sql->bind_param("siiis",$type,$ts,$validTime,$aid,$content);//10800s=3h
|
||||
$sql->execute();
|
||||
//取回任务id
|
||||
$tid=mysqli_insert_id($conn);
|
||||
loger($conn,"task-create","success",$ts,"info",json_encode(array("email"=>$email)));
|
||||
$conn->close();
|
||||
return array($tid,$code);
|
||||
case "oauthCreate":
|
||||
$validTime=$ts+3600;//一个小时
|
||||
$app=new app;
|
||||
if($app->checkToken($token)){
|
||||
$aid=$app->getAidToken($token);
|
||||
$content="oauth";
|
||||
$sql->bind_param("siiis",$type,$ts,$validTime,$aid,$content);//10800s=3h
|
||||
$sql->execute();
|
||||
//取回任务id
|
||||
$tid=mysqli_insert_id($conn);
|
||||
loger($conn,"task-create","success",$ts,"info",json_encode(array("token"=>$token)));
|
||||
$conn->close();
|
||||
return $tid;
|
||||
}else{
|
||||
loger($conn,"task-create","failed",$ts,"info",json_encode(array("token"=>$token)));
|
||||
$conn->close();
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
//创建实名认证任务
|
||||
function createAuth($veriToken,$uid){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
$sql=$conn->prepare("INSERT INTO tasks
|
||||
(tid,type,createTime,invalidTime,aid,status,content) VALUES
|
||||
(NULL,?,?,?,?,\"open\",?)");
|
||||
$validTime=$ts+7200;//两个小时
|
||||
$app=new app;
|
||||
$aid=0;
|
||||
$type="auth";
|
||||
$content=json_encode(array($uid,$veriToken));
|
||||
$sql->bind_param("siiis",$type,$ts,$validTime,$aid,$content);//10800s=3h
|
||||
$sql->execute();
|
||||
//取回任务id
|
||||
$tid=mysqli_insert_id($conn);
|
||||
loger($conn,"task-createAuth","success",$ts,"info",json_encode(array("uid"=>$uid)));
|
||||
$conn->close();
|
||||
return $tid;
|
||||
}
|
||||
//从tid获取任务发起的应用aid
|
||||
function getAidTid($tid){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
$sql=$conn->prepare("SELECT aid FROM `tasks` WHERE `tid`=?");
|
||||
$sql->bind_param('i',$tid);
|
||||
$sql->execute();
|
||||
$sql->bind_result($aid);
|
||||
while($sql->fetch()){
|
||||
$rAid=$aid;
|
||||
}
|
||||
if($rAid!=""){
|
||||
loger($conn,"task-getAidTid","success",$ts,"info",json_encode(array("tid"=>$tid)));
|
||||
$conn->close();
|
||||
return $aid;
|
||||
}else{
|
||||
loger($conn,"task-getAidTid","failed",$ts,"info",json_encode(array("tid"=>$tid)));
|
||||
$conn->close();
|
||||
return false;
|
||||
}
|
||||
}
|
||||
//取回Auth任务详情
|
||||
function getBackAuth($tid){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
$sql=$conn->prepare("SELECT status,content FROM `tasks` WHERE `tid`=?");
|
||||
$sql->bind_param('i',$tid);
|
||||
$sql->execute();
|
||||
$sql->bind_result($status,$content);
|
||||
while($sql->fetch()){
|
||||
$rStatus=$status;
|
||||
$rContent=$content;
|
||||
}
|
||||
if($rStatus!=""){
|
||||
//核销Task
|
||||
$sql=$conn->prepare("UPDATE `tasks` SET `status`=\"close\" WHERE `tid`=?");
|
||||
$sql->bind_param("i",$tid);
|
||||
$sql->execute();
|
||||
if($rStatus!="open"){
|
||||
loger($conn,"task-getBackAuth","failed",$ts,"info",json_encode(array("tid"=>$tid)));
|
||||
$conn->close();
|
||||
return false;
|
||||
}else{
|
||||
loger($conn,"task-getBackAuth","success",$ts,"info",json_encode(array("tid"=>$tid)));
|
||||
$conn->close();
|
||||
$result=json_decode($rContent,true);
|
||||
return $result;
|
||||
}
|
||||
}else{
|
||||
loger($conn,"task-getBackAuth","failed",$ts,"info",json_encode(array("tid"=>$tid)));
|
||||
$conn->close();
|
||||
return false;
|
||||
}
|
||||
}
|
||||
//取回oauth结果(用户Token)
|
||||
function getbackOauth($tid){
|
||||
if($this->checkOauth($tid)){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
//取回Token
|
||||
$sql=$conn->prepare("SELECT content FROM `tasks` WHERE `tid`=?");
|
||||
$sql->bind_param('i',$tid);
|
||||
$sql->execute();
|
||||
$sql->bind_result($content);
|
||||
while($sql->fetch()){
|
||||
$rContent=$content;
|
||||
}
|
||||
//核销Task
|
||||
$sql=$conn->prepare("UPDATE `tasks` SET `status`=\"close\" WHERE `tid`=?");
|
||||
$sql->bind_param("i",$tid);
|
||||
$sql->execute();
|
||||
return $rContent;
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
//oauth登陆任务记录
|
||||
function recordOauth($tid,$token){
|
||||
if($this->checkOauth($tid)){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
//记录Token
|
||||
$sql=$conn->prepare("UPDATE `tasks` SET `content`=? WHERE `tid`=?");
|
||||
$sql->bind_param("si",$token,$tid);
|
||||
$sql->execute();
|
||||
$conn->close();
|
||||
return true;
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
//检测oauth登录任务是否有效
|
||||
function checkOauth($tid){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
$sql=$conn->prepare("SELECT status FROM `tasks` WHERE `tid`=?");
|
||||
$sql->bind_param('i',$tid);
|
||||
$sql->execute();
|
||||
$sql->bind_result($status);
|
||||
while($sql->fetch()){
|
||||
$rStatus=$status;
|
||||
}
|
||||
loger($conn,"task-checkOauth","success",$ts,"info",json_encode(array("tid"=>$tid)));
|
||||
$conn->close();
|
||||
if($rStatus!="open"){
|
||||
return false;
|
||||
}else{
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
383
user_center/libraries/user.php
Normal file
383
user_center/libraries/user.php
Normal file
@ -0,0 +1,383 @@
|
||||
<?php
|
||||
/*
|
||||
Copyright GHINK Network Studio
|
||||
Author: Bigsk(https://www.xiaxinzhe.cn)
|
||||
*/
|
||||
if(!defined('IN_SYS')){//Defined entreance security.
|
||||
header('HTTP/1.1 403 Forbidden');
|
||||
exit(file_get_contents(setting::root."template/403.html"));
|
||||
}
|
||||
//全局用户管理
|
||||
class user{
|
||||
//用户注册函数
|
||||
function reg($name,$pass,$email,$ip){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//检查是否重复注册
|
||||
if(!$this->checkExist($email)){
|
||||
//用户分区检查
|
||||
$area=json_decode(file_get_contents("https://api.ghink.net/ip/?ip=".$ip),true)["city"];
|
||||
if($area==""){
|
||||
$area="global";
|
||||
$mail=new mail;
|
||||
//发送验证邮件
|
||||
$result=$mail->sendReg($email,$name,$pass,$area,$ip);
|
||||
return $result;
|
||||
}else{
|
||||
$area="china";
|
||||
$mail=new mail;
|
||||
//发送验证邮件
|
||||
$result=$mail->sendReg($email,$name,$pass,$area,$ip);
|
||||
return $result;
|
||||
}
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
function login($email,$pass,$ip,$aid=0){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//创建数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
if($this->checkRight($email,$pass)){
|
||||
$ipaddr=new ip;
|
||||
$id=$this->getId($email);
|
||||
$lastIP=$ipaddr->getLast($id);
|
||||
$ipInfo=json_decode(file_get_contents("https://api.ghink.net/ip/?ip=".$ip),true);
|
||||
$ipInfoLast=json_decode(file_get_contents("https://api.ghink.net/ip/?ip=".$lastIP),true);
|
||||
if($ipInfo["city"]!=$ipInfoLast["city"]){
|
||||
$mail=new mail;
|
||||
$mail->sendWarn($email,$ipInfo["city"],$ipInfoLast["city"]);
|
||||
}
|
||||
//更新最后登录时间
|
||||
$sql=$conn->prepare("UPDATE `users` SET `logTime`=?,`logIP`=? WHERE `email`=?");
|
||||
$sql->bind_param('iss',$ts,$ip,$email);
|
||||
$sql->execute();
|
||||
$token=$this->giveToken($email);
|
||||
//记录登录信息
|
||||
$sql=$conn->prepare("INSERT INTO logHistory (id, ip, time, token, aid, status)
|
||||
VALUES(?,?,?,?,?,?)");
|
||||
$status="success";
|
||||
$sql->bind_param('isisis',$id,$ip,$ts,$token,$aid,$status);
|
||||
$sql->execute();
|
||||
$conn->close();
|
||||
return $token;
|
||||
}else{
|
||||
//记录登陆信息
|
||||
$sql=$conn->prepare("INSERT INTO logHistory (id, ip, time, token, aid, status)
|
||||
VALUES(?,?,?,NULL,NULL,?)");
|
||||
$status="failed";
|
||||
$sql->bind_param('isis',$id,$ip,$ts,$status);
|
||||
$sql->execute();
|
||||
$conn->close();
|
||||
return false;
|
||||
}
|
||||
}
|
||||
//生成用户Token
|
||||
function giveToken($email){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//实例化对象与数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
$id=$this->getId($email);
|
||||
//检测Token是否已经存在
|
||||
$sql=$conn->prepare("SELECT `value`,`createTime`,`renewal` FROM `tokens` WHERE `id`=?");
|
||||
$sql->bind_param('i',$id);
|
||||
$sql->execute();
|
||||
$sql->bind_result($value,$createTime,$renewal);
|
||||
while($sql->fetch()){
|
||||
$rValue=$value;
|
||||
$rCreateTime=$createTime;
|
||||
$rRenewal=$renewal;
|
||||
}
|
||||
if($rValue=="" || (($ts-$rCreateTime)>604800 && $rRenewal=="") || (($ts-$rCreateTime)>1209600 && $rRenewal=="true")){
|
||||
$hash=new hash;
|
||||
//计算Token
|
||||
$token=$hash->generateToken($email);
|
||||
$sql=$conn->prepare("INSERT INTO `tokens`(`tid`, `type`, `createTime`, `renewal`, `id`, `value`)
|
||||
VALUES (NULL,'user',?,NULL,?,?)");
|
||||
$sql->bind_param('iis',$ts,$id,$token);
|
||||
$sql->execute();
|
||||
loger($conn,"user-giveToken","success",$ts,"info",json_encode(array("email"=>$email)));
|
||||
$conn->close();
|
||||
return $token;
|
||||
}else{
|
||||
loger($conn,"user-giveToken","failed",$ts,"info",json_encode(array("email"=>$email)));
|
||||
$conn->close();
|
||||
return $rValue;
|
||||
}
|
||||
}
|
||||
//从Token获取用户ID
|
||||
function getIdToken($token){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
if($this->checkToken($token)){
|
||||
//创建数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
//获取Token
|
||||
$sql=$conn->prepare("SELECT id FROM `tokens` WHERE `value`=?");
|
||||
$sql->bind_param('s',$token);
|
||||
$sql->execute();
|
||||
$sql->bind_result($id);
|
||||
while($sql->fetch()){
|
||||
$rId=$id;
|
||||
}
|
||||
if($rId!=""){
|
||||
loger($conn,"user-getIdToken","success",$ts,"info",json_encode(array("token"=>$token)));
|
||||
$conn->close();
|
||||
return $rId;
|
||||
}else{
|
||||
loger($conn,"user-getIdToken","failed",$ts,"info",json_encode(array("token"=>$token)));
|
||||
$conn->close();
|
||||
return false;
|
||||
}
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
//销毁Token
|
||||
function destroyToken($token){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//创建数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
if($this->checkToken($token)){
|
||||
$sql=$conn->prepare("UPDATE `tokens` SET `destroy`=\"true\" WHERE `value`=?");
|
||||
$sql->bind_param('s',$token);
|
||||
$sql->execute();
|
||||
loger($conn,"user-destroyToken","success",$ts,"info",json_encode(array("token"=>$token)));
|
||||
$conn->close();
|
||||
return true;
|
||||
}else{
|
||||
loger($conn,"user-destroyToken","failed",$ts,"info",json_encode(array("token"=>$token)));
|
||||
$conn->close();
|
||||
return false;
|
||||
}
|
||||
}
|
||||
//检查用户Token是否有效
|
||||
function checkToken($token){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//创建数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
//获取Token
|
||||
$sql=$conn->prepare("SELECT createTime,renewal,destroy FROM `tokens` WHERE `value`=?");
|
||||
$sql->bind_param('s',$token);
|
||||
$sql->execute();
|
||||
$sql->bind_result($createTime,$renewal,$destroy);
|
||||
while($sql->fetch()){
|
||||
$rCreateTime=$createTime;
|
||||
$rRenewal=$renewal;
|
||||
$rDestroy=$destroy;
|
||||
}
|
||||
//判断Token时效
|
||||
if((($ts-$rCreateTime)>604800 && $rRenewal=="") || (($ts-$rCreateTime)>1209600 && $rRenewal=="true") || $rDestroy=="true"){
|
||||
loger($conn,"user-checkToken","success",$ts,"info",json_encode(array("token"=>$token)));
|
||||
$conn->close();
|
||||
return false;
|
||||
}else{
|
||||
loger($conn,"user-checkToken","success",$ts,"info",json_encode(array("token"=>$token)));
|
||||
$conn->close();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
//Token续期函数
|
||||
function renewalToken($uToken,$aToken){
|
||||
//Log Rec
|
||||
//Check token of application
|
||||
//Database operate
|
||||
}
|
||||
function ban(){
|
||||
}
|
||||
//获取用户所属区域
|
||||
function getArea($email){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//创建数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
//获取数据库返回值
|
||||
$sql=$conn->prepare("SELECT area FROM `users` WHERE `email`=?");
|
||||
$sql->bind_param('s',$email);
|
||||
$sql->execute();
|
||||
$sql->bind_result($area);
|
||||
while($sql->fetch()){
|
||||
$rArea=$area;
|
||||
}
|
||||
loger($conn,"user-getArea","success",$ts,"info",json_encode(array("email"=>$email)));
|
||||
$conn->close();
|
||||
return $rArea;
|
||||
}
|
||||
//使用UID获取用户所属区域
|
||||
function getAreaUid($uid){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//创建数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
//获取数据库返回值
|
||||
$sql=$conn->prepare("SELECT area FROM `users` WHERE `uid`=?");
|
||||
$sql->bind_param('i',$uid);
|
||||
$sql->execute();
|
||||
$sql->bind_result($area);
|
||||
while($sql->fetch()){
|
||||
$rArea=$area;
|
||||
}
|
||||
loger($conn,"user-getAreaUid","success",$ts,"info",json_encode(array("uid"=>$uid)));
|
||||
$conn->close();
|
||||
return $rArea;
|
||||
}
|
||||
//获取用户地区
|
||||
function getAreaId($id){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//创建数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
//获取数据库返回值
|
||||
$sql=$conn->prepare("SELECT area FROM `users` WHERE `id`=?");
|
||||
$sql->bind_param('i',$id);
|
||||
$sql->execute();
|
||||
$sql->bind_result($area);
|
||||
while($sql->fetch()){
|
||||
$rArea=$area;
|
||||
}
|
||||
loger($conn,"user-getAreaId","success",$ts,"info",json_encode(array("id"=>$id)));
|
||||
$conn->close();
|
||||
return $rArea;
|
||||
}
|
||||
//从id获取用户uid
|
||||
function getUidId($id){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//创建数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
//获取数据库返回值
|
||||
$sql=$conn->prepare("SELECT uid FROM `users` WHERE `id`=?");
|
||||
$sql->bind_param('i',$id);
|
||||
$sql->execute();
|
||||
$sql->bind_result($uid);
|
||||
while($sql->fetch()){
|
||||
$rUid=$uid;
|
||||
}
|
||||
loger($conn,"user-getUidId","success",$ts,"info",json_encode(array("id"=>$id)));
|
||||
$conn->close();
|
||||
return $rUid;
|
||||
}
|
||||
//从uid获取用户id
|
||||
function getIdUid($uid){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//创建数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
//获取数据库返回值
|
||||
$sql=$conn->prepare("SELECT id FROM `users` WHERE `uid`=?");
|
||||
$sql->bind_param('i',$uid);
|
||||
$sql->execute();
|
||||
$sql->bind_result($id);
|
||||
while($sql->fetch()){
|
||||
$rId=$id;
|
||||
}
|
||||
loger($conn,"user-getIdUid","success",$ts,"info",json_encode(array("uid"=>$uid)));
|
||||
$conn->close();
|
||||
return $rId;
|
||||
}
|
||||
//从uid获取用户昵称
|
||||
function getNameUid($uid){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//创建数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
//获取数据库返回值
|
||||
$sql=$conn->prepare("SELECT name FROM `users` WHERE `uid`=?");
|
||||
$sql->bind_param('i',$uid);
|
||||
$sql->execute();
|
||||
$sql->bind_result($name);
|
||||
while($sql->fetch()){
|
||||
$rName=$name;
|
||||
}
|
||||
loger($conn,"user-getNameUid","success",$ts,"info",json_encode(array("uid"=>$uid)));
|
||||
$conn->close();
|
||||
return $rName;
|
||||
}
|
||||
//获取用户全局id
|
||||
function getId($email){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//创建数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
//获取数据库返回值
|
||||
$sql=$conn->prepare("SELECT id FROM `users` WHERE `email`=?");
|
||||
$sql->bind_param('s',$email);
|
||||
$sql->execute();
|
||||
$sql->bind_result($id);
|
||||
while($sql->fetch()){
|
||||
$rId=$id;
|
||||
}
|
||||
loger($conn,"user-getId","success",$ts,"info",json_encode(array("email"=>$email)));
|
||||
$conn->close();
|
||||
return $rId;
|
||||
}
|
||||
//获取用户昵称
|
||||
function getName($email){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//创建数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
//获取数据库返回值
|
||||
$sql=$conn->prepare("SELECT name FROM `users` WHERE `email`=?");
|
||||
$sql->bind_param('s',$email);
|
||||
$sql->execute();
|
||||
$sql->bind_result($name);
|
||||
while($sql->fetch()){
|
||||
$rName=$name;
|
||||
}
|
||||
loger($conn,"user-getName","success",$ts,"info",json_encode(array("email"=>$email)));
|
||||
$conn->close();
|
||||
return $rName;
|
||||
}
|
||||
//用户存在性检测
|
||||
function checkExist($email){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//创建数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
//获取数据库返回值
|
||||
$sql=$conn->prepare("SELECT pass FROM `users` WHERE `email`=?");
|
||||
$sql->bind_param('s',$email);
|
||||
$sql->execute();
|
||||
$sql->bind_result($pass);
|
||||
while($sql->fetch()){
|
||||
$rPass=$pass;
|
||||
}
|
||||
loger($conn,"user-checkRight","success",$ts,"info",json_encode(array("email"=>$email)));
|
||||
$conn->close();
|
||||
if($rPass!=""){
|
||||
return true;
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
//用户信息是否正确检测
|
||||
function checkRight($email,$passwd){
|
||||
//记录时间戳
|
||||
$ts=time();
|
||||
//创建数据库连接
|
||||
$conn=new mysqli(database::addr,database::user,database::pass,database::name);
|
||||
//获取用户基础信息
|
||||
$sql=$conn->prepare("SELECT pass FROM `users` WHERE `email`=?");
|
||||
$sql->bind_param('s',$email);
|
||||
$sql->execute();
|
||||
$sql->bind_result($pass);
|
||||
while($sql->fetch()){
|
||||
$rPass=$pass;
|
||||
}
|
||||
loger($conn,"user-checkRight","success",$ts,"info",json_encode(array("email"=>$email)));
|
||||
$conn->close();
|
||||
$hash=new hash();
|
||||
$input=$hash->generatePass($passwd);
|
||||
//加密密码并比对
|
||||
if($rPass==$input){
|
||||
return true;
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
57
user_center/template/403.html
Normal file
57
user_center/template/403.html
Normal file
@ -0,0 +1,57 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<link rel="icon" href="https://resource.ghink.net/public/img/logo/ghink.png" type="image/png">
|
||||
<link rel="shortcut icon" href='https://resource.ghink.net/public/img/logo/ghink.png' type="image/png">
|
||||
<title>403</title>
|
||||
<style>
|
||||
.container {
|
||||
width: 60%;
|
||||
margin: 10% auto 0;
|
||||
background-color: #f0f0f0;
|
||||
padding: 2% 5%;
|
||||
border-radius: 10px
|
||||
}
|
||||
|
||||
ul {
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
ul li {
|
||||
line-height: 2.3
|
||||
}
|
||||
|
||||
a {
|
||||
color: #20a53a
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<script>
|
||||
if(navigator.language=="zh-CN"){
|
||||
document.write("\
|
||||
<h1>403</h1>\
|
||||
<h3>您没有权限访问这个页面</h3>\
|
||||
<ul>\
|
||||
<li>可能是您访问了错误的URL,或者点击了某个过期的链接</li>\
|
||||
<li>如果您确信您访问的是正确的链接,请与管理员<a href=\"mailto:service@ghink.net\">联系</a></li>\
|
||||
<li>版权所有 © 极科网络工作室</li>\
|
||||
</ul>\
|
||||
");
|
||||
}else{
|
||||
document.write("\
|
||||
<h1>403</h1>\
|
||||
<h3>You have no permission to visit this page</h3>\
|
||||
<ul>\
|
||||
<li>It may because of a wrong URL or you click a out of date link</li>\
|
||||
<li>If you sure you visit a right page, please <a href=\"mailto:service@ghink.net\">contact</a> with admin.</li>\
|
||||
<li>Copyright © Ghink Network Studio</li>\
|
||||
</ul>\
|
||||
");
|
||||
}
|
||||
</script>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
45
user_center/template/agreement.html
Normal file
45
user_center/template/agreement.html
Normal file
@ -0,0 +1,45 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<link rel="icon" href="https://resource.ghink.net/public/img/logo/ghink.png" type="image/png">
|
||||
<link rel="shortcut icon" href='https://resource.ghink.net/public/img/logo/ghink.png' type="image/png">
|
||||
<title>Agreement协议</title>
|
||||
<style>
|
||||
.container {
|
||||
width: 60%;
|
||||
margin: 10% auto 0;
|
||||
background-color: #f0f0f0;
|
||||
padding: 2% 5%;
|
||||
border-radius: 10px
|
||||
}
|
||||
|
||||
ul {
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
ul li {
|
||||
line-height: 2.3
|
||||
}
|
||||
|
||||
a {
|
||||
color: #20a53a
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<h1>Agreement 协议</h1>
|
||||
<h3>中文:</h3>
|
||||
<ul>
|
||||
<li>正在编写中<br/></li>
|
||||
</ul>
|
||||
<h3>English: </h3>
|
||||
<ul>
|
||||
<li>There is no English version for the time being, sorry.<br/></li>
|
||||
</ul>
|
||||
<script>
|
||||
</script>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
92
user_center/template/authentication/authentication.html
Normal file
92
user_center/template/authentication/authentication.html
Normal file
@ -0,0 +1,92 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<link rel="icon" href="https://resource.ghink.net/public/img/logo/ghink.png" type="image/png">
|
||||
<link rel="shortcut icon" href='https://resource.ghink.net/public/img/logo/ghink.png' type="image/png">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>实名认证系统 - 极科网络工作室</title>
|
||||
<!-- Bootstrap -->
|
||||
<link href="https://resource.ghink.net/site/public/css/bootstrap_4.4.1.css" rel="stylesheet">
|
||||
<style>
|
||||
#qrcode{
|
||||
/*text-align: center;*/
|
||||
/*display: table-cell;*/
|
||||
/*width: 120px;*/
|
||||
/*height: 120px;*/
|
||||
/*vertical-align:middle;*/
|
||||
/*position: relative;*/
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<hr>
|
||||
<div class="row">
|
||||
<div class="col-6">
|
||||
<h3>实名认证</h3>
|
||||
</div>
|
||||
<div class="col-6">
|
||||
<p class="text-right"><a href="javascript:void(0)" onClick="back()">返回上一页</a></p>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-lg-8 col-12 jumbotron">
|
||||
<div class="form-group">
|
||||
<h5>通过后将无法修改!请确认为您本人的身份信息。</h5>
|
||||
<label name="type">请选择核验方式:</label>
|
||||
<select>
|
||||
<option value="artificial">人脸识别</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="text-center">
|
||||
<button class="btn btn-primary" onClick="goAuth()">前往认证</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<footer class="text-center">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<p>Copyright © Ghink Network Studio 2014. All rights reserved.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
<script>
|
||||
var token = "{{token}}";
|
||||
function goAuth(){
|
||||
if(token==""){
|
||||
alert("请先登录!");
|
||||
window.location.href="oauth.php?type=log";
|
||||
}else{
|
||||
if ((navigator.userAgent.match(/(iPhone|iPod|Android|ios|iOS|iPad|Backerry|WebOS|Symbian|Windows Phone|Phone)/i))) {
|
||||
window.open("{{url}}","_blank","alwaysRaised=yes");
|
||||
}else{
|
||||
document.write('<center>请使用手机扫码进行验证<br><br><div class="form-group" id=qrcode></div><br><button type="submit" class="btn btn-primary" onClick="location.reload()">取消</button></center>');
|
||||
var qrcode = new QRCode(document.getElementById("qrcode"), {
|
||||
width : 120,
|
||||
height : 120
|
||||
});
|
||||
qrcode.makeCode("{{url}}");
|
||||
}
|
||||
}
|
||||
}
|
||||
function back(){
|
||||
history.go(-1);
|
||||
}
|
||||
</script>
|
||||
<script src="https://resource.ghink.net/site/public/js/qrcode.js"></script>
|
||||
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
|
||||
<script src="https://resource.ghink.net/site/public/js/jquery.js"></script>
|
||||
<!-- Include all compiled plugins (below), or include individual files as needed -->
|
||||
<script src="https://resource.ghink.net/site/public/js/popper.min.js"></script>
|
||||
<script src="https://resource.ghink.net/site/public/js/bootstrap_4.4.1.js"></script>
|
||||
</body>
|
||||
</html>
|
38
user_center/template/authentication/failed.html
Normal file
38
user_center/template/authentication/failed.html
Normal file
@ -0,0 +1,38 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="icon" href="https://resource.ghink.net/public/img/logo/ghink.png" type="image/png">
|
||||
<link rel="shortcut icon" href='https://resource.ghink.net/public/img/logo/ghink.png' type="image/png">
|
||||
<meta http-equiv="refresh" content="5;url=oauth.php?type=auth">
|
||||
<title>实名认证系统 - 极科网络工作室</title>
|
||||
<link href="https://resource.ghink.net/site/public/css/bootstrap_4.4.1.css" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container mt-2">
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<div class="jumbotron">
|
||||
<h3 class="text-center">认证失败!</h3>
|
||||
<h5 class="text-center">5秒后将回到认证系统</h5>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<footer class="text-center">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<p>Copyright © Ghink Network Studio 2014. All rights reserved.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<script src="https://resource.ghink.net/site/public/js/jquery.js"></script>
|
||||
<script src="https://resource.ghink.net/site/public/js/popper.min.js"></script>
|
||||
<script src="https://resource.ghink.net/site/public/js/bootstrap_4.4.1.js"></script>
|
||||
</body>
|
||||
</html>
|
38
user_center/template/authentication/success.html
Normal file
38
user_center/template/authentication/success.html
Normal file
@ -0,0 +1,38 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="icon" href="https://resource.ghink.net/public/img/logo/ghink.png" type="image/png">
|
||||
<link rel="shortcut icon" href='https://resource.ghink.net/public/img/logo/ghink.png' type="image/png">
|
||||
<meta http-equiv="refresh" content="5;url=oauth.php?type=panel">
|
||||
<title>实名认证系统 - 极科网络工作室</title>
|
||||
<link href="https://resource.ghink.net/site/public/css/bootstrap_4.4.1.css" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container mt-2">
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<div class="jumbotron">
|
||||
<h3 class="text-center">认证成功!</h3>
|
||||
<h5 class="text-center">5秒后将回到用户中心!</h5>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<footer class="text-center">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<p>Copyright © Ghink Network Studio 2014. All rights reserved.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<script src="https://resource.ghink.net/site/public/js/jquery.js"></script>
|
||||
<script src="https://resource.ghink.net/site/public/js/popper.min.js"></script>
|
||||
<script src="https://resource.ghink.net/site/public/js/bootstrap_4.4.1.js"></script>
|
||||
</body>
|
||||
</html>
|
334
user_center/template/log/en_US.html
Normal file
334
user_center/template/log/en_US.html
Normal file
File diff suppressed because one or more lines are too long
332
user_center/template/log/zh_CN.html
Normal file
332
user_center/template/log/zh_CN.html
Normal file
File diff suppressed because one or more lines are too long
42
user_center/template/logWarn/en_US.html
Normal file
42
user_center/template/logWarn/en_US.html
Normal file
@ -0,0 +1,42 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<style>
|
||||
.container {
|
||||
width: 60%;
|
||||
margin: 0% auto 0;
|
||||
background-color: #f0f0f0;
|
||||
padding: 2% 5%;
|
||||
border-radius: 10px
|
||||
}
|
||||
|
||||
ul {
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
p {
|
||||
line-height: 2.3
|
||||
}
|
||||
|
||||
a {
|
||||
color: #20a53a
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<center>
|
||||
<h1>Ghink Network Passport</h1>
|
||||
<h3>Log Warn Mail</h3>
|
||||
<ul>
|
||||
<p>Dear {{name}}</p>
|
||||
<p>Your Ghink Network Passport is loging in {{area}}</p>
|
||||
<p>But your last login place is {{lastArea}}</p>
|
||||
<p>If it is not your own operation, your password may have been leaked. Please modify it immediately</p>
|
||||
<p>Copyright © Ghink Network Studio</p>
|
||||
</ul>
|
||||
</center>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
42
user_center/template/logWarn/zh_CN.html
Normal file
42
user_center/template/logWarn/zh_CN.html
Normal file
@ -0,0 +1,42 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<style>
|
||||
.container {
|
||||
width: 60%;
|
||||
margin: 10% auto 0;
|
||||
background-color: #f0f0f0;
|
||||
padding: 2% 5%;
|
||||
border-radius: 10px
|
||||
}
|
||||
|
||||
ul {
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
p {
|
||||
line-height: 2.3
|
||||
}
|
||||
|
||||
a {
|
||||
color: #20a53a
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<center>
|
||||
<h1>极科网络通行证</h1>
|
||||
<h3>登录告警邮件</h3>
|
||||
<ul>
|
||||
<p>尊敬的{{name}}</p>
|
||||
<p>您的极科网络通行证正在{{area}}登录</p>
|
||||
<p>而您上次的登录地区为{{lastArea}}</p>
|
||||
<p>如非您本人操作,您的密码可能已经泄露,请马上修改</p>
|
||||
<p>版权所有 © 极科网络工作室</p>
|
||||
</ul>
|
||||
</center>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
336
user_center/template/oauth/en_US.html
Normal file
336
user_center/template/oauth/en_US.html
Normal file
File diff suppressed because one or more lines are too long
335
user_center/template/oauth/zh_CN.html
Normal file
335
user_center/template/oauth/zh_CN.html
Normal file
File diff suppressed because one or more lines are too long
359
user_center/template/reg/en_US.html
Normal file
359
user_center/template/reg/en_US.html
Normal file
File diff suppressed because one or more lines are too long
359
user_center/template/reg/zh_CN.html
Normal file
359
user_center/template/reg/zh_CN.html
Normal file
File diff suppressed because one or more lines are too long
43
user_center/template/regMail/en_US.html
Normal file
43
user_center/template/regMail/en_US.html
Normal file
@ -0,0 +1,43 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<style>
|
||||
.container {
|
||||
width: 60%;
|
||||
margin: 0% auto 0;
|
||||
background-color: #f0f0f0;
|
||||
padding: 2% 5%;
|
||||
border-radius: 10px
|
||||
}
|
||||
|
||||
ul {
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
p {
|
||||
line-height: 2.3
|
||||
}
|
||||
|
||||
a {
|
||||
color: #20a53a
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<center>
|
||||
<h1>Ghink Network Passport</h1>
|
||||
<h3>Reg Auth Mail</h3>
|
||||
<ul>
|
||||
<p>Thanks for reg the Ghink Network Passport</p>
|
||||
<p>Click the link to auth: <a href="{{link}}">{{link}}</a></p>
|
||||
<p>Valid for 3 hours</p>
|
||||
<p>If you cannot click the link please copy the link to open it in browser</p>
|
||||
<p>If you didn't reg the Ghink Network Passport, please ignore the mail</p>
|
||||
<p>Copyright © Ghink Network Studio</p>
|
||||
</ul>
|
||||
</center>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
43
user_center/template/regMail/zh_CN.html
Normal file
43
user_center/template/regMail/zh_CN.html
Normal file
@ -0,0 +1,43 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<style>
|
||||
.container {
|
||||
width: 60%;
|
||||
margin: 10% auto 0;
|
||||
background-color: #f0f0f0;
|
||||
padding: 2% 5%;
|
||||
border-radius: 10px
|
||||
}
|
||||
|
||||
ul {
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
p {
|
||||
line-height: 2.3
|
||||
}
|
||||
|
||||
a {
|
||||
color: #20a53a
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<center>
|
||||
<h1>极科网络通行证</h1>
|
||||
<h3>注册验证邮件</h3>
|
||||
<ul>
|
||||
<p>感谢您注册极科网络通行证!这是您的验证邮件</p>
|
||||
<p>点击链接进行验证:<a href="{{link}}">{{link}}</a></p>
|
||||
<p>有效期三小时</p>
|
||||
<p>如果链接无法点击,请复制到浏览器打开</p>
|
||||
<p>如果您没有注册极科网络通行证,请忽略本邮件</p>
|
||||
<p>版权所有 © 极科网络工作室</p>
|
||||
</ul>
|
||||
</center>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
45
user_center/template/regMailCheck/failed_en_US.html
Normal file
45
user_center/template/regMailCheck/failed_en_US.html
Normal file
@ -0,0 +1,45 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<link rel="icon" href="https://resource.ghink.net/public/img/logo/ghink.png" type="image/png">
|
||||
<link rel="shortcut icon" href='https://resource.ghink.net/public/img/logo/ghink.png' type="image/png">
|
||||
<title>Reg Ghink Network Passport</title>
|
||||
<style>
|
||||
.container {
|
||||
width: 60%;
|
||||
margin: 10% auto 0;
|
||||
background-color: #f0f0f0;
|
||||
padding: 2% 5%;
|
||||
border-radius: 10px
|
||||
}
|
||||
|
||||
ul {
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
ul li {
|
||||
line-height: 2.3
|
||||
}
|
||||
|
||||
a {
|
||||
color: #20a53a
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<script>
|
||||
<center>
|
||||
<h1>Ghink Network Passport</h1>
|
||||
<h3>Reg Auth Mail Check</h3>
|
||||
<ul>
|
||||
<p>Your reg applicant failed</p>
|
||||
<p>Please check weather you have checked or copied a wrong link</p>
|
||||
<p>Copyright © Ghink Network Studio</p>
|
||||
</ul>
|
||||
</center>
|
||||
</script>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
43
user_center/template/regMailCheck/failed_zh_CN.html
Normal file
43
user_center/template/regMailCheck/failed_zh_CN.html
Normal file
@ -0,0 +1,43 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<link rel="icon" href="https://resource.ghink.net/public/img/logo/ghink.png" type="image/png">
|
||||
<link rel="shortcut icon" href='https://resource.ghink.net/public/img/logo/ghink.png' type="image/png">
|
||||
<title>注册极科网络通行证</title>
|
||||
<style>
|
||||
.container {
|
||||
width: 60%;
|
||||
margin: 10% auto 0;
|
||||
background-color: #f0f0f0;
|
||||
padding: 2% 5%;
|
||||
border-radius: 10px
|
||||
}
|
||||
|
||||
ul {
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
ul li {
|
||||
line-height: 2.3
|
||||
}
|
||||
|
||||
a {
|
||||
color: #20a53a
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<center>
|
||||
<h1>极科网络通行证</h1>
|
||||
<h3>注册邮件验证</h3>
|
||||
<ul>
|
||||
<p>您的注册申请失败了</p>
|
||||
<p>请检查您是否已经验证过,或链接错误</p>
|
||||
<p>版权所有 © 极科网络工作室</p>
|
||||
</ul>
|
||||
</center>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
45
user_center/template/regMailCheck/success_en_US.html
Normal file
45
user_center/template/regMailCheck/success_en_US.html
Normal file
@ -0,0 +1,45 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<link rel="icon" href="https://resource.ghink.net/public/img/logo/ghink.png" type="image/png">
|
||||
<link rel="shortcut icon" href='https://resource.ghink.net/public/img/logo/ghink.png' type="image/png">
|
||||
<title>Reg Ghink Network Passport</title>
|
||||
<style>
|
||||
.container {
|
||||
width: 60%;
|
||||
margin: 10% auto 0;
|
||||
background-color: #f0f0f0;
|
||||
padding: 2% 5%;
|
||||
border-radius: 10px
|
||||
}
|
||||
|
||||
ul {
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
ul li {
|
||||
line-height: 2.3
|
||||
}
|
||||
|
||||
a {
|
||||
color: #20a53a
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<script>
|
||||
<center>
|
||||
<h1>Ghink Network Passport</h1>
|
||||
<h3>Reg Auth Mail Check</h3>
|
||||
<ul>
|
||||
<p>Your reg applicant success</p>
|
||||
<p>You can log in your account now</p>
|
||||
<p>Copyright © Ghink Network Studio</p>
|
||||
</ul>
|
||||
</center>
|
||||
</script>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
43
user_center/template/regMailCheck/success_zh_CN.html
Normal file
43
user_center/template/regMailCheck/success_zh_CN.html
Normal file
@ -0,0 +1,43 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<link rel="icon" href="https://resource.ghink.net/public/img/logo/ghink.png" type="image/png">
|
||||
<link rel="shortcut icon" href='https://resource.ghink.net/public/img/logo/ghink.png' type="image/png">
|
||||
<title>注册极科网络通行证</title>
|
||||
<style>
|
||||
.container {
|
||||
width: 60%;
|
||||
margin: 10% auto 0;
|
||||
background-color: #f0f0f0;
|
||||
padding: 2% 5%;
|
||||
border-radius: 10px
|
||||
}
|
||||
|
||||
ul {
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
ul li {
|
||||
line-height: 2.3
|
||||
}
|
||||
|
||||
a {
|
||||
color: #20a53a
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<center>
|
||||
<h1>极科网络通行证</h1>
|
||||
<h3>注册邮件验证</h3>
|
||||
<ul>
|
||||
<p>您的注册申请已经成功</p>
|
||||
<p>您现在可以登录您的帐号了</p>
|
||||
<p>版权所有 © 极科网络工作室</p>
|
||||
</ul>
|
||||
</center>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
x
Reference in New Issue
Block a user