| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920 |
- <?php
- namespace app\index\controller;
- use think\Controller;
- use think\Request;
- use login\ThinkOauth;
- use app\index\event\LoginEvent;
- use app\common\util\Qrcode;
- class User extends Base
- {
- public function __construct()
- {
- parent::__construct();
- define('THIRD_LOGIN_CALLBACK', $GLOBALS['http_type'] . $_SERVER['HTTP_HOST'] . '/index.php/user/logincallback/type/');
- //判断用户登录状态
- $ac = request()->action();
- if (in_array($ac, ['login', 'logout', 'ajax_login', 'reg', 'findpass', 'findpass_msg', 'findpass_reset', 'reg_msg', 'oauth', 'logincallback','visit'])) {
- } else {
- if ($GLOBALS['user']['user_id'] < 1) {
- model('User')->logout();
- return $this->error(lang('index/no_login').'', url('user/login'));
- }
- /*
- $res = model('User')->checkLogin();
- if($res['code']>1){
- model('User')->logout();
- return $this->error($res['msg'], url('user/login'));
- }
- */
- $this->assign('obj', $GLOBALS['user']);
- }
- }
- public function ajax_login()
- {
- return $this->fetch('user/ajax_login');
- }
- public function ajax_info()
- {
- return $this->fetch('user/ajax_info');
- }
- public function ajax_ulog()
- {
- $param = input();
- if ($param['ac'] == 'set') {
- $data = [];
- $data['ulog_mid'] = intval($param['mid']);
- $data['ulog_rid'] = intval($param['id']);
- $data['ulog_type'] = intval($param['type']);
- $data['ulog_sid'] = intval($param['sid']);
- $data['ulog_nid'] = intval($param['nid']);
- $data['user_id'] = $GLOBALS['user']['user_id'];
- if ($data['ulog_mid'] == 1 && $data['ulog_type'] > 3) {
- $where2 = [];
- $where2['vod_id'] = $data['ulog_rid'];
- $res = model('Vod')->infoData($where2);
- if ($res['code'] > 1) {
- return $res;
- }
- $flag = $data['ulog_type'] == 4 ? 'play' : 'down';
- $data['ulog_points'] = $res['info']['vod_points_' . $flag];
- }
- $data['ulog_points'] = intval($data['ulog_points']);
- $res = model('Ulog')->infoData($data);
- if ($res['code'] == 1) {
- $r = model('Ulog')->where($data)->update(['ulog_time'=>time()]);
- return json($res);
- }
- if ($data['ulog_points'] == 0) {
- $res = model('Ulog')->saveData($data);
- } else {
- $res = ['code' => 2001, 'msg' => lang('index/ulog_fee')];
- }
- } else {
- $where = [];
- $where['user_id'] = $GLOBALS['user']['user_id'];
- $param['page'] = intval($param['page']) < 1 ? 1 : intval($param['page']);
- $param['limit'] = intval($param['limit']) < 1 ? 10 : intval($param['limit']);
- if(intval($param['mid'])>0){
- $where['ulog_mid'] = ['eq',intval($param['mid'])];
- }
- if(intval($param['id'])>0){
- $where['ulog_rid'] = ['eq',intval($param['id'])];
- }
- if(intval($param['type'])>0){
- $where['ulog_type'] = ['eq',intval($param['type'])];
- }
- $order = 'ulog_time desc';
- $res = model('Ulog')->listData($where, $order, $param['page'], $param['limit']);
- }
- return json($res);
- }
- public function ajax_buy_popedom()
- {
- $param = input();
- $data = [];
- $data['ulog_mid'] = intval($param['mid']) <=0 ? 1: intval($param['mid']);
- $data['ulog_rid'] = intval($param['id']);
- $data['ulog_sid'] = intval($param['sid']);
- $data['ulog_nid'] = intval($param['nid']);
- if (!in_array($param['mid'], ['1','2']) || !in_array($param['type'], ['1','4','5']) || empty($data['ulog_rid']) ) {
- return json(['code' => 2001, 'msg' => lang('param_err')]);
- }
- $data['ulog_type'] = $param['type'];
- $data['user_id'] = $GLOBALS['user']['user_id'];
- $where = [];
- if($param['type']=='1'){
- $where['art_id'] = $data['ulog_rid'];
- $res = model('Art')->infoData($where);
- if ($res['code'] > 1) {
- return json([$res]);
- }
- $col = 'art_points_detail';
- if($GLOBALS['config']['user']['art_points_type']=='1'){
- $col='art_points';
- $data['ulog_sid']=0;
- $data['ulog_nid']=0;
- }
- }
- else{
- $where['vod_id'] = $data['ulog_rid'];
- $res = model('Vod')->infoData($where);
- if ($res['code'] > 1) {
- return json([$res]);
- }
- $col = 'vod_points_' . ($param['type'] == '4' ? 'play' : 'down');
- if($GLOBALS['config']['user']['vod_points_type']=='1'){
- $col='vod_points';
- $data['ulog_sid']=0;
- $data['ulog_nid']=0;
- }
- }
- $data['ulog_points'] = intval($res['info'][$col]);
- $res = model('Ulog')->infoData($data);
- if ($res['code'] == 1) {
- return json(['code' => 1, 'msg' => lang('index/buy_popedom1')]);
- }
- if ($data['ulog_points'] > $GLOBALS['user']['user_points']) {
- return json(['code' => 2002, 'msg' => lang('index/buy_popedom3',[$data['ulog_points'],$GLOBALS['user']['user_points']])]);
- } else {
- $where = [];
- $where['user_id'] = $GLOBALS['user']['user_id'];
- $res = model('User')->where($where)->setDec('user_points',$data['ulog_points']);
- if ($res === false) {
- return json(['code' => 2003, 'msg' => lang('index/buy_popedom2')]);
- }
- //积分日志
- $data2 = [];
- $data2['user_id'] = $GLOBALS['user']['user_id'];
- $data2['plog_type'] = 8;
- $data2['plog_points'] = $data['ulog_points'];
- model('Plog')->saveData($data2);
- //分销日志
- model('User')->reward($data['ulog_points']);
- $res = model('Ulog')->saveData($data);
- return json($res);
- }
- }
- public function index()
- {
- return $this->fetch('user/index');
- }
- public function login()
- {
- if (Request()->isPost()) {
- $param = input();
- $res = model('User')->login($param);
- return json($res);
- }
- if (!empty(cookie('user_id') && !empty(cookie('user_name')))) {
- return redirect('user/index');
- }
- return $this->fetch('user/login');
- }
- public function logout()
- {
- $res = model('User')->logout();
- if (request()->isAjax()) {
- return json($res);
- } else {
- return redirect('user/login');
- }
- }
- public function oauth($type = '')
- {
- empty($type) && $this->error(lang('param_err'));
- //加载ThinkOauth类并实例化一个对象
- $sns = ThinkOauth::getInstance($type);
- //跳转到授权页面
- $this->redirect($sns->getRequestCodeURL());
- }
- //授权回调地址
- public function logincallback($type = '', $code = '')
- {
- if (empty($type) || empty($code)) {
- return $this->error(lang('param_err'));
- }
- //加载ThinkOauth类并实例化一个对象
- $sns = ThinkOauth::getInstance($type);
- $extend = null;
- //请妥善保管这里获取到的Token信息,方便以后API调用
- $token = $sns->getAccessToken($code, $extend);
- //获取当前登录用户信息
- if (is_array($token)) {
- $loginEvent = new LoginEvent();
- $res = $loginEvent->$type($token);
- if ($res['code'] == 1) {
- $openid = $res['info']['openid'];
- $col = 'user_openid_' . $type;
- //如果已登录,是否需要重新绑定
- $check = model('User')->checkLogin();
- if ($check['code'] == 1) {
- if ($check['info'][$col] == $openid) {
- //无需再次绑定
- return json(['code' => 1001, 'msg' => lang('index/bind_haved')]);
- } else {
- //解除原有绑定
- $where = [];
- $where[$col] = $openid;
- $update = [];
- $update[$col] = '';
- model('User')->where($where)->update($update);
- //新绑定
- $where = [];
- $where['user_id'] = $GLOBALS['user']['user_id'];
- $update = [];
- $update[$col] = $openid;
- model('User')->where($where)->update($update);
- return json(['code' => 1, 'msg' => lang('index/bind_ok')]);
- }
- }
- $where = [];
- $where[$col] = $openid;
- $res2 = model('User')->infoData($where);
- //未绑定的需要先创建用户并绑定
- if ($res2['code'] > 1) {
- $data = [];
- $data['user_name'] = substr($openid, 0, 10);
- $data['user_nick_name'] = htmlspecialchars(urldecode(trim($res['info']['name'])));
- $pwd = time();
- $data['user_pwd'] = $pwd;
- $data['user_pwd2'] = $pwd;
- $data[$col] = $openid;
- $reg = model('User')->register($data);
- if ($reg['code'] > 1) {
- //注册失败
- return $this->error(lang('index/logincallback1'));
- }
- }
- //直接登录。。。
- $login = model('User')->login(['col' => $col, 'openid' => $openid]);
- if ($login['code'] > 1) {
- return $this->error($login['msg']);
- }
- $this->redirect('user/index');
- } else {
- return $this->error($res['msg']);
- }
- } else {
- return $this->error(lang('index/logincallback2'));
- }
- }
- public function bindmsg()
- {
- $param = input();
- $res = model('User')->bindmsg($param);
- return json($res);
- }
- public function bind()
- {
- $param = input();
- if (Request()->isPost()) {
- $res = model('User')->bind($param);
- return json($res);
- }
- if (empty($param['ac'])) {
- $param['ac'] = 'email';
- }
- $this->assign('ac', $param['ac']);
- $this->assign('param',$param);
- return $this->fetch('user/bind');
- }
- public function unbind()
- {
- $param = input();
- if (Request()->isPost()) {
- $res = model('User')->unbind($param);
- return json($res);
- }
- $this->assign('param',$param);
- return $this->fetch('user/unbind');
- }
- public function info()
- {
- $param = input();
- if (Request()->isPost()) {
- $res = model('User')->info($param);
- if ($res['code'] == 1) {
- $this->success($res['msg']);
- exit;
- }
- $this->error($res['msg']);
- exit;
- }
- $this->assign('param',$param);
- return $this->fetch('user/info');
- }
- public function regcheck()
- {
- $param = input();
- $t = htmlspecialchars(urldecode(trim($param['t'])));
- $str = htmlspecialchars(urldecode(trim($param['str'])));
- $res = model('User')->regcheck($t, $str);
- if ($res['code'] > 1) {
- return $str;
- }
- return json($res);
- }
- public function reg()
- {
- $param = input();
- if (Request()->isPost()) {
- if (!empty(cookie('uid'))) {
- $param['uid'] = intval(cookie('uid'));
- }
- $res = model('User')->register($param);
- if ($res['code'] > 1) {
- return json($res);
- }
- $GLOBALS['config']['user']['login_verify'] = '0';
- $res = model('User')->login($param);
- $res['msg'] = lang('index/reg_ok').',' . $res['msg'];
- return json($res);
- }
- if (!empty($param['uid'])) {
- cookie('uid', $param['uid']);
- }
- $user_config = $GLOBALS['config']['user'];
- $this->assign('user_config', $user_config);
- $this->assign('param', $param);
- return $this->fetch('user/reg');
- }
- public function reg_msg()
- {
- $param = input();
- $res = model('User')->reg_msg($param);
- return json($res);
- }
- public function portrait()
- {
- if(request()->isPost()){
- if ($GLOBALS['config']['user']['portrait_status'] == 0) {
- return json(['code' => 0, 'msg' => lang('index/portrait_tip1')]);
- }
- $param=[];
- $param['input'] = 'file';
- $param['flag'] = 'user';
- $param['user_id'] = $GLOBALS['user']['user_id'];
- $res = model('Upload')->upload($param);
- return json($res);
- }
- return $this->fetch('user/portrait');
- }
- public function findpass()
- {
- $param = input();
- if (Request()->isPost()) {
- $res = model('User')->findpass($param);
- return json($res);
- }
- $this->assign('param',$param);
- return $this->fetch('user/findpass');
- }
- public function findpass_msg()
- {
- $param = input();
- if (Request()->isPost()) {
- $res = model('User')->findpass_msg($param);
- return json($res);
- }
- $param['ac_text'] = $param['ac'] == 'phone' ? lang('mobile') : lang('email');
- $this->assign('param', $param);
- return $this->fetch('user/findpass_msg');
- }
- public function findpass_reset()
- {
- if (Request()->isPost()) {
- $param = input();
- $res = model('User')->findpass_reset($param);
- return json($res);
- }
- }
- public function buy()
- {
- $param = input();
- if (Request()->isPost()) {
- $flag = input('param.flag');
- if ($flag == 'card') {
- $card_no = htmlspecialchars(urldecode(trim($param['card_no'])));
- $card_pwd = htmlspecialchars(urldecode(trim($param['card_pwd'])));
- $res = model('Card')->useData($card_no, $card_pwd, $GLOBALS['user']);
- return json($res);
- } else {
- $price = input('param.price');
- if (empty($price)) {
- return json(['code' => 1001, 'msg' => lang('param_err')]);
- }
- if ($price < $GLOBALS['config']['pay']['min']) {
- return json(['code' => 1002, 'msg' =>lang('index/min_pay',[$GLOBALS['config']['pay']['min']])]);
- }
- $data = [];
- $data['user_id'] = $GLOBALS['user']['user_id'];
- $data['order_code'] = 'PAY' . mac_get_uniqid_code();
- $data['order_price'] = $price;
- $data['order_time'] = time();
- $data['order_points'] = intval($GLOBALS['config']['pay']['scale'] * $price);
- $res = model('Order')->saveData($data);
- $res['data'] = $data;
- return json($res);
- }
- }
- $this->assign('param',$param);
- $this->assign('config', $GLOBALS['config']['pay']);
- return $this->fetch('user/buy');
- }
- public function pay()
- {
- $param = input();
- $order_code = htmlspecialchars(urldecode(trim($param['order_code'])));
- $where = [];
- $where['order_code'] = $order_code;
- $where['user_id'] = $GLOBALS['user']['user_id'];
- $res = model('Order')->infoData($where);
- if ($res['code'] > 1) {
- return $this->error($res['msg']);
- }
- $this->assign('param',$param);
- $this->assign('config', $GLOBALS['config']['pay']);
- $this->assign('info', $res['info']);
- $extends = mac_extends_list('pay');
- $this->assign('extends',$extends);
- $this->assign('ext_list',$extends['ext_list']);
- return $this->fetch('user/pay');
- }
- public function gopay()
- {
- $param = input();
- $order_code = htmlspecialchars(urldecode(trim($param['order_code'])));
- $order_id = intval((trim($param['order_id'])));
- $payment = strtolower(htmlspecialchars(urldecode(trim($param['payment']))));
- if (empty($order_code) && empty($order_id) && empty($payment)) {
- return $this->error(lang('param_err'));
- }
- if ($GLOBALS['config']['pay'][$payment]['appid'] == '') {
- return $this->error(lang('index/payment_status'));
- }
- //核实订单
- $where['order_id'] = $order_id;
- $where['order_code'] = $order_code;
- $where['user_id'] = $GLOBALS['user']['user_id'];
- $res = model('Order')->infoData($where);
- if ($res['code'] > 1) {
- return $this->error(lang('index/order_not'));
- }
- if ($res['info']['order_status'] == 1) {
- return $this->error(lang('index/order_payed'));
- }
- $this->assign('order', $res['info']);
- //跳转到相应页面
- $this->assign('param',$param);
- $cp = 'app\\common\\extend\\pay\\' . ucfirst($payment);
- if (class_exists($cp)) {
- $c = new $cp;
- $payment_res = $c->submit($GLOBALS['user'], $res['info'], $param);
- }
- //$payment_res = model('Pay' . $payment)->submit($this->user, $res['info'], $param);
- if ($payment == 'weixin') {
- $this->assign('payment', $payment_res);
- return $this->fetch('user/payment_weixin');
- }
- }
- public function qrcode()
- {
- ob_end_clean();
- header('Content-Type:image/png;');
- $param = input();
- $data = $param['data'];
- if(substr($data, 0, 6) == "weixin") {
- QRcode::png($data,false,QR_ECLEVEL_L,10);
- }
- else{
- return $this->error(lang('param_err'));
- }
- }
- public function upgrade()
- {
- $param = input();
- if (Request()->isPost()) {
- $res = model('User')->upgrade($param);
- return json($res);
- }
- $group_list = model('Group')->getCache();
- $this->assign('group_list', $group_list);
- $this->assign('param',$param);
- return $this->fetch('user/upgrade');
- }
- public function popedom()
- {
- $type_tree = model('Type')->getCache('type_tree');
- $this->assign('type_tree', $type_tree);
- $n = 1;
- $ids = [1 => lang('index/page_type'), 2 => lang('index/page_detail'), 3 => lang('index/page_play'), 4 => lang('index/page_down'), '5' => lang('index/try_see')];
- foreach ($type_tree as $k1 => $v1) {
- unset($type_tree[$k1]['type_extend']);
- foreach ($ids as $a => $b) {
- $n++;
- if ($v1['type_mid'] != 1 && $a > 2) {
- break;
- }
- $type_tree[$k1]['popedom'][$b] = model('User')->popedom($v1['type_id'], $a, $GLOBALS['user']['group_id']);
- }
- foreach ($v1['child'] as $k2 => $v2) {
- unset($type_tree[$k1]['child'][$k2]['type_extend']);
- foreach ($ids as $a => $b) {
- $n++;
- if ($v2['type_mid'] != 1 && $a > 2) {
- break;
- }
- $type_tree[$k1]['child'][$k2]['popedom'][$b] = model('User')->popedom($v2['type_id'], $a, $GLOBALS['user']['group_id']);
- }
- }
- }
- $this->assign('type_tree', $type_tree);
- return $this->fetch('user/popedom');
- }
- public function plays()
- {
- $param = input();
- $param['page'] = intval($param['page']) < 1 ? 1 : intval($param['page']);
- $param['limit'] = intval($param['limit']) < 20 ? 20 : intval($param['limit']);
- $where = [];
- $where['user_id'] = $GLOBALS['user']['user_id'];
- $where['ulog_mid'] = 1;
- $where['ulog_type'] = 4;
- $order = 'ulog_time desc';
- $res = model('Ulog')->listData($where, $order, $param['page'], $param['limit']);
- $this->assign('param',$param);
- $this->assign('list', $res['list']);
- $pages = mac_page_param($res['total'], $param['limit'], $param['page'], url('user/plays', ['page' => 'PAGELINK']));
- $this->assign('__PAGING__', $pages);
- return $this->fetch('user/plays');
- }
- public function downs()
- {
- $param = input();
- $param['page'] = intval($param['page']) < 1 ? 1 : intval($param['page']);
- $param['limit'] = intval($param['limit']) < 20 ? 20 : intval($param['limit']);
- $where = [];
- $where['user_id'] = $GLOBALS['user']['user_id'];
- $where['ulog_mid'] = 1;
- $where['ulog_type'] = 5;
- $order = 'ulog_time desc';
- $res = model('Ulog')->listData($where, $order, $param['page'], $param['limit']);
- $this->assign('param',$param);
- $this->assign('list', $res['list']);
- $pages = mac_page_param($res['total'], $param['limit'], $param['page'], url('user/downs', ['page' => 'PAGELINK']));
- $this->assign('__PAGING__', $pages);
- return $this->fetch('user/downs');
- }
- public function favs()
- {
- $param = input();
- $param['page'] = intval($param['page']) < 1 ? 1 : intval($param['page']);
- $param['limit'] = intval($param['limit']) < 20 ? 20 : intval($param['limit']);
- $where = [];
- $where['user_id'] = $GLOBALS['user']['user_id'];
- if(in_array($param['mid'],['1','2','3','8'])){
- $where['ulog_mid'] = $param['mid'];
- }
- $where['ulog_type'] = 2;
- $order = 'ulog_time desc';
- $res = model('Ulog')->listData($where, $order, $param['page'], $param['limit']);
- $this->assign('param',$param);
- $this->assign('list', $res['list']);
- $pages = mac_page_param($res['total'], $param['limit'], $param['page'], url('user/favs', ['page' => 'PAGELINK']));
- $this->assign('__PAGING__', $pages);
- return $this->fetch('user/favs');
- }
- public function ulog()
- {
- $param = input();
- $param['page'] = intval($param['page']) < 1 ? 1 : intval($param['page']);
- $param['limit'] = intval($param['limit']) < 20 ? 20 : intval($param['limit']);
- $where = [];
- $where['user_id'] = $GLOBALS['user']['user_id'];
- if(in_array($param['mid'],['1','2','3','8'])){
- $where['ulog_mid'] = $param['mid'];
- }
- if(in_array($param['type'],['1','2','3','4','5'])){
- $where['ulog_type'] = $param['type'];
- }
- $order = 'ulog_time desc';
- $res = model('Ulog')->listData($where, $order, $param['page'], $param['limit']);
- $this->assign('param',$param);
- $this->assign('list', $res['list']);
- $pages = mac_page_param($res['total'], $param['limit'], $param['page'], url('user/ulog', ['page' => 'PAGELINK']));
- $this->assign('__PAGING__', $pages);
- return $this->fetch('user/ulog');
- }
- public function ulog_del()
- {
- $param = input();
- $ids = htmlspecialchars(urldecode(trim($param['ids'])));
- $type = $param['type'];
- $all = $param['all'];
- if (!in_array($type, array('1', '2', '3', '4', '5'))) {
- return json(['code' => 1001, 'msg' => lang('param_err')]);
- }
- if (empty($ids) && empty($all)) {
- return json(['code' => 1001, 'msg' => lang('param_err')]);
- }
- $arr = [];
- $ids = explode(',', $ids);
- foreach ($ids as $k => $v) {
- $v = intval(abs($v));
- $arr[$v] = $v;
- }
- $where = [];
- $where['user_id'] = $GLOBALS['user']['user_id'];
- $where['ulog_type'] = $type;
- if ($all != '1') {
- $where['ulog_id'] = array('in', implode(',', $arr));
- }
- $return = model('Ulog')->delData($where);
- return json($return);
- }
- public function plog()
- {
- $param = input();
- $param['page'] = intval($param['page']) < 1 ? 1 : intval($param['page']);
- $param['limit'] = intval($param['limit']) < 20 ? 20 : intval($param['limit']);
- $where = [];
- $where['user_id'] = $GLOBALS['user']['user_id'];
- $order = 'plog_id desc';
- $res = model('Plog')->listData($where, $order, $param['page'], $param['limit']);
- $this->assign('param',$param);
- $this->assign('list', $res['list']);
- $pages = mac_page_param($res['total'], $param['limit'], $param['page'], url('user/plog', ['page' => 'PAGELINK']));
- $this->assign('__PAGING__', $pages);
- return $this->fetch('user/plog');
- }
- public function plog_del()
- {
- $param = input();
- $ids = htmlspecialchars(urldecode(trim($param['ids'])));
- $type = $param['type'];
- $all = $param['all'];
- if (empty($ids) && empty($all)) {
- return json(['code' => 1001, 'msg' => lang('param_err')]);
- }
- $arr = [];
- $ids = explode(',', $ids);
- foreach ($ids as $k => $v) {
- $v = intval(abs($v));
- $arr[$v] = $v;
- }
- $where = [];
- $where['user_id'] = $GLOBALS['user']['user_id'];
- if ($all != '1') {
- $where['plog_id'] = array('in', implode(',', $arr));
- }
- $return = model('Plog')->delData($where);
- return json($return);
- }
- public function cash()
- {
- $param = input();
- if (Request()->isPost()) {
- $param['user_id'] = $GLOBALS['user']['user_id'];
- $res = model('Cash')->saveData($param);
- return json($res);
- }
- $param['page'] = intval($param['page']) < 1 ? 1 : intval($param['page']);
- $param['limit'] = intval($param['limit']) < 20 ? 20 : intval($param['limit']);
- $where = [];
- $where['user_id'] = $GLOBALS['user']['user_id'];
- $order = 'cash_id desc';
- $res = model('Cash')->listData($where, $order, $param['page'], $param['limit']);
- $this->assign('param',$param);
- $this->assign('list', $res['list']);
- $pages = mac_page_param($res['total'], $param['limit'], $param['page'], url('user/cash', ['page' => 'PAGELINK']));
- $this->assign('__PAGING__', $pages);
- return $this->fetch('user/cash');
- }
- public function cash_del()
- {
- $param = input();
- $ids = htmlspecialchars(urldecode(trim($param['ids'])));
- $type = $param['type'];
- $all = $param['all'];
- if (empty($ids) && empty($all)) {
- return json(['code' => 1001, 'msg' => lang('param_err')]);
- }
- $arr = [];
- $ids = explode(',', $ids);
- foreach ($ids as $k => $v) {
- $v = intval(abs($v));
- $arr[$v] = $v;
- }
- $where = [];
- $where['user_id'] = $GLOBALS['user']['user_id'];
- if ($all != '1') {
- $where['cash_id'] = array('in', implode(',', $arr));
- }
- $return = model('Cash')->delData($where);
- return json($return);
- }
- public function reward()
- {
- $param = input();
- $param['page'] = intval($param['page']) < 1 ? 1 : intval($param['page']);
- $param['limit'] = intval($param['limit']) < 20 ? 20 : intval($param['limit']);
- $where = [];
- if($param['level']=='2'){
- $where['user_pid_2'] = ['eq',$GLOBALS['user']['user_id']];
- }
- elseif($param['level']=='3'){
- $where['user_pid_3'] = ['eq',$GLOBALS['user']['user_id']];
- }
- else{
- $where['user_pid'] = ['eq',$GLOBALS['user']['user_id']];
- }
- $order = 'user_id desc';
- $res = model('User')->listData($where, $order, $param['page'], $param['limit']);
- $this->assign('param',$param);
- $this->assign('list', $res['list']);
- $pages = mac_page_param($res['total'], $param['limit'], $param['page'], url('user/reward', ['level'=>$param['level'], 'page' => 'PAGELINK']));
- $this->assign('__PAGING__', $pages);
- return $this->fetch('user/reward');
- }
- public function orders()
- {
- $param = input();
- $param['page'] = intval($param['page']) < 1 ? 1 : intval($param['page']);
- $param['limit'] = intval($param['limit']) < 20 ? 20 : intval($param['limit']);
- $where = [];
- $where['o.user_id'] = $GLOBALS['user']['user_id'];
- $order = 'o.order_id desc';
- $res = model('Order')->listData($where, $order, $param['page'], $param['limit']);
- $pages = mac_page_param($res['total'], $param['limit'], $param['page'], url('user/orders', ['page' => 'PAGELINK']));
- $this->assign('__PAGING__', $pages);
- $this->assign('param',$param);
- $this->assign('list', $res['list']);
- return $this->fetch('user/orders');
- }
- public function order_info()
- {
- $param = input();
- $where = [];
- $where['order_id'] = intval($param['order_id']);
- $res = model('Order')->infoData($where);
- if (request()->isAjax()) {
- return json($res);
- }
- $this->assign('param',$param);
- return $this->fetch('user/order_info');
- }
- public function cards()
- {
- $param = input();
- $param['page'] = intval($param['page']) < 1 ? 1 : intval($param['page']);
- $param['limit'] = intval($param['limit']) < 20 ? 20 : intval($param['limit']);
- $where = [];
- $where['user_id'] = $GLOBALS['user']['user_id'];
- $where['card_use_status'] = 1;
- $order = 'card_id desc';
- $res = model('Card')->listData($where, $order, $param['page'], $param['limit']);
- $pages = mac_page_param($res['total'], $param['limit'], $param['page'], url('user/cards', ['page' => 'PAGELINK']));
- $this->assign('__PAGING__', $pages);
- $this->assign('param',$param);
- $this->assign('list', $res['list']);
- return $this->fetch('user/cards');
- }
- public function comment()
- {
- $param = input();
- $this->assign('param',$param);
- return $this->fetch('user/comment');
- }
- public function gbook()
- {
- $param = input();
- $this->assign('param',$param);
- return $this->fetch('user/gbook');
- }
- public function visit()
- {
- $param = input();
- $res = model('User')->visit($param);
- $url = '/';
- if(!empty($param['url'])){
- $tempu = @parse_url($param['url']);
- if($_SERVER['HTTP_HOST'] == $tempu['host']){
- $url = $param['url'];
- }
- }
- $this->redirect($url);
- }
- }
|