* Date: 2018-4-3
*/
namespace app\api\controller;
use think\Db;
class Ajax extends Base
{
/*
* 初始化操作
*/
public function _initialize()
{
parent::_initialize();
}
public function multistation()
{
$token = input('param.token/s');
$auth_code = msubstr($token, 6, 32);
$request_time = msubstr($token, 38, 10);
$querystr = msubstr($token, 48, strlen($token));
$querystr = mchStrCode($querystr, 'DECODE', $auth_code);
$verify_content = preg_replace('/^(.*)-#eyou#([\w\-]+)#cms#-(.*)$/i', '${2}', $querystr);
$file = ROOT_PATH . "EY_{$verify_content}.txt";
$_ajax = input('param._ajax/d');
if (file_exists($file)) {
$fp = fopen($file, 'r');
$file_content = fread($fp, filesize($file));
fclose($fp);
if (!empty($file_content) && $file_content == $verify_content) {
$arr = explode("-#eyou#{$verify_content}#cms#-", $querystr);
$user_name = empty($arr[0]) ? '' : mchStrCode($arr[0], 'DECODE', $auth_code);
$password = empty($arr[1]) ? '' : mchStrCode($arr[1], 'DECODE', $auth_code);
$admin_info = Db::name('admin')->where(['user_name'=>$user_name])->find();
if (empty($admin_info)) {
$this->error('登录失败(账号/密码错误)');
}
$password = func_encrypt($password, true, pwd_encry_type($admin_info['password']));
if ($password != $admin_info['password']) {
$this->error('登录失败(账号/密码错误)');
} else if (empty($admin_info['status'])) {
$this->error('登录失败(账号已禁用)');
}
$opt = input('param.opt/s');
if ('push_archives' == $opt) { // 群发文档
$this->multistation_push_archives('add');
} else if ('edit_archives' == $opt) { // 编辑文档
$this->multistation_push_archives('edit');
} else if ('del_archives' == $opt) { // 删除文档
$this->multistation_del_archives();
} else { // 登录
$third_type = '';
$thirdata = login_third_type();
if ('EyouGzhLogin' == $thirdata['type']) {
$openid = Db::name('admin_wxlogin')->where(['admin_id'=>$admin_info['admin_id'], 'type'=>1])->value('openid');
if (!empty($openid)) {
$third_type = 'EyouGzhLogin';
}
} else if ('WechatLogin' == $thirdata['type']) {
$openid = Db::name('admin_wxlogin')->where(['admin_id'=>$admin_info['admin_id'], 'type'=>2])->value('openid');
if (!empty($openid)) {
$third_type = 'WechatLogin';
}
}
$admin_info = adminLoginAfter($admin_info['admin_id'], $this->session_id, $third_type);
adminLog('后台登录(站群快捷管理)');
session('isset_author', null); // 内置勿动
$web_adminbasefile = tpCache('global.web_adminbasefile');
$web_adminbasefile = !empty($web_adminbasefile) ? $web_adminbasefile : $this->root_dir.'/login.php';
if (stristr($web_adminbasefile, 'index.php')) {
$baseFile = explode('/', request()->baseFile());
$web_adminbasefile = end($baseFile);
$web_adminbasefile = $this->root_dir.'/'.$web_adminbasefile;
}
// $this->redirect($web_adminbasefile);
$this->success('正在登录', $web_adminbasefile);
}
} else {
if (empty($_ajax)) {
$this->error('验证文件失败,请重新按照教程操作');
}
}
}
if (!empty($_ajax)) {
$data = [
'code' => 0,
'msg' => '验证文件失败,请重新按照教程操作',
];
respose($data);
} else {
to_index("404");
}
}
private function multistation_push_archives($opt = 'add')
{
$data = [
'push_code' => 0,
'push_msg' => '发布失败',
];
$post = input('post.');
$archivesInfo = empty($post['archives']) ? '' : json_decode(base64_decode($post['archives']), true);
// @file_put_contents(ROOT_PATH . "/log.txt", date("Y-m-d H:i:s") . " " . var_export($archivesInfo, true) . "\r\n", FILE_APPEND);
if (!empty($archivesInfo['litpic']) && !empty($archivesInfo['is_syn_local'])) {
$ret_litpic = saveRemote($archivesInfo['litpic'],'allimg');
$ret_litpic = json_decode($ret_litpic,true);
$archivesInfo['litpic'] = empty($ret_litpic['url']) ? $archivesInfo['litpic'] : $ret_litpic['url'];
}
$archivesInfo['update_time'] = getTime();
// $litpic_base64 = empty($post['litpic_base64']) ? '' : $post['litpic_base64'];
$arctypeInfo = Db::name('arctype')->where(['id'=>intval($archivesInfo['typeid'])])->find();
if (empty($arctypeInfo)) {
$data['push_msg'] = '网站栏目不存在';
}
$channeltypeInfo = Db::name('channeltype')->where(['id'=>$archivesInfo['channel']])->find();
$arctypeInfo['typeurl'] = typeurl("home/{$channeltypeInfo['ctl_name']}/lists", $arctypeInfo, true, true);
if ('add' == $opt) {
$archivesInfo['add_time'] = getTime();
$r = $aid = Db::name('archives')->insertGetId($archivesInfo);
} else {
$aid = $archivesInfo['aid'];
$r = Db::name('archives')->where(['aid' => $aid])->update($archivesInfo);
}
if ($r !== false) {
//内容远程图片本地化
if (!empty($archivesInfo['is_syn_local'])) {
$archivesInfo = $this->content_remote_to_local($archivesInfo);
}
$ctl_name = $channeltypeInfo['ctl_name'];
$class = "\\app\\admin\\model\\{$ctl_name}";
$model = new $class;
try {
$archivesInfo['aid'] = $aid;
$archivesInfo['arcurl'] = arcurl("home/{$channeltypeInfo['ctl_name']}/view", array_merge($arctypeInfo, $archivesInfo), true, true);
if (!empty($archivesInfo['articlePayInfo'])) {
$archivesInfo['articlePayInfo']['aid'] = $aid;
if ('add' == $opt) {
Db::name('article_pay')->insert($archivesInfo['articlePayInfo']);
} else {
$is_in = Db::name('article_pay')->where('aid',$aid)->find();
if (empty($is_in)){
Db::name('article_pay')->insert($archivesInfo['articlePayInfo']);
}else{
$archivesInfo['articlePayInfo']['update_time'] = getTime();
Db::name('article_pay')->where('aid',$aid)->update($archivesInfo['articlePayInfo']);
}
}
}
$model->afterSave($aid, $archivesInfo, $opt);
// 清除前台缓存
clearHtmlCache([$aid], [$arctypeInfo['id']]);
// 添加查询执行语句到mysql缓存表
model('SqlCacheTable')->InsertSqlCacheTable();
if ('add' == $opt) {
$push_msg = '发布成功';
adminLog('群发新增文档:'.$archivesInfo['title']);
} else {
$push_msg = '编辑成功';
adminLog('群发编辑文档:'.$archivesInfo['title']);
}
$globalConfig = tpCache('global');
$data = [
'push_code' => 1,
'push_msg' => $push_msg,
'arctypeInfo' => [
'typeurl' => $arctypeInfo['typeurl'],
'typename' => $arctypeInfo['typename'],
],
'archivesInfo' => [
'aid' => $archivesInfo['aid'],
'arcurl' => $archivesInfo['arcurl'],
],
'globalConfig' => [
'seo_pseudo' => $globalConfig['seo_pseudo'],
],
];
} catch (\Exception $e) {
Db::name('archives')->where(['aid'=>$aid])->delete();
$model->afterDel([$aid]);
$data['push_msg'] = $e->getMessage();
}
}
respose($data);
}
//内容远程图片本地化
private function content_remote_to_local($archivesInfo = []){
foreach (['content','content_ey_m','free_content'] as $k => $v){
$first = 'addonFieldExt';
if ('free_content' == $v){
$first = 'articlePayInfo';
}
$archivesInfo[$first][$v] = htmlspecialchars_decode($archivesInfo[$first][$v]);
$archivesInfo[$first][$v] = remote_to_local($archivesInfo[$first][$v]);
$archivesInfo[$first][$v] = htmlspecialchars($archivesInfo[$first][$v]);
}
return $archivesInfo;
}
private function multistation_del_archives()
{
$data = [
'push_code' => 0,
'push_msg' => '删除失败',
];
$post = input('post.');
$aid = empty($post['aid']) ? 0 : $post['aid'];
if (!empty($aid)) {
try {
$archivesInfo = Db::name('archives')->where(['aid'=>$aid])->find();
$channeltypeInfo = Db::name('channeltype')->where(['id'=>$archivesInfo['channel']])->find();
$ctl_name = $channeltypeInfo['ctl_name'];
$class = "\\app\\admin\\model\\{$ctl_name}";
$model = new $class;
Db::name('archives')->where(['aid'=>$aid])->delete();
$model->afterDel([$aid]);
adminLog('群发删除文档:'.$archivesInfo['title']);
$data = [
'push_code' => 1,
'push_msg' => '删除成功',
];
} catch (\Exception $e) {
$data['push_msg'] = $e->getMessage();
}
}
respose($data);
}
/**
* 清除缓存接口
* @return [type] [description]
*/
public function clear_cache()
{
\think\Cache::clear();
delFile(RUNTIME_PATH);
// 重新生成全部数据表缓存字段文件
// $dbtables = \think\Db::query('SHOW TABLE STATUS');
// $tableList = [];
// foreach ($dbtables as $k => $v) {
// if (preg_match('/^'.PREFIX.'/i', $v['Name'])) {
// /*调用命令行的指令*/
// \think\Console::call('optimize:schema', ['--table', $v['Name']]);
// /*--end*/
// }
// }
// try {
// /*清除大数据缓存表 -- 陈风任*/
// Db::name('sql_cache_table')->execute('TRUNCATE TABLE '.config('database.prefix').'sql_cache_table');
// model('SqlCacheTable')->InsertSqlCacheTable(true);
// /* END */
// } catch (\Exception $e) {}
exit('success');
}
/**
* 获取下级地区
*/
public function get_region()
{
if (IS_AJAX) {
$pid = input('pid/d', 0);
$res = Db::name('region')->where('parent_id', $pid)->select();
$this->success('请求成功', null, $res);
}
}
/**
* 内容页浏览量的自增接口
*/
public function arcclick()
{
if (!IS_AJAX) {
// 第一种方案,js输出
$aids = input('param.aids/d', 0);
if (!empty($aids)) {
$type = input('param.type/s', '');
$archives_db = Db::name('archives');
if ('view' == $type) {
$archives_db->where('aid', $aids)->setInc('click');
eyou_statistics_data(1); // 统计浏览数
}
$click = $archives_db->where('aid', $aids)->value('click');
echo "document.htm.write('" . $click . "');\r\n";
exit;
}
} else {
// 第二种方案,执行ajax
$param = input('param.');
if (isset($param['aids'])) {
$aids = $param['aids'];
if (!empty($aids)) {
$aid_arr = explode(',', $aids);
foreach ($aid_arr as $key => $val) {
$aid_arr[$key] = intval($val);
}
$type = input('param.type/s', '');
$archives_db = Db::name('archives');
if ('view' == $type) {
$archives_db->where(['aid' => ['IN', $aid_arr]])->update([
'click' => Db::raw('click + 1'),
]);
eyou_statistics_data(1, count($aid_arr)); // 统计浏览数
}
$data = $archives_db->field('aid,click')->where(['aid' => ['IN', $aid_arr]])->getAllWithIndex('aid');
respose($data);
}
} else {
$click = 0;
$aid = input('param.aid/d', 0);
$type = input('param.type/s', '');
if ($aid > 0) {
$archives_db = Db::name('archives');
if ('view' == $type) {
$archives_db->where(array('aid' => $aid))->setInc('click');
eyou_statistics_data(1); // 统计浏览数
}
$click = $archives_db->where(array('aid' => $aid))->getField('click');
}
echo($click);
exit;
}
}
to_index("404");
}
/**
* 付费文档的订单数/用户数
*/
public function freebuynum()
{
$aid = input('param.aid/d', 0);
if (IS_AJAX && !empty($aid)) {
$freebuynum = 0;
$modelid = input('modelid/d', 0);
$modelid = input('channelid/d', $modelid);
if (empty($modelid)) {
$modelid = Db::name('archives')->where(['aid' => $aid])->value('channel');
}
if (1 == $modelid) {
$freebuynum = Db::name('article_order')->where(['product_id' => $aid, 'order_status' => 1])->count();
} else if (5 == $modelid) {
$freebuynum = Db::name('media_order')->where(['product_id' => $aid, 'order_status' => 1])->count();
} else if (4 == $modelid) {
$freebuynum = Db::name('download_order')->where(['product_id' => $aid, 'order_status' => 1])->count();
}
echo($freebuynum);
exit;
} else {
to_index("404");
}
}
/**
* 文档下载次数
*/
public function downcount()
{
$aid = input('param.aid/d', 0);
if (IS_AJAX && !empty($aid)) {
$downcount = Db::name('archives')->where(array('aid' => $aid))->getField('downcount');
echo($downcount);
exit;
} else {
to_index("404");
}
}
/**
* 文档收藏次数
*/
public function collectnum()
{
$aid = input('param.aid/d', 0);
if (IS_AJAX && !empty($aid)) {
$collectnum = Db::name('users_collection')->where(array('aid' => $aid))->count();
echo($collectnum);
exit;
} else {
to_index("404");
}
}
/**
* 站内通知数量
*/
public function notice()
{
if (IS_AJAX) {
$unread_notice_num = 0;
$users_id = session('users_id');
if ($users_id > 0) {
$unread_notice_num = Db::name('users')->where(array('users_id' => $users_id))->value('unread_notice_num');
}
echo($unread_notice_num);
exit;
} else {
to_index("404");
}
}
/**
* arclist列表分页arcpagelist标签接口
*/
public function arcpagelist()
{
if (!IS_AJAX) {
to_index("404");
}
$pnum = input('page/d', 0);
$pagesize = input('pagesize/d', 0);
$tagid = input('tagid/s', '');
$tagidmd5 = input('tagidmd5/s', '');
!empty($tagid) && $tagid = preg_replace("/[^a-zA-Z0-9-_]/", '', $tagid);
!empty($tagidmd5) && $tagidmd5 = preg_replace("/[^a-zA-Z0-9_]/", '', $tagidmd5);
if (empty($tagid) || empty($pnum) || empty($tagidmd5)) {
$this->error('参数有误');
}
$data = [
'code' => 1,
'msg' => '',
'lastpage' => 0,
];
$arcmulti_db = Db::name('arcmulti');
$arcmultiRow = $arcmulti_db->where(['tagid' => $tagidmd5])->find();
if (!empty($arcmultiRow) && !empty($arcmultiRow['querysql'])) {
// arcpagelist标签属性pagesize优先级高于arclist标签属性pagesize
if (0 < intval($pagesize)) {
$arcmultiRow['pagesize'] = $pagesize;
}
// 取出属性并解析为变量
$attarray = unserialize(stripslashes($arcmultiRow['attstr']));
// extract($attarray, EXTR_SKIP); // 把数组中的键名直接注册为了变量
// 通过页面及总数解析当前页面数据范围
$pnum < 2 && $pnum = 2;
$strnum = intval($attarray['row']) + ($pnum - 2) * $arcmultiRow['pagesize'];
// 拼接完整的SQL
$querysql = preg_replace('#LIMIT(\s+)(\d+)(,\d+)?#i', '', $arcmultiRow['querysql']);
$querysql = preg_replace('#SELECT(\s+)(.*)(\s+)FROM#i', 'SELECT COUNT(*) AS totalNum FROM', $querysql);
$queryRow = Db::query($querysql);
if (!empty($queryRow)) {
$tpl_content = '';
$filename = './template/' . THEME_STYLE_PATH . '/' . 'system/arclist_' . $tagid . '.' . \think\Config::get('template.view_suffix');
if (!file_exists($filename)) {
$data['code'] = -1;
$data['msg'] = "模板追加文件 arclist_{$tagid}.htm 不存在!";
$this->error("标签模板不存在", null, $data);
} else {
$tpl_content = @file_get_contents($filename);
}
if (empty($tpl_content)) {
$data['code'] = -1;
$data['msg'] = "模板追加文件 arclist_{$tagid}.htm 没有HTML代码!";
$this->error("标签模板不存在", null, $data);
}
/*拼接完整的arclist标签语法*/
$offset = intval($strnum);
$row = intval($offset) + intval($arcmultiRow['pagesize']);
$innertext = "{eyou:arclist";
foreach ($attarray as $key => $val) {
if (in_array($key, ['tagid', 'offset', 'row'])) {
continue;
}
if ($key == 'keyword') {
if (empty($val)) {
continue;
} else if (preg_match('/^\$eyou(\.|\[)(.*)$/i', $val)) {
$val = input('param.keywords/s');
}
}
$innertext .= " {$key}='{$val}'";
}
$innertext .= " limit='{$offset},{$row}'}";
$innertext .= $tpl_content;
$innertext .= "{/eyou:arclist}";
/*--end*/
$msg = $this->display($innertext); // 渲染模板标签语法
$data['msg'] = $msg;
//是否到了最终页
if (!empty($queryRow[0]['totalNum']) && $queryRow[0]['totalNum'] <= $row) {
$data['lastpage'] = 1;
}
} else {
$data['lastpage'] = 1;
}
}
$this->success('请求成功', null, $data);
}
/**
* 获取表单令牌
*/
public function get_token($name = '__token__')
{
$name = preg_replace('/([^\w\-]+)/i', '', $name);
if (IS_AJAX && strstr($name, '_token_')) {
echo $this->request->token($name);
exit;
} else {
to_index("404");
}
}
/**
* 检验会员登录
*/
public function check_user()
{
if (IS_AJAX) {
$type = input('param.type/s', 'default');
$img = input('param.img/s');
$afterhtml = input('param.afterhtml/s');
$users_id = session('users_id');
if ('login' == $type) {
if (!empty($users_id)) {
$currentstyle = input('param.currentstyle/s');
$users = M('users')->field('username,nickname,head_pic,sex')
->where([
'users_id' => $users_id,
'lang' => $this->home_lang,
])->find();
if (!empty($users)) {
$nickname = $users['nickname'];
if (empty($nickname)) {
$nickname = $users['username'];
}
$head_pic = get_head_pic(htmlspecialchars_decode($users['head_pic']), false, $users['sex']);
$users['head_pic'] = func_preg_replace(['http://thirdqq.qlogo.cn'], ['https://thirdqq.qlogo.cn'], $head_pic);
if (!empty($afterhtml)) {
preg_match_all('/~(\w+)~/iUs', $afterhtml, $userfields);
if (!empty($userfields[1])) {
$users['url'] = url('user/Users/login');
foreach ($userfields[1] as $key => $val) {
$replacement = !empty($users[$val]) ? $users[$val] : '';
$afterhtml = str_replace($userfields[0][$key], $users[$val], $afterhtml);
}
$users['html'] = htmlspecialchars_decode($afterhtml);
} else {
$users['html'] = $nickname;
}
} else {
if ('on' == $img) {
$users['html'] = "";
} else {
$users['html'] = $nickname;
}
}
$users['ey_is_login'] = 1;
cookie('users_id', $users_id);
$this->success('请求成功', null, $users);
}
}
$data = [
'ey_is_login' => 0,
'ey_third_party_login' => $this->is_third_party_login(),
'ey_third_party_qqlogin' => $this->is_third_party_login('qq'),
'ey_third_party_wxlogin' => $this->is_third_party_login('wx'),
'ey_third_party_wblogin' => $this->is_third_party_login('wb'),
'ey_login_vertify' => $this->is_login_vertify(),
];
$this->success('请先登录', null, $data);
} else if ('reg' == $type) {
if (!empty($users_id)) {
$users['ey_is_login'] = 1;
} else {
$users['ey_is_login'] = 0;
}
$this->success('请求成功', null, $users);
} else if ('logout' == $type) {
if (!empty($users_id)) {
$users['ey_is_login'] = 1;
} else {
$users['ey_is_login'] = 0;
}
$this->success('请求成功', null, $users);
} else if ('cart' == $type) {
if (!empty($users_id)) {
$users['ey_is_login'] = 1;
$users['ey_cart_num_20191212'] = Db::name('shop_cart')->where(['users_id' => $users_id])->sum('product_num');
} else {
$users['ey_is_login'] = 0;
$users['ey_cart_num_20191212'] = 0;
}
$this->success('请求成功', null, $users);
} else if ('collect' == $type) {
if (!empty($users_id)) {
$users['ey_is_login'] = 1;
$users['ey_collect_num_20191212'] = Db::name('users_collection')->where(['users_id' => $users_id])->count();
} else {
$users['ey_is_login'] = 0;
$users['ey_collect_num_20191212'] = 0;
}
$this->success('请求成功', null, $users);
}
$this->error('访问错误');
} else {
to_index("404");
}
}
public function get_info()
{
$str = '5piT5LyYQ01TLQ==';
exit(base64_decode($str) . getCmsVersion());
}
/**
* 是否启用并开启第三方登录
* @return boolean [description]
*/
private function is_third_party_login($type = '')
{
static $result = null;
if (null === $result) {
$result = Db::name('weapp')->field('id,code,data')->where([
'code' => ['IN', ['QqLogin', 'WxLogin', 'Wblogin']],
'status' => 1,
])->getAllWithIndex('code');
}
$value = 0;
if (empty($type)) {
$qqlogin = 0;
if (!empty($result['QqLogin']['data'])) {
$qqData = unserialize($result['QqLogin']['data']);
if (!empty($qqData['login_show'])) {
$qqlogin = 1;
}
}
$wxlogin = 0;
if (!empty($result['WxLogin']['data'])) {
$wxData = unserialize($result['WxLogin']['data']);
if (!empty($wxData['login_show'])) {
$wxlogin = 1;
}
}
$wblogin = 0;
if (!empty($result['Wblogin']['data'])) {
$wbData = unserialize($result['Wblogin']['data']);
if (!empty($wbData['login_show'])) {
$wblogin = 1;
}
}
if ($qqlogin == 1 || $wxlogin == 1 || $wblogin == 1) {
$value = 1;
}
} else {
if ('qq' == $type) {
if (!empty($result['QqLogin']['data'])) {
$qqData = unserialize($result['QqLogin']['data']);
if (!empty($qqData['login_show'])) {
$value = 1;
}
}
} else if ('wx' == $type) {
if (!empty($result['WxLogin']['data'])) {
$wxData = unserialize($result['WxLogin']['data']);
if (!empty($wxData['login_show'])) {
$value = 1;
}
}
} else if ('wb' == $type) {
if (!empty($result['Wblogin']['data'])) {
$wbData = unserialize($result['Wblogin']['data']);
if (!empty($wbData['login_show'])) {
$value = 1;
}
}
}
}
return $value;
}
/**
* 是否开启登录图形验证码
* @return boolean [description]
*/
private function is_login_vertify()
{
$row = tpSetting('system.system_vertify');
// 获取验证码配置信息
$row = json_decode($row, true);
$baseConfig = \think\Config::get("captcha");
if (!empty($row)) {
foreach ($row['captcha'] as $key => $val) {
if ('default' == $key) {
$baseConfig[$key] = array_merge($baseConfig[$key], $val);
} else {
$baseConfig[$key]['is_on'] = $val['is_on'];
$baseConfig[$key]['config'] = array_merge($baseConfig['default'], $val['config']);
}
}
\think\Config::set('captcha', $baseConfig);
}
// 默认开启验证码
$is_vertify = 1;
$users_login_captcha = empty($baseConfig['users_login']) ? [] : $baseConfig['users_login'];
if (!function_exists('imagettftext') || empty($users_login_captcha['is_on'])) {
$is_vertify = 0; // 函数不存在,不符合开启的条件
}
return $is_vertify;
}
/**
* 获取用户信息
*/
public function get_tag_user_info()
{
if (!IS_AJAX) {
to_index("404");
}
$t_uniqid = input('param.t_uniqid/s', '');
if (IS_AJAX && !empty($t_uniqid)) {
$users_id = session('users_id');
if (!empty($users_id)) {
$users = Db::name('users')->field('b.*, a.*')
->alias('a')
->join('__USERS_LEVEL__ b', 'a.level = b.level_id', 'LEFT')
->where([
'a.users_id' => $users_id,
'a.lang' => $this->home_lang,
])->find();
if (!empty($users)) {
$users['reg_time'] = MyDate('Y-m-d H:i:s', $users['reg_time']);
$users['update_time'] = MyDate('Y-m-d H:i:s', $users['update_time']);
} else {
$users = [];
$tableFields1 = Db::name('users')->getTableFields();
$tableFields2 = Db::name('users_level')->getTableFields();
$tableFields = array_merge($tableFields1, $tableFields2);
foreach ($tableFields as $key => $val) {
$users[$val] = '';
}
}
unset($users['password']);
unset($users['paypwd']);
// 头像处理
$head_pic = get_head_pic(htmlspecialchars_decode($users['head_pic']), false, $users['sex']);
$users['head_pic'] = func_preg_replace(['http://thirdqq.qlogo.cn'], ['https://thirdqq.qlogo.cn'], $head_pic);
$users['url'] = url('user/Users/centre');
$dtypes = [];
foreach ($users as $key => $val) {
$html_key = md5($key . '-' . $t_uniqid);
$users[$html_key] = $val;
$dtype = 'txt';
if (in_array($key, ['head_pic'])) {
$dtype = 'img';
} else if (in_array($key, ['url'])) {
$dtype = 'href';
}
$dtypes[$html_key] = $dtype;
unset($users[$key]);
}
$data = [
'ey_is_login' => 1,
'users' => $users,
'dtypes' => $dtypes,
];
$this->success('请求成功', null, $data);
}
$this->success('请先登录', null, ['ey_is_login' => 0]);
}
$this->error('访问错误');
}
// 验证码获取
public function vertify()
{
$time = getTime();
$type = input('param.type/s', 'default');
$type = preg_replace('/([^\w\-]+)/i', '', $type);
$token = input('param.token/s', '');
$token = preg_replace('/([^\w\-]+)/i', '', $token);
$configList = \think\Config::get('captcha');
$captchaArr = array_keys($configList);
if (in_array($type, $captchaArr)) {
/*验证码插件开关*/
$admin_login_captcha = config('captcha.' . $type);
$config = (!empty($admin_login_captcha['is_on']) && !empty($admin_login_captcha['config'])) ? $admin_login_captcha['config'] : config('captcha.default');
/*--end*/
} else {
$config = config('captcha.default');
}
ob_clean(); // 清空缓存,才能显示验证码
$Verify = new \think\Verify($config);
if (!empty($token)) {
$Verify->entry($token);
} else {
$Verify->entry($type);
}
exit();
}
/*
* 表单提交完成之后操作----短信发送
*/
/**
* 表单提交完成之后操作----邮箱发送
*/
public function send_email()
{
// 超时后,断掉邮件发送
function_exists('set_time_limit') && set_time_limit(10);
\think\Session::pause(); // 暂停session,防止session阻塞机制
$type = input('param.type/s');
// 留言发送邮件
if (IS_AJAX_POST && 'gbook_submit' == $type) {
// 是否满足发送邮箱的条件
$is_open = Db::name('smtp_tpl')->where(['send_scene' => 1, 'lang' => $this->home_lang])->value('is_open');
$smtp_config = tpCache('smtp');
if (empty($is_open) || empty($smtp_config['smtp_user']) || empty($smtp_config['smtp_pwd'])) {
$this->error("邮箱尚未配置,发送失败");
}
$tid = input('param.tid/d');
$aid = input('param.aid/d');
$form_type = input('param.form_type/d', 0);
$send_email_scene = config('send_email_scene');
$scene = $send_email_scene[1]['scene'];
if (1 == $form_type) {
$info = Db::name('guestbook')->field('a.*, b.form_name')
->alias('a')
->join('form b','a.typeid = b.form_id','left')
->where(['a.aid'=>$aid, 'a.form_type'=>$form_type])
->find();
} else {
$info = Db::name('guestbook')->field('a.*, b.typename as form_name')
->alias('a')
->join('arctype b','a.typeid = b.id','left')
->where(['a.aid'=>$aid, 'a.form_type'=>$form_type])
->find();
}
$city = "";
try {
$city_arr = getCityLocation($info['ip']);
if (!empty($city_arr)) {
!empty($city_arr['location']) && $city .= $city_arr['location'];
}
} catch (\Exception $e) {}
$info['city'] = $city;
// 判断标题拼接
$web_name = tpCache('web.web_name');
$web_name = $info['form_name'] . '-' . $web_name;
// 拼装发送的字符串内容
$attr_list = Db::name('guestbook_attribute')->where(['typeid'=>$tid,'form_type'=>$form_type])->order('attr_id asc')->select();
$attr_values = Db::name('guestbook_attr')->field('attr_id,attr_value')->where(['aid'=>$aid,'form_type'=>$form_type])->getAllWithIndex('attr_id');
foreach ($attr_list as $key => $val) {
$val['attr_value'] = empty($attr_values[$val['attr_id']]) ? '' : $attr_values[$val['attr_id']]['attr_value'];
$attr_list[$key] = $val;
}
$content = '';
foreach ($attr_list as $key => $val) {
if ($val['attr_input_type'] == 9) {
$val['attr_value'] = Db::name('region')->where('id', 'in', $val['attr_value'])->column('name');
$val['attr_value'] = implode('', $val['attr_value']);
} else if ($val['attr_input_type'] == 4) {
$val['attr_value'] = filter_line_return($val['attr_value'], '、');
} else if (10 == $val['attr_input_type']) {
$val['attr_value'] = date('Y-m-d H:i:s', $val['attr_value']);
} else if (11 == $val['attr_input_type']) {
$attr_value_arr = explode(",", $val['attr_value']);
$attr_value_str = "";
foreach ($attr_value_arr as $attr_value_k => $attr_value_v) {
$attr_value_v = handle_subdir_pic($attr_value_v, 'img', true);
$attr_value_str .= "
";
}
$val['attr_value'] = $attr_value_str;
} else {
if (preg_match('/(\.(jpg|gif|png|bmp|jpeg|ico|webp))$/i', $val['attr_value'])) {
if (!stristr($val['attr_value'], '|')) {
$val['attr_value'] = handle_subdir_pic($val['attr_value'], 'img', true);
$val['attr_value'] = "
";
}
} elseif (preg_match('/(\.(' . tpCache('basic.file_type') . '))$/i', $val['attr_value'])) {
if (!stristr($val['attr_value'], '|')) {
$val['attr_value'] = handle_subdir_pic($val['attr_value'], 'img', true);
$val['attr_value'] = "
request->domain() . ROOT_DIR . "/public/static/common/images/file.png\" alt=\"\" style=\"width: 16px;height: 16px;\">点击下载";
}
}
}
$content .= $val['attr_name'] . ':' . $val['attr_value'] . '
';
}
$content .= '所属表单:' . $info['form_name'] . '
';
$content .= 'IP来源:' . $info['ip'];
if (!empty($info['city'])) {
$content .= "({$info['city']})";
} else {
$content .= "(查看地区)";
}
$content .= '
';
if (2 == $info['source']) {
$content .= "提交来源:手机端
";
} else {
$content .= "提交来源:电脑端
";
}
$content .= '提交时间:' . MyDate('Y-m-d H:i:s', $info['add_time']) . '
';
$html = "
{$web_name}
{$content}
"; // 发送邮件 $res = send_email(null, null, $html, $scene); if (intval($res['code']) == 1) { $this->success($res['msg']); } else { $this->error($res['msg']); } } } /** * 手机短信发送 */ public function SendMobileCode() { // 超时后,断掉发送 function_exists('set_time_limit') && set_time_limit(5); // \think\Session::pause(); // 暂停session,防止session阻塞机制 /*$pretime1 = getTime() - 120; // 3分钟内 $ip_prefix = preg_replace('/\d+\.\d+$/i', '', clientIP()); $count = Db::name('sms_log')->where([ 'ip' => ['LIKE', "{$ip_prefix}%"], 'is_use' => 1, 'add_time' => ['gt', $pretime1], ])->count(); if (!empty($count) && 5 <= $count) { $this->error('发送短信异常~'); }*/ // 发送手机验证码 if (IS_AJAX_POST) { $post = input('post.'); $source = !empty($post['source']) ? $post['source'] : 0; // 留言验证类型发送短信处理 if (isset($post['scene']) && in_array($post['scene'], [7])) { // 是否允许再次发送 $where = [ 'source' => $post['scene'], 'mobile' => $post['phone'], 'status' => 1, 'is_use' => 0, 'add_time' => ['>', getTime() - 120] ]; $Result = Db::name('sms_log')->where($where)->order('id desc')->count(); if (!empty($Result)) $this->error('120秒内只能发送一次'); // 图形验证码判断 if (empty($post['code'])) $this->error('请输入图片验证码'); $verify = new \think\Verify(); if (!$verify->check($post['code'], $post['code_token'])) $this->error('图片验证码错误'); // 发送并返回结果 $Result = sendSms(7, $post['phone'], array('content' => mt_rand(1000, 9999))); if (1 === intval($Result['status'])) { $this->success('发送成功'); } else { $this->error($Result['msg']); } } // 订单付款和订单发货类型发送短信处理 else if (isset($post['scene']) && in_array($post['scene'], [5, 6, 20])) { // 如果没有手机号则返回结束 if (empty($post['mobile'])) return false; // 处理发送的内容 $data = !empty($post['data']) ? $post['data'] : []; $data = !empty($data) && !is_array($data) ? json_decode(htmlspecialchars_decode(htmlspecialchars_decode($data)), true) : $data; // 查询消息通知模板的内容 $sms_config = tpCache('sms'); $sms_type = !empty($sms_config['sms_type']) ? intval($sms_config['sms_type']) : 1; $tpl_content = Db::name('sms_template')->where(["send_scene" => $post['scene'], "sms_type" => $sms_type, 'is_open' => 1])->value('tpl_content'); if (empty($tpl_content)) return false; // 发送短信提醒 if (in_array($data['type'], [1, 2])) { // $preg_res = preg_match('/订单/', $tpl_content); // 查询订单信息 $field = 'a.order_code, a.express_time, b.product_name'; $shopOrder = Db::name('shop_order')->alias('a')->field($field)->join('__SHOP_ORDER_DETAILS__ b', 'a.order_id = b.order_id', 'LEFT')->where('a.order_code', $data['order_code'])->find(); switch ($data['type']) { case '1': // if (empty($sms_config['sms_shop_order_pay'])) { // $this->error("配置不接收订单付款短信提醒"); // } $sendData = [ 'content' => $shopOrder['order_code'], ]; // $content = $preg_res ? '待发货' : '您有新的待发货订单'; break; case '2': $sendData = [ 'content' => $shopOrder['order_code'], 'express_time' => $shopOrder['express_time'], 'product_name' => $shopOrder['product_name'], ]; // $content = $preg_res ? $data['order_code'] : $data['order_code']; break; default: $content = ''; break; } } else if (in_array($data['type'], [3])) { $sendData = [ 'content' => $tpl_content ]; } $Result = !empty($sendData) ? sendSms($post['scene'], $post['mobile'], $sendData) : ['status' => 0, 'msg' => '没有发送内容']; if (intval($Result['status']) == 1) { $this->success('发送成功!'); } else { $this->error($Result['msg']); } } //发送表单提醒 else if (isset($post['scene']) && $post['scene'] == 11) { //查询消息通知模板的内容 $sms_config = tpCache('sms'); // if (empty($sms_config['sms_guestbook_send'])) { // $this->error("配置不接收留言短信提醒"); // } $sms_type = $sms_config['sms_type'] ? intval($sms_config['sms_type']) : 1; $tpl_content = Db::name('sms_template')->where(["send_scene" => $post['scene'], "sms_type" => $sms_type, 'is_open' => 1])->value('tpl_content'); if (!$tpl_content) return false; $Result = sendSms($post['scene'], $sms_config['sms_test_mobile'], []); if (intval($Result['status']) == 1) { $this->success('发送成功!'); } else { $this->error($Result['msg']); } /* END */ } // 其他类型发送短信处理 else { if (isset($post['type']) && in_array($post['type'], ['users_mobile_reg', 'users_mobile_login', 'reg'])) { // 数据验证 $rule = [ 'mobile' => 'require|token:__mobile_1_token__', ]; $message = [ 'mobile.require' => '请输入手机号码!', ]; $validate = new \think\Validate($rule, $message); if (!$validate->batch()->check($post)) { $this->error('表单令牌过期,请尝试刷新页面~'); } $post['is_mobile'] = true; } $mobile = !empty($post['mobile']) ? $post['mobile'] : session('mobile'); if (empty($mobile)) $this->error('请先绑定手机号码'); // 手机可用性验证 $is_mobile = !empty($post['is_mobile']) ? $post['is_mobile'] : false; if (!empty($is_mobile)) { /*是否存在手机号码*/ $where = [ 'mobile' => $mobile ]; $users_id = session('users_id'); if (!empty($users_id)) $where['users_id'] = ['NEQ', $users_id]; $Result = Db::name('users')->where($where)->count(); /* END */ if (0 == $post['source']) { if (!empty($Result)) $this->error('手机号码已注册'); } else if (2 == $post['source']) { if (empty($Result)) $this->error('手机号码未注册'); } else if (4 == $post['source']) { if (empty($Result)) $this->error('手机号码不存在'); } else { if (!empty($Result)) $this->error('手机号码已存在'); } } /*是否允许再次发送*/ $where = [ 'mobile' => $mobile, 'source' => $source, 'status' => 1, 'is_use' => 0, 'add_time' => ['>', getTime() - 120] ]; $Result = Db::name('sms_log')->where($where)->order('id desc')->count(); if (!empty($Result) && false == config('sms_debug')) $this->error('120秒内只能发送一次!'); /* END */ /*图形验证码判断*/ if (!empty($post['IsVertify']) || (isset($post['type']) && in_array($post['type'], ['users_mobile_reg', 'users_mobile_login', 'bind', 'other']))) { if (empty($post['vertify'])) $this->error('请输入图形验证码!'); $verify = new \think\Verify(); if (!$verify->check($post['vertify'], $post['type'])) $this->error('图形验证码错误!', null, ['code' => 'vertify']); } /* END */ /*发送并返回结果*/ $Result = sendSms($source, $mobile, array('content' => mt_rand(1000, 9999))); if (intval($Result['status']) == 1) { $this->success('发送成功!'); } else { $this->error($Result['msg']); } /* END */ } } } // 判断文章内容阅读权限 public function get_arcrank($aid = '', $vars = '',$tid = '') { $aid = intval($aid); $tid = intval($tid); $vars = intval($vars); $gourl = input('param.gourl/s'); $gourl = urldecode($gourl); $gourl = !empty($gourl) ? urldecode($gourl) : ROOT_DIR . '/'; if ((IS_AJAX || !empty($vars)) && !empty($aid)) { // 用户ID $users_id = session('users_id'); // 文章查看所需等级值 $Arcrank = Db::name('archives')->alias('a') ->field('a.users_id, a.arcrank,c.typearcrank,c.page_limit') ->join('__ARCTYPE__ c', 'a.typeid = c.id', 'LEFT') ->where(['a.aid' => $aid]) ->find(); $Arcrank['page_limit'] = empty($Arcrank['page_limit']) ? [] : explode(',', $Arcrank['page_limit']); //文章存在限制条件,优先使用文章限制条件;如不存在,则使用栏目限制条件。 if (empty($Arcrank['arcrank']) && (!empty($Arcrank['typearcrank']) && $Arcrank['typearcrank'] > 0 && in_array(2, $Arcrank['page_limit']))) { $Arcrank['arcrank'] = $Arcrank['typearcrank']; } if (!empty($users_id)) { // 会员级别等级值 $UsersDataa = Db::name('users')->alias('a') ->field('a.users_id,b.level_value,b.level_name') ->join('__USERS_LEVEL__ b', 'a.level = b.level_id', 'LEFT') ->where(['a.users_id' => $users_id]) ->find(); if (0 == $Arcrank['arcrank']) { if (IS_AJAX) { $this->success('允许查阅!'); } else { return true; } } else if (-1 == $Arcrank['arcrank']) { $is_admin = session('?admin_id') ? 1 : 0; $param_admin_id = input('param.admin_id/d'); if ($users_id == $Arcrank['users_id']) { if (IS_AJAX) { $this->success('允许查阅!', null, ['is_admin' => $is_admin, 'msg' => '待审核稿件,仅限自己查看!']); } else { return true; } } else if (!empty($is_admin) && !empty($param_admin_id)) { if (IS_AJAX) { $this->success('允许查阅!', null, ['is_admin' => $is_admin, 'msg' => '待审核稿件,仅限管理员查看!']); } else { return true; } } else { $msg = '待审核稿件,你没有权限阅读!'; } } else if ($UsersDataa['level_value'] < $Arcrank['arcrank']) { $level_name = Db::name('users_level')->where(['level_value' => $Arcrank['arcrank']])->getField('level_name'); $msg = '__html__内容需要【' . $level_name . '】才可以查看{$web_name}
{$send_content_str}
"; if (isMobile()) { $html .= "——来源:移动端
"; } else { $html .= "——来源:电脑端
"; } // 发送邮件 $res = send_email(null, null, $html, $scene); /* END */ return $res; } //下载付费 public function get_download($aid = 0) { if (empty($aid)) { $this->error('缺少文档id'); } $artData = Db::name('archives') ->where('aid', $aid) ->find(); $artData['arc_level_value'] = 0; if (0 < $artData['arc_level_id']) { $artData['arc_level_value'] = Db::name('users_level')->where(['level_id' => $artData['arc_level_id']])->value('level_value'); } $users_id = session('users_id'); $UsersData = empty($users_id) ? [] : GetUsersLatestData(); $canDownload = 0; $buyVip = 0; $msg = ''; $download_tips = ''; if (empty($artData['restric_type'])) { // 免费 $canDownload = 1; } else if (1 == $artData['restric_type']) { // 付费 // 查询是否已购买 $where = [ 'order_status' => 1, 'product_id' => intval($aid), 'users_id' => $users_id ]; $count = Db::name('download_order')->where($where)->count(); if (!empty($count)) { $canDownload = 1; $download_tips = '您已购买,可直接下载'; } } else if (2 == $artData['restric_type']) { // 会员专享 if ($UsersData['level_value'] >= $artData['arc_level_value']) { $canDownload = 1; $download_tips = "您已是{$UsersData['level_name']},可直接下载"; } else { if (0 == $artData['no_vip_pay']) { $buyVip = 1; } else { $where = [ 'order_status' => 1, 'product_id' => intval($aid), 'users_id' => $users_id ]; $count = Db::name('download_order')->where($where)->count(); if (!empty($count)) { $canDownload = 1; $download_tips = '您已购买,可直接下载'; } } } } else if (3 == $artData['restric_type']) { // 会员付费 if ($UsersData['level_value'] >= $artData['arc_level_value']) { // 查询是否已购买 $where = [ 'order_status' => 1, 'product_id' => intval($aid), 'users_id' => $users_id ]; $count = Db::name('download_order')->where($where)->count(); if (!empty($count)) { $canDownload = 1; $download_tips = '您已购买,可直接下载'; } } else { $buyVip = 1; } } $result['canDownload'] = $canDownload; $result['download_tips'] = $download_tips; if (1 == $buyVip) { $result['onclick'] = 'BuyVipClick();'; } else { if (isMobile()) { $result['onclick'] = 'ey_download_v866225(' . $aid . ');';//第一种跳转页面支付 } else { $result['onclick'] = 'DownloadBuyNow1655866225(' . $aid . ');';//第二种弹框页支付 } } $this->success('success', null, $result); } public function get_user_download($aid = 0) { if (empty($aid)) { $this->error('缺少文档id'); } /*$artData = Db::name('archives') ->where('aid', $aid) ->find(); $artData['arc_level_value'] = 0; if (0 < $artData['arc_level_id']) { $artData['arc_level_value'] = Db::name('users_level')->where(['level_id' => $artData['arc_level_id']])->value('level_value'); }*/ //dump($artData); $users_id = session('users_id'); if(empty($users_id)){ $this->error('请先登录!', '/?m=user&c=Users&a=login', []); } //已经登录,注册时已填写信息 $art = Db::name('archives') ->where('aid', $aid) ->find(); $artData = Db::name('zczygz_content')->where('aid', $aid) ->find(); if(empty($artData) || empty($artData['down'])){ $this->error('文档不存在,请联系客服!', '', []); } //查询下载记录 // 当前时间减去10分钟 $time_10_minutes_ago = strtotime("-1 minutes"); // 格式化时间为Y-m-d H:i:s $formatted_time = date("Y-m-d H:i:s", $time_10_minutes_ago); $down_log = Db::name('users_down') ->where('add_time','> time',$formatted_time) ->where(['users_id'=>$users_id,'aid' => $aid])->count(); if(!empty($down_log) && $down_log >= 1){ $this->error('不允许频繁下载,点击下载后请等待一分钟再重试!', '', []); }else{ $lc_time = date("Y-m-d 00:00:01", time()); //可以再限制 每天只能下载几次 $down_log = Db::name('users_down') ->where('add_time','> time',$lc_time) ->where(['users_id'=>$users_id,'aid' => $aid])->count(); if(!empty($down_log) && $down_log >= 10){ $this->error('同一文件今日最多下载10次!', '', []); } } /* * 执行下载记录 生成 每条记录有效时间 1小时 * 过后得重新 点击下载 生成新的下载链接 * 每天 同一文档 最多下载10次 * 每条下载记录 最多下载3次 就无效 */ // 启动事务 $run = 0; Db::startTrans(); try{ $expire_time = strtotime("+60 minutes"); //记录下载数,二次下载也记录 $inser_log = [ 'users_id' => $users_id, 'aid' => $aid, 'channel' => 103, 'typeid' => $art['typeid'], 'title' => $art['title'], 'add_time' => time(), 'update_time' => time(), 'expire_time' => $expire_time, 'num' => 0 ]; $log_id = Db::name('users_down')->insertGetId($inser_log); if((int)$log_id > 0){ //正常得到ID }else{ $run = 1; } //下载数 $op = Db::name('archives')->where('aid', $aid)->setInc('downcount'); if((int)$op !== 1){ $run = 2; } if($run === 0){ $error_msg = '提交'; // 提交事务 Db::commit(); }else{ Db::rollback(); } } catch (\Exception $e) { $run = 3; // 回滚事务 Db::rollback(); } if($run > 0){ $this->error('事务执行异常!', '', ['event'=>$run,'log'=>$error_msg]); }else{ // $result = [ //'down' => $artData['down'] 'down' => 'https://www.zc10000.com/api/diyajax/downfile?id='.$log_id ]; $this->success('下载请求成功', null, $result); } } public function get_user_like($aid = 0){ if (empty($aid)) { $this->error('缺少文档id'); } $users_id = session('users_id'); if(empty($users_id)){ $this->error('请先登录!', '/?m=user&c=Users&a=login', []); } //已经登录,注册时已填写信息 $art = Db::name('archives') ->where('aid', $aid) ->find(); if(empty($art)){ $this->error('文档不存在,请联系客服!', '', []); } /* //查询下载记录 // 当前时间减去10分钟 $time_10_minutes_ago = strtotime("-5 seconds"); // 格式化时间为Y-m-d H:i:s $formatted_time = date("Y-m-d H:i:s", $time_10_minutes_ago); $down_log = Db::name('users_like') ->where('update_time','> time',$formatted_time) ->where(['users_id'=>$users_id,'aid' => $aid])->count(); if(!empty($down_log) && $down_log >= 1){ $this->error('不允许频繁点赞或取消,请等待5s后重试!', '', []); }*/ // 启动事务 $run = 0; Db::startTrans(); try{ //记录下载数,二次下载也记录 $row = Db::name('users_like') ->where(['users_id'=>$users_id,'aid' => $aid])->find(); if(!empty($row)){ //更新 $inser_log = [ 'is_del' => (int)$row['is_del']===0?1:0, 'update_time' => time(), ]; $log_id = Db::name('users_like') ->where(['users_id' => $users_id,'aid' => $aid]) ->update($inser_log); if((int)$log_id !== 1){ $run = 1; } }else{ //新增 $inser_log = [ 'users_id' => $users_id, 'aid' => $aid, 'channel' => 103, 'typeid' => $art['typeid'], 'title' => $art['title'], 'add_time' => time(), 'update_time' => time(), ]; $log_id = Db::name('users_like')->insert($inser_log); if((int)$log_id !== 1){ $run = 1; } } if((int)$row['is_del'] === 1 || empty($row)){ //点赞数 $op = Db::name('archives')->where('aid', $aid)->setInc('likecount'); if((int)$op !== 1){ $run = 2; } $msg = '点赞成功'; $type = 1; $likecount = $art['likecount'] + 1; }else{ //(取消点赞) $msg = '取消成功'; $type = 0; $likecount = $art['likecount']; if((int)$art['likecount'] > 0){ $op = Db::name('archives')->where('aid', $aid)->setDec('likecount'); if((int)$op !== 1){ $run = 2; } $likecount = $art['likecount'] - 1; } } if($run === 0){ $error_msg = '提交'; // 提交事务 Db::commit(); }else{ Db::rollback(); } } catch (\Exception $e) { $run = 3; // 回滚事务 Db::rollback(); } if($run > 0){ $this->error('事务执行异常!', '', ['event'=>$run,'log'=>$error_msg]); }else{ // $result = [ 'likecount' => $likecount, 'log' => $down_log, 'type' => $type ]; $this->success($msg, null, $result); } } public function get_user_collect($aid = 0){ if (empty($aid)) { $this->error('缺少文档id'); } $users_id = session('users_id'); if(empty($users_id)){ $this->error('请先登录!', '/?m=user&c=Users&a=login', []); } //已经登录,注册时已填写信息 $art = Db::name('archives') ->where('aid', $aid) ->find(); if(empty($art)){ $this->error('文档不存在,请联系客服!', '', []); } /* //查询下载记录 // 当前时间减去10分钟 $time_10_minutes_ago = strtotime("-5 seconds"); // 格式化时间为Y-m-d H:i:s $formatted_time = date("Y-m-d H:i:s", $time_10_minutes_ago); $down_log = Db::name('users_collection') ->where('update_time','> time',$formatted_time) ->where(['users_id'=>$users_id,'aid' => $aid])->count(); if(!empty($down_log) && $down_log >= 1){ $this->error('不允许频繁点赞或取消,请等待5s后重试!', '', []); }*/ // 启动事务 $run = 0; Db::startTrans(); try{ //记录下载数,二次下载也记录 $row = Db::name('users_collection') ->where(['users_id'=>$users_id,'aid' => $aid])->find(); if(!empty($row)){ //更新 $inser_log = [ 'is_del' => (int)$row['is_del']===0?1:0, 'update_time' => time(), ]; $log_id = Db::name('users_collection') ->where(['users_id' => $users_id,'aid' => $aid]) ->update($inser_log); if((int)$log_id !== 1){ $run = 1; } }else{ //新增 $inser_log = [ 'users_id' => $users_id, 'aid' => $aid, 'channel' => 103, 'typeid' => $art['typeid'], 'title' => $art['title'], 'add_time' => time(), 'update_time' => time(), ]; $log_id = Db::name('users_collection')->insert($inser_log); if((int)$log_id !== 1){ $run = 1; } } if((int)$row['is_del'] === 1 || empty($row)){ //点赞数 $op = Db::name('archives')->where('aid', $aid)->setInc('collection'); if((int)$op !== 1){ $run = 2; } $msg = '收藏成功'; $type = 1; $likecount = $art['collection'] + 1; }else{ //(取消点赞) $msg = '取消成功'; $type = 0; $likecount = $art['collection']; if((int)$art['collection'] > 0){ $op = Db::name('archives')->where('aid', $aid)->setDec('collection'); if((int)$op !== 1){ $run = 2; } $likecount = $art['collection'] - 1; } } if($run === 0){ $error_msg = '提交'; // 提交事务 Db::commit(); }else{ Db::rollback(); } } catch (\Exception $e) { $run = 3; // 回滚事务 Db::rollback(); } if($run > 0){ $this->error('事务执行异常!', '', ['event'=>$run,'log'=>$error_msg]); }else{ // $result = [ 'collection' => $likecount, 'log' => $down_log, 'type' => $type ]; $this->success($msg, null, $result); } } public function sendNotice() { $users_id = input('post.users_id/d'); $order_id = input('post.order_id/d'); $send_scene = input('post.send_scene/d'); if (7 == $send_scene) { $params = [ 'users_id' => $users_id, 'result_id' => $order_id, ]; eyou_send_notice($send_scene, $params); } } public function defaultAuthorize() { // 管理员ID $admin_id = input('param.admin_id'); if (empty($admin_id)) $this->error('获取用户信息错误,请重新生成二维码并扫码!'); // 公众号配置 $conf_wechat = tpSetting("OpenMinicode.conf_wechat"); $conf_wechat = !empty($conf_wechat) ? json_decode($conf_wechat, true) : []; // 回调链接 $url = urlencode(url('api/Ajax/defaultGetWechatUserinfo', ['admin_id' => $admin_id], true, true)); // 静默授权链接 $redirect = "https://open.weixin.qq.com/connect/oauth2/authorize?appid=" . strval($conf_wechat['appid']) . "&redirect_uri=" . $url . "&response_type=code&scope=snsapi_base&state=eyoucmswechat_redirect"; // 重定向链接 $this->redirect($redirect); } public function defaultGetWechatUserinfo() { // 通过微信code获取用户access_token $code = input('param.code/s', ''); $admin_id = input('param.admin_id/d', 0); if (empty($code) || empty($admin_id)) $this->error('获取用户信息错误,请重新生成二维码并扫码!'); // 公众号配置 $conf_wechat = tpSetting("OpenMinicode.conf_wechat"); $conf_wechat = !empty($conf_wechat) ? json_decode($conf_wechat, true) : []; // 获取微信用户信息 $url = 'https://api.weixin.qq.com/sns/oauth2/access_token?appid=' . strval($conf_wechat['appid']) . '&secret=' . strval($conf_wechat['appsecret']) . '&code=' . $code . '&grant_type=authorization_code'; $result = json_decode(httpRequest($url), true); if (empty($result) || (!empty($result['errcode']) && !empty($result['errmsg']))) $this->error('Code已过期,请重新生成二维码并扫码!'); // 获取成功则进行关联绑定 if (!empty($result['openid']) && !empty($admin_id)) { $update = [ 'wechat_open_id' => $result['openid'], 'update_time' => getTime(), ]; Db::name('admin')->where('admin_id', $admin_id)->update($update); } // 查询用户是否关注了公众号 $tokenData = get_wechat_access_token(); if (!empty($tokenData)) { $result['openid'] = Db::name('admin')->where('admin_id', $admin_id)->getField('wechat_open_id'); $userInfo = 'https://api.weixin.qq.com/cgi-bin/user/info?access_token=' . $tokenData['access_token'] . '&openid=' . $result['openid'] . '&lang=zh_CN'; $userInfo = json_decode(httpRequest($userInfo), true); // 关注则执行关联关注 if (!empty($userInfo['subscribe']) && $userInfo['openid'] == $result['openid']) { $update = [ 'wechat_followed' => 1, 'update_time' => getTime(), ]; Db::name('admin')->where('admin_id', $admin_id)->update($update); // 显示成功信息 $this->redirect(url('api/Ajax/showSuccessInfo', ['info' => '您已关注过,绑定成功!'], true, true)); } } else { $this->error($tokenData['msg']); } // 用户尚未关注公众号,显示公众号二维码 $this->redirect(url('api/Ajax/showWechatQrCode', ['admin_id' => $admin_id], true, true)); } public function showSuccessInfo() { $info = input('param.info/s', ''); echo '