123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321 |
- <?php
- /**
- * 小梦科技资源nanodreamtech.com
- *
- * ==========================================================================
- * @link https://www.nanodreamtech.com/
- * @copyright Copyright (c) 2015 liofis.com.
- * @license https://www.nanodreamtech.com/license.html License
- * ==========================================================================
- *
- * @author fish
- *
- */
- namespace Admin\Controller;
- class SettingsController extends CommonController{
-
- protected function _initialize(){
- parent::_initialize();
- $this->breadcrumb1='系统';
-
- }
-
- function other(){
- $this->breadcrumb2='其他选项';
- $this->other=$this->get_config_by_group('other');
- $this->display();
- }
-
- function image(){
- $this->breadcrumb2='图片尺寸';
- $this->image=$this->get_config_by_group('image');
- $this->display();
- }
-
- function general(){
- $this->breadcrumb2='基本信息';
- $this->site=$this->get_config_by_group('site');
- $this->display();
- }
- function wxprogram()
- {
- $this->breadcrumb2='微信小程序配置';
- $this->site=$this->get_config_by_group('weixin');
- $this->type = 1;
- $this->display();
- }
- function wxprogram_template()
- {
- $this->breadcrumb2='微信小程序配置';
- $this->site=$this->get_config_by_group('weixin');
- $this->type = 2;
- $this->display();
- }
-
- function wxtempmsg()
- {
- $this->breadcrumb2='微信模板消息';
- $this->site=$this->get_config_by_group('weixin');
- $this->type = 1;
- $this->display();
- }
- function sendallwxmsg()
- {
- $this->breadcrumb2='微信模板消息';
- $this->type = 2;
- $this->display();
- }
- function sendallcuswxmsg()
- {
- $this->breadcrumb3='微信客服消息';
- $this->type = 3;
- $this->display();
- }
- function clearuserqrcode()
- {
- $result = array('code' =>1);
-
- $sql = "update ".C('DB_PREFIX')."member_common set qrcode_img ='' where member_id>0 ";
- M()->execute($sql);
-
- echo json_encode($result);
- die();
- }
-
- function sendallcuswxmsg_save()
- {
- $data = I('post.');
-
- @set_time_limit(0);
-
- $template_data = array();
-
- if( empty($data['title']) )
- {
- $this->error('请填写标题');
- }
-
- if( empty($data['image']) )
- {
- $this->error('请上传封面图片');
- }
-
- if( empty($data['url_link']) )
- {
- $this->error('请填写链接');
- }
- $data['image'] = C('SITE_URL').'/Uploads/image/'.$data['image'];
-
- $template_data['title'] = $data['title'];
- $template_data['image'] = $data['image'];
- $template_data['descript'] = $data['descript'];
-
- $user_list = M('member')->select();
-
- foreach($user_list as $user)
- {
- if(empty($user['openid']))
- {
- continue;
- }
-
- $msg_order = array();
- $msg_order['template_data'] = serialize($template_data);
- $msg_order['url'] = $data['url_link'];
- $msg_order['type'] = 1;
- $msg_order['open_id'] = $user['openid'];
- $msg_order['template_id'] = 8888;
- $msg_order['state'] = 0;
- $msg_order['addtime'] = time();
-
- M('template_msg_order')->add($msg_order);
- }
- $this->success('保存成功,客服消息将会陆续发出!');
- }
-
- /**
- 群发自定义模板消息
- **/
- function sendallmodifywxmsg()
- {
- $this->type =4;
- $this->display();
- }
- /**
- 分析模板消息模板
- **/
- function sendallmodifywxmsg_analys()
- {
- $this->type =4;
- $moban = I('post.moban');
- $str = str_replace(array("\r\n", "\r", "\n"), "", $moban);
- preg_match_all('/{{(.*?)}}/',$str,$contain_arr);
-
-
- $data = $contain_arr[1];
- if(empty($data))
- {
- $this->error('模板格式错误');
- }
- $this->moban = $moban;
- $this->data = $data;
- $this->display();
- }
- /**
- 自定义模板消息保存
- **/
- public function sendallmodifywxmsg_save()
- {
- @set_time_limit(0);
- $data = I('post.');
- $url_link = $data['url_link'];
- $moban_id = $data['moban_id'];
- unset($data['url_link']);
- unset($data['moban_id']);
-
- $template_data = array();
-
- $page = empty($data['page']) ? 1: intval($data['page']);
- unset($data['page']);
- $per_count = 100;
- $offset = ($page-1)*$per_count;
-
- $total_count = M('member')->count();
-
- foreach($data as $key => $val)
- {
- if( strpos($key,'_color') === false )
- {
- $real_key = explode('_',$key);
- $tp_key = $real_key[0];
- $tp_color = empty($data[$key.'_color']) ? '#173177': trim($data[$key.'_color']);
- $template_data[$tp_key] = array('value' => ($val), 'color' => $tp_color);
- }
- }
- $template_id = $moban_id;
-
- $has_next = ( $total_count > ($offset+$per_count) ) ? 1:0;
-
- $del_count = $total_count - ($offset+$per_count);
-
-
- $user_list = M('member')->order('member_id asc')->limit($offset,$per_count)->select();
-
- foreach($user_list as $user)
- {
- if(empty($user['openid']))
- {
- continue;
- }
-
- $msg_order = array();
- $msg_order['template_data'] = serialize($template_data);
- $msg_order['url'] = $url_link;
- $msg_order['open_id'] = $user['openid'];
- $msg_order['template_id'] = $template_id;
- $msg_order['state'] = 0;
- $msg_order['addtime'] = time();
-
- M('template_msg_order')->add($msg_order);
- }
- $result = array();
- $result['code'] = 1;
- $result['has_next'] = $has_next;
- $result['del_count'] = $del_count;
- $result['offset'] = $offset;
- $result['per_count'] = $per_count;
-
- echo json_encode($result);
- die();
- //$this->success('保存成功,消息将会陆续发出!','/Settings/sendallmodifywxmsg');
- }
-
- function sendallwxmsg_save()
- {
- $data = I('post.');
-
-
- @set_time_limit(0);
-
- $title_color = empty($data['title_color']) ? '#173177':trim($data['title_color']);
- $goods_name_color = empty($data['goods_name_color']) ? '#173177':trim($data['goods_name_color']);
- $lian_man_color = empty($data['lian_man_color']) ? '#173177':trim($data['lian_man_color']);
- $lian_mobile_color = empty($data['lian_mobile_color']) ? '#173177':trim($data['lian_mobile_color']);
- $qv_address_color = empty($data['qv_address_color']) ? '#173177':trim($data['qv_address_color']);
- $description_color = empty($data['description_color']) ? '#173177':trim($data['description_color']);
-
- $template_data = array();
- $template_data['first'] = array('value' => ($data['title']), 'color' => $title_color);
- $template_data['keyword1'] = array('value' => ($data['goods_name']), 'color' => $goods_name_color);
- $template_data['keyword2'] = array('value' => ($data['lian_man']), 'color' => $lian_man_color);
- $template_data['keyword3'] = array('value' => ($data['lian_mobile']), 'color' => $lian_mobile_color);
- $template_data['keyword4'] = array('value' => ($data['qv_address']), 'color' => $qv_address_color);
- $template_data['remark'] = array('value' => ($data['description']), 'color' => $description_color);
-
- $url = $data['url_link'];
- $config = M('config')->where( array('name' => 'GoodsOnNoticeId') )->find();
-
- $template_id = $config['value'];
-
- $user_list = M('member')->select();
-
-
- foreach($user_list as $user)
- {
- if(empty($user['openid']))
- {
- continue;
- }
-
- $msg_order = array();
- $msg_order['template_data'] = serialize($template_data);
- $msg_order['url'] = $url;
- $msg_order['open_id'] = $user['openid'];
- $msg_order['template_id'] = $template_id;
- $msg_order['state'] = 0;
- $msg_order['addtime'] = time();
-
- M('template_msg_order')->add($msg_order);
- }
- $this->success('保存成功,消息将会陆续发出!');
- }
-
- function smtp_mail(){
- $this->breadcrumb2='邮件配置';
- $this->smtp=$this->get_config_by_group('smtp');
-
- $this->display();
- }
- function get_config_by_group($group){
-
- $list=M('config')->where(array('config_group'=>$group))->select();
- if(isset($list)){
- foreach ($list as $k => $v) {
- $config[$v['name']]=$v;
- }
- }
- return $config;
- }
-
- function save(){
- if(IS_POST){
- $config=I('post.');
-
- if($config && is_array($config)){
- $c=M('Config');
- foreach ($config as $name => $value) {
- $map = array('name' => $name);
- $c->where($map)->setField('value', $value);
- }
-
- }
- S('DB_CONFIG_DATA',null);
- $this->success('保存成功!');
- }
- }
-
- }
- ?>
|