| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- <?php
- //服务端设置
- class xinhuClassAction extends Action
- {
- public $xinhuobj;
- public function initAction()
- {
- $this->xinhuobj = c('xinhuapi');
- }
-
- public function setsaveAjax()
- {
- if(!COMPANYNUM){
- $this->option->setval('reimhostsystem@-8', $this->post('host'));
- $this->option->setval('reimpushurlsystem@-8', $this->post('push'));
- $this->option->setval('reimservertype@-8', $this->post('servertype'));
- $this->option->setval('reimappwxsystem@-8', $this->post('reimappwx'));
- }
- $this->option->setval('reimrecidsystem@-8', $this->post('receid'));
- $this->option->setval('reimchehuisystem@-8', $this->post('chehui'));
- $this->backmsg();
- }
-
- public function tongbudwAjax()
- {
- $rows = m('company')->getall('iscreate=1');
- foreach($rows as $k=>$rs){
- $base = ''.DB_BASE.'_company_'.$rs['num'].'';
- $this->sevessee($base, 'reimhostsystem');
- $this->sevessee($base, 'reimrecidsystem', $rs['num']);
- $this->sevessee($base, 'reimchehuisystem');
- $this->sevessee($base, 'reimservertype');
- $this->sevessee($base, 'reimappwxsystem');
- }
- return '同步成功';
- }
- private function sevessee($base, $key, $bh='')
- {
- $val = $this->option->getval($key);
- if($key=='reimrecidsystem')$val.='_'.$bh.'';
- $sql = "update ".$base.".`[Q]option` set `value`='$val',`optdt`='{$this->now}' where `num`='$key'";
- $this->db->query($sql, false);
- }
-
- public function getsetAjax()
- {
- $arr= array();
- $arr['reimhost']= $this->option->getval('reimhostsystem');
- $arr['reimrecid']= $this->option->getval('reimrecidsystem');
- $arr['reimpushurl']= $this->option->getval('reimpushurlsystem');
- $arr['reimchehui']= $this->option->getval('reimchehuisystem');
- $arr['servertype']= $this->rock->repempt($this->option->getval('reimservertype'),'1');
- if(isempt($arr['reimhost']))$arr['servertype']='1';
- $arr['reimappwx']= $this->rock->repempt($this->option->getval('reimappwxsystem'),'0');
- echo json_encode($arr);
- }
-
- //测试地址
- public function yibutestAjax()
- {
- $rand = time();
- $arr['krand'] = $rand;
- $runurl = m('base')->getasynurl('asynrun','asyntest', $arr);
- m('reim')->asynurl('asynrun','asyntest', $arr);
- $msg = '<font color="green">测试成功可以使用</font>';
- sleep(10);
- $mkey = $this->option->getval('asyntest');
- if($mkey!=$rand)$msg = '<font color="red">测试失败不能使用,说明你服务端上是不能访问这地址的</font>';
- echo '异步地址【'.$runurl.'】'.$msg.'';
- }
-
- //测试队列
- public function testqueueAjax()
- {
- $rand = 'queue'.time();
- $barr = c('rockqueue')->push('cli,test', array(
- 'rand' => $rand
- ));
- if(!$barr['success'])return '队列测试失败:<font color="red">'.$barr['msg'].'</font>';
- sleep(3);
- $mkey = $this->option->getval('asyntest');
- $msg = '<font color="green">队列测试成功,可以使用</font>';
- if($mkey!=$rand)$msg = '<font color="red">无法运行“'.$barr['cmdurl'].'”测试失败不能使用,去<a href="'.URLY.'view_rockservice.html" target="_blank">看看帮助</a>。</font>';
- echo $msg;
- }
-
- public function testsendAjax()
- {
- $barr = m('reim')->sendpush($this->adminid, $this->adminid,array(
- 'cont' => $this->jm->base64encode('测试内容:'.$this->now.''),
- 'type' => 'user',
- 'optdt' => $this->now,
- 'messid' => 0
- ));
- $msg = '';
- if($barr['success']){
- $msg='服务端推送地址可以使用';
- }else{
- $msg='<font color=red>服务端推送地址不能使用:'.$barr['msg'].'</font>';
- }
- echo $msg;
- }
-
-
-
-
- /**
- * 获取列表
- */
- public function getoainfoAjax()
- {
- $barr = $this->xinhuobj->getdata('dengji','getdata');
- $rows = array();
- if($barr['success']){
- $rows = $barr['data'];
- }
- return array(
- 'rows' => $rows
- );
- }
- public function deldengjiAjax()
- {
- $id = (int)$this->post('id');
- $barr = $this->xinhuobj->getdata('dengji','deldengji', array('id'=>$id));
- return $barr;
- }
- public function savedengjiAjax()
- {
- $id = (int)$this->post('id');
- $name = str_replace(' ','',$this->post('name'));
- $url = str_replace(' ','',$this->post('url'));
- if(substr($url,0,4)!='http')return returnerror('地址必须http开头');
- if(contain($url,'127.0.0.1') || contain($url,'localhost'))return returnerror('本地地址是不能登记到官网的');
- if(substr($url,-1)!='/')$url.='/';
- $carr = m('task')->pdlocal($url);
- if(!$carr['success'])return returnerror('系统地址无法打开');
- $barr = $this->xinhuobj->postdata('dengji','savedata', array(
- 'id' => $id,
- 'name' => $name,
- 'url' => urlencode($url),
- ));
- return $barr;
- }
- }
|