123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- <?php
- /**
- * [WeEngine System] Copyright (c) 2014 WE7.CC
- * WeEngine is NOT a free software, it under the license terms, visited http://www.we7.cc/ for more details.
- */
- defined('IN_IA') or exit('Access Denied');
-
- load()->func('file');
- load()->model('user');
- load()->model('message');
- load()->model('miniapp');
- $dos = array('display', 'delete');
- $do = in_array($_GPC['do'], $dos)? $do : 'display';
-
- $_W['page']['title'] = $account_typename . '列表 - ' . $account_typename;
- $account_info = permission_user_account_num();
- $role_type = in_array($_W['role'], array(ACCOUNT_MANAGE_NAME_FOUNDER, ACCOUNT_MANAGE_NAME_VICE_FOUNDER, ACCOUNT_MANAGE_NAME_OWNER, ACCOUNT_MANAGE_NAME_MANAGER));
-
- if ($do == 'display') {
- $message_id = intval($_GPC['message_id']);
- message_notice_read($message_id);
-
- $pindex = max(1, intval($_GPC['page']));
- $psize = 20;
-
- $account_table = table('account');
-
- $type_condition = array(
- ACCOUNT_TYPE_APP_NORMAL => array(ACCOUNT_TYPE_APP_NORMAL, ACCOUNT_TYPE_APP_AUTH),
- ACCOUNT_TYPE_WEBAPP_NORMAL => array(ACCOUNT_TYPE_WEBAPP_NORMAL),
- ACCOUNT_TYPE_OFFCIAL_NORMAL => array(ACCOUNT_TYPE_OFFCIAL_NORMAL, ACCOUNT_TYPE_OFFCIAL_AUTH),
- ACCOUNT_TYPE_PHONEAPP_NORMAL => array(ACCOUNT_TYPE_PHONEAPP_NORMAL),
- ACCOUNT_TYPE_XZAPP_NORMAL => array(ACCOUNT_TYPE_XZAPP_NORMAL, ACCOUNT_TYPE_XZAPP_AUTH),
- ACCOUNT_TYPE_ALIAPP_NORMAL => array(ACCOUNT_TYPE_ALIAPP_NORMAL),
- );
- $account_table->searchWithType($type_condition[ACCOUNT_TYPE]);
-
- $keyword = trim($_GPC['keyword']);
- if (!empty($keyword)) {
- $account_table->searchWithKeyword($keyword);
- }
-
- if(isset($_GPC['letter']) && strlen($_GPC['letter']) == 1) {
- $account_table->searchWithLetter($_GPC['letter']);
- }
-
- $order = trim($_GPC['order']);
- $account_table->accountUniacidOrder($order);
-
- $type = trim($_GPC['type']);
- if ($type == 'noconnect') {
- $account_table->searchWithNoconnect();
- }
-
- $account_table->searchWithPage($pindex, $psize);
- if ($type == 'expire') {
- $list = $account_table->searchAccountList(true);
- } else {
- $list = $account_table->searchAccountList();
- }
- foreach($list as &$account) {
- $account = uni_fetch($account['uniacid']);
- $account['end'] = $account['endtime'] == 0 ? '永久' : date('Y-m-d', $account['endtime']);
- $account['role'] = permission_account_user_role($_W['uid'], $account['uniacid']);
- $account['versions'] = miniapp_get_some_lastversions($account['uniacid']);
- if (!empty($account['versions'])) {
- foreach ($account['versions'] as $version) {
- if (!empty($version['current'])) {
- $account['current_version'] = $version;
- }
- }
- }
- }
- $list = array_values($list);
- $total = $account_table->getLastQueryTotal();
- $pager = pagination($total, $pindex, $psize);
- template('account/manage-display' . ACCOUNT_TYPE_TEMPLATE);
- }
- if ($do == 'delete') {
- $uniacid = intval($_GPC['uniacid']);
- $acid = intval($_GPC['acid']);
- $uid = $_W['uid'];
- $type = intval($_GPC['type']);
- $state = permission_account_user_role($uid, $uniacid);
-
- if (!in_array($state, array(ACCOUNT_MANAGE_NAME_OWNER, ACCOUNT_MANAGE_NAME_FOUNDER, ACCOUNT_MANAGE_NAME_VICE_FOUNDER))) {
- itoast('无权限操作!', url('account/manage'), 'error');
- }
-
-
-
-
- if (!empty($acid) && empty($uniacid)) {
- $account = account_fetch($acid);
- if (empty($account)) {
- itoast('子公众号不存在或是已经被删除', '', '');
- }
- $uniaccount = uni_fetch($account['uniacid']);
- if ($uniaccount['default_acid'] == $acid) {
- itoast('默认子公众号不能删除', '', '');
- }
- pdo_update('account', array('isdeleted' => 1), array('acid' => $acid));
- itoast('删除子公众号成功!您可以在回收站中回复公众号', referer(), 'success');
- }
-
- if (!empty($uniacid)) {
- $account = pdo_get('uni_account', array('uniacid' => $uniacid));
- if (empty($account)) {
- itoast('抱歉,帐号不存在或是已经被删除', url('account/manage', array('account_type' => ACCOUNT_TYPE)), 'error');
- }
- $state = permission_account_user_role($uid, $uniacid);
-
-
- if (!in_array($state, array(ACCOUNT_MANAGE_NAME_OWNER, ACCOUNT_MANAGE_NAME_FOUNDER, ACCOUNT_MANAGE_NAME_VICE_FOUNDER))) {
- itoast('没有该'. ACCOUNT_TYPE_NAME . '操作权限!', url('account/manage', array('account_type' => ACCOUNT_TYPE)), 'error');
- }
-
-
-
-
- pdo_update('account', array('isdeleted' => 1), array('uniacid' => $uniacid));
- if($_GPC['uniacid'] == $_W['uniacid']) {
- cache_delete(cache_system_key('last_account', array('switch' => $_GPC['__switch'])));
- isetcookie('__uniacid', '');
- }
- cache_delete(cache_system_key('uniaccount', array('uniacid' => $uniacid)));
- }
- itoast('停用成功!,您可以在回收站中恢复', url('account/manage', array('account_type' => ACCOUNT_TYPE)), 'success');
- }
-
|