123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405 |
- <?php
- /**
- * 举报管理
- *
- *
- *
- ***/
- defined('InShopNC') or exit('Access Invalid!');
- class informControl extends SystemControl{
- public function __construct(){
- parent::__construct();
- Language::read('inform');
- }
- /*
- * 默认操作列出未处理的举报
- */
- public function indexOp(){
- $this->inform_listOp();
- }
- /*
- * 未处理的举报列表
- */
- public function inform_listOp(){
- $this->get_inform_list(1,'inform.list','inform_list');
- }
- /*
- * 已处理的举报列表
- */
- public function inform_handled_listOp(){
- $this->get_inform_list(2,'inform_handled.list','inform_handled_list');
- }
- /*
- * 获取举报列表
- */
- private function get_inform_list($type,$template,$op){
- //实例化分页
- $page = new Page();
- $page->setEachNum(10) ;
- $page->setStyle('admin') ;
- //获得举报列表
- $model_inform = Model('inform') ;
- //搜索条件
- $condition = array();
- $condition['inform_goods_name'] = trim($_GET['input_inform_goods_name']);
- $condition['inform_member_name'] = trim($_GET['input_inform_member_name']);
- $condition['inform_type'] = trim($_GET['input_inform_type']);
- $condition['inform_subject'] = trim($_GET['input_inform_subject']);
- $condition['inform_datetime_start'] = strtotime($_GET['input_inform_datetime_start']);
- $condition['inform_datetime_end'] = strtotime($_GET['input_inform_datetime_end']);
- if($type === 1) {
- $condition['order'] = 'inform_id asc';
- }
- else {
- $condition['order'] = 'inform_id desc';
- }
- $condition['inform_state'] = $type;
- $inform_list = $model_inform->getInform($condition,$page) ;
- $this->show_menu($op);
- Tpl::output('list', $inform_list) ;
- Tpl::output('show_page',$page->show()) ;
- Tpl::showpage($template) ;
- }
- /*
- * 举报类型列表
- */
- public function inform_subject_type_listOp() {
- //实例化分页
- $page = new Page();
- $page->setEachNum(10) ;
- $page->setStyle('admin') ;
- //获得有效举报类型列表
- $model_inform_subject_type = Model('inform_subject_type') ;
- $inform_type_list = $model_inform_subject_type->getActiveInformSubjectType($page) ;
- $this->show_menu('inform_subject_type_list');
- Tpl::output('list', $inform_type_list) ;
- Tpl::output('show_page',$page->show()) ;
- Tpl::showpage('inform_subject_type.list') ;
- }
- /*
- * 举报主题列表
- */
- public function inform_subject_listOp(){
- //实例化分页
- $page = new Page();
- $page->setEachNum(10) ;
- $page->setStyle('admin') ;
- //获得举报主题列表
- $model_inform_subject = Model('inform_subject') ;
- //搜索条件
- $condition = array();
- $condition['order'] = 'inform_subject_id asc';
- $condition['inform_subject_type_id'] = trim($_GET['inform_subject_type_id']);
- $condition['inform_subject_state'] = 1;
- $inform_subject_list = $model_inform_subject->getInformSubject($condition,$page) ;
- //获取有效举报类型
- $model_inform_subject_type = Model('inform_subject_type');
- $type_list= $model_inform_subject_type->getActiveInformSubjectType();
- $this->show_menu('inform_subject_list');
- Tpl::output('list', $inform_subject_list) ;
- Tpl::output('type_list', $type_list) ;
- Tpl::output('show_page',$page->show()) ;
- Tpl::showpage('inform_subject.list') ;
- }
- /*
- * 添加举报类型页面
- */
- public function inform_subject_type_addOp(){
- $this->show_menu('inform_subject_type_add');
- Tpl::showpage('inform_subject_type.add') ;
- }
- /*
- * 保存添加的举报类型
- */
- public function inform_subject_type_saveOp(){
- //获取提交的内容
- $input['inform_type_name'] = trim($_POST['inform_type_name']);
- $input['inform_type_desc'] = trim($_POST['inform_type_desc']);
- //验证提交的内容
- $obj_validate = new Validator();
- $obj_validate->validateparam = array(
- array("input"=>$input['inform_type_name'], "require"=>"true","validator"=>"Length","min"=>"1","max"=>"50","message"=>Language::get('inform_type_null')),
- array("input"=>$input['inform_type_desc'], "require"=>"true","validator"=>"Length","min"=>"1","max"=>"100","message"=>Language::get('inform_type_desc_null')),
- );
- $error = $obj_validate->validate();
- if ($error != ''){
- showMessage($error);
- }
- else {
- //验证成功保存
- $input['inform_type_state'] = 1;
- $model_inform_subject_type = Model('inform_subject_type');
- $model_inform_subject_type->saveInformSubjectType($input);
- $this->log(L('nc_add,inform_type').'['.$_POST['inform_type_name'].']',1);
- showMessage(Language::get('nc_common_save_succ'),'index.php?act=inform&op=inform_subject_type_list');
- }
- }
- /*
- * 删除举报类型,伪删除只是修改标记
- */
- public function inform_subject_type_dropOp(){
- $inform_type_id = trim($_POST['inform_type_id']);
- $inform_type_id = "'".implode("','", explode(',', $inform_type_id))."'";
- if(empty($inform_type_id)) {
- showMessage(Language::get('param_error'),'index.php?act=inform');
- }
- //删除分类
- $model_inform_subject_type = Model('inform_subject_type');
- $update_array = array();
- $update_array['inform_type_state'] = 2;
- $where_array = array();
- $where_array['in_inform_type_id'] = $inform_type_id;
- $model_inform_subject_type->updateInformSubjectType($update_array,$where_array);
- //删除分类下边的主题
- $model_inform_subject= Model('inform_subject');
- $update_subject_array = array();
- $update_subject_array['inform_subject_state'] = 2;
- $where_subject_array = array();
- $where_subject_array['in_inform_subject_type_id'] = $inform_type_id;
- $model_inform_subject->updateInformSubject($update_subject_array,$where_subject_array);
- $this->log(L('nc_del,inform_type').'[ID:'.$_POST['inform_type_id'].']',1);
- showMessage(Language::get('nc_common_del_succ'),'index.php?act=inform&op=inform_subject_type_list');
- }
- /*
- * 添加举报主题页面
- */
- public function inform_subject_addOp(){
- //获得可用举报类型列表
- $model_inform_subject_type = Model('inform_subject_type');
- $inform_type_list = $model_inform_subject_type->getActiveInformSubjectType();
- if(empty($inform_type_list)) {
- showMessage(Language::get('inform_type_error'));
- }
- $this->show_menu('inform_subject_add');
- Tpl::output('list', $inform_type_list) ;
- Tpl::showpage('inform_subject.add') ;
- }
- /*
- * 保存添加的举报主题
- */
- public function inform_subject_saveOp(){
- //获取提交的内容
- list($input['inform_subject_type_id'],$input['inform_subject_type_name']) = explode(',',trim($_POST['inform_subject_type']));
- $input['inform_subject_content'] = trim($_POST['inform_subject_content']);
- //验证提交的内容
- $obj_validate = new Validator();
- $obj_validate->validateparam = array(
- array("input"=>$input['inform_subject_type_name'], "require"=>"true","validator"=>"Length","min"=>"1","max"=>"50","message"=>Language::get('inform_subject_null')),
- array("input"=>$input['inform_subject_content'], "require"=>"true","validator"=>"Length","min"=>"1","max"=>"50","message"=>Language::get('inform_content_null')),
- array("input"=>$input['inform_subject_type_id'], "require"=>"true","validator"=>"Number","message"=>Language::get('param_error')),
- );
- $error = $obj_validate->validate();
- if ($error != ''){
- showMessage($error);
- }
- else {
- //验证成功保存
- $input['inform_subject_state'] = 1;
- $model_inform_subject = Model('inform_subject');
- $model_inform_subject->saveInformSubject($input);
- $this->log(L('nc_add,inform_subject').'['.$input['inform_subject_type_name'].']',1);
- showMessage(Language::get('nc_common_save_succ'),'index.php?act=inform&op=inform_subject_list');
- }
- }
- /*
- * 删除举报主题,伪删除只是修改标记
- */
- public function inform_subject_dropOp(){
- $inform_subject_id = trim($_POST['inform_subject_id']);
- if(empty($inform_subject_id)) {
- showMessage(Language::get('param_error'),'index.php?act=inform');
- }
- $model_inform_subject= Model('inform_subject');
- $update_array = array();
- $update_array['inform_subject_state'] = 2;
- $where_array = array();
- $where_array['in_inform_subject_id'] = "'".implode("','", explode(',', $inform_subject_id))."'";
- $model_inform_subject->updateInformSubject($update_array,$where_array);
- $this->log(L('nc_del,inform_subject').'['.$_POST['inform_subject_id'].']',1);
- showMessage(Language::get('nc_common_del_succ'),'index.php?act=inform&op=inform_subject_list');
- }
- /*
- * 显示处理举报
- */
- public function show_handle_pageOp() {
- $this->show_menu('inform_list');
- $inform_id = intval($_GET['inform_id']);
- $inform_goods_name = urldecode($_GET['inform_goods_name']);
- if(strtoupper(CHARSET) == 'GBK') {
- $inform_goods_name = Language::getGBK($inform_goods_name);
- }
- TPL::output('inform_id',$inform_id);
- TPL::output('inform_goods_name',$inform_goods_name);
- Tpl::showpage('inform.handle');
- }
- /*
- * 处理举报
- */
- public function inform_handleOp(){
- $inform_id = intval($_POST['inform_id']);
- $inform_handle_type = intval($_POST['inform_handle_type']);
- $inform_handle_message = trim($_POST['inform_handle_message']);
- if(empty($inform_id)||empty($inform_handle_type)) {
- showMessage(Language::get('param_error'),'');
- }
- //验证输入的数据
- $obj_validate = new Validator();
- $obj_validate->validateparam = array(
- array("input"=>$inform_handle_message, "require"=>"true","validator"=>"Length","min"=>"1","max"=>"100","message"=>Language::get('inform_handle_message_null')),
- );
- $error = $obj_validate->validate();
- if ($error != ''){
- showMessage($error);
- }
- $model_inform = Model('inform');
- $inform_info = $model_inform->getoneInform($inform_id);
- if(empty($inform_info)||intval($inform_info['inform_state'])===2) {
- showMessage(Language::get('param_error'));
- }
- $update_array = array();
- $where_array = array();
- //根据选择处理
- switch($inform_handle_type) {
- case 1:
- $where_array['inform_id'] = $inform_id;
- break;
- case 2:
- //恶意举报,清理所有该用户的举报,设置该用户禁止举报
- $where_array['inform_member_id'] = $inform_info['inform_member_id'];
- $this->denyMemberInform($inform_info['inform_member_id']);
- break;
- case 3:
- //有效举报,商品禁售
- $where_array['inform_id'] = $inform_id;
- $this->denyGoods($inform_info['inform_goods_id']);
- break;
- default:
- showMessage(Language::get('param_error'));
- }
- $update_array['inform_state'] = 2;
- $update_array['inform_handle_type'] = $inform_handle_type;
- $update_array['inform_handle_message'] = $inform_handle_message;
- $update_array['inform_handle_datetime'] = time();
- $admin_info = $this->getAdminInfo();
- $update_array['inform_handle_member_id'] = $admin_info['id'];
- $where_array['inform_state'] = 1;
- if($model_inform->updateInform($update_array,$where_array)) {
- $this->log(L('inform_text_handle,inform').'[ID:'.$inform_id.']',1);
- showMessage(Language::get('nc_common_op_succ'),'index.php?act=inform&op=inform_list');
- }
- else {
- showMessage(Language::get('nc_common_op_fail'));
- }
- }
- /*
- * 禁止该用户举报
- */
- private function denyMemberInform($member_id) {
- $model_member = Model('member');
- $param = array();
- $param['inform_allow'] = 2;
- return $model_member->editMember(array('member_id'=>$member_id),$param);
- }
- /*
- * 禁止商品销售
- */
- private function denyGoods($goods_id) {
- //修改商品状态
- $model_goods = Model('goods');
- $goods_info = $model_goods->getGoodsInfoByID($goods_id, 'goods_commonid');
- if (empty($goods_info)) {
- return true;
- }
- return Model('goods')->editProducesLockUp(array('goods_stateremark' => '商品被举报,平台禁售'),array('goods_commonid' => $goods_info['goods_commonid']));
- }
- /**
- * 用户中心右边,小导航
- *
- * @param string $menu_type 导航类型
- * @param string $menu_key 当前导航的menu_key
- * @param array $array 附加菜单
- * @return
- */
- private function show_menu($menu_key) {
- $menu_array = array(
- 'inform_list'=>array('menu_type'=>'link','menu_name'=>Language::get('inform_state_unhandle'),'menu_url'=>'index.php?act=inform&op=inform_list'),
- 'inform_handled_list'=>array('menu_type'=>'link','menu_name'=>Language::get('inform_state_handled'),'menu_url'=>'index.php?act=inform&op=inform_handled_list'),
- 'inform_subject_type_list'=>array('menu_type'=>'link','menu_name'=>Language::get('inform_type'),'menu_url'=>'index.php?act=inform&op=inform_subject_type_list'),
- 'inform_subject_type_add'=>array('menu_type'=>'link','menu_name'=>Language::get('inform_type_add'),'menu_url'=>'index.php?act=inform&op=inform_subject_type_add'),
- 'inform_subject_list'=>array('menu_type'=>'link','menu_name'=>Language::get('inform_subject'),'menu_url'=>'index.php?act=inform&op=inform_subject_list'),
- 'inform_subject_add'=>array('menu_type'=>'link','menu_name'=>Language::get('inform_subject_add'),'menu_url'=>'index.php?act=inform&op=inform_subject_add'),
- );
- $menu_array[$menu_key]['menu_type'] = 'text';
- Tpl::output('menu',$menu_array);
- }
- }
|