12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- /**
- * [淘淘源码铺微擎系统 System] Copyright (c) 2018 www.330code.com
- */
- defined('IN_IA') or exit('Access Denied');
-
- load()->model('cloud');
- load()->model('setting');
-
- $dos = array('display', 'testapi');
- $do = in_array($do, $dos) ? $do : 'display';
- uni_user_permission_check('system_cloud_diagnose');
-
- $_W['page']['title'] = '云服务诊断 - 云服务';
-
- if ($do == 'testapi') {
- $starttime = microtime(true);
- $response = cloud_request(HTTP_X_FOR .'we7.jcxbhm.com/app/api.php', array(), array('ip' => $_GPC['ip']));
- $endtime = microtime(true);
- iajax(0,'请求接口成功,耗时 '.(round($endtime - $starttime, 5)).' 秒');
- } else {
- if(checksubmit()) {
- setting_save('', 'site');
- itoast('成功清除站点记录.', 'refresh', 'success');
- }
- if (checksubmit('updateserverip')) {
- if (!empty($_GPC['ip'])) {
- setting_save(array('ip' => $_GPC['ip'], 'expire' => TIMESTAMP + 201600), 'cloudip');
- } else {
- setting_save(array(), 'cloudip');
- }
- itoast('修改云服务ip成功.', 'refresh', 'success');
- }
- if(empty($_W['setting']['site'])) {
- $_W['setting']['site'] = array();
- }
- $checkips = array();
- if (!empty($_W['setting']['cloudip']['ip'])) {
- $checkips[] = $_W['setting']['cloudip']['ip'];
- }
- if (strexists(strtoupper(PHP_OS), 'WINNT')) {
- $cloudip = gethostbyname('we7.jcxbhm.com');
- if (!in_array($cloudip, $checkips)) {
- $checkips[] = $cloudip;
- }
- } else {
- for ($i = 0; $i <= 10; $i++) {
- $cloudip = gethostbyname('we7.jcxbhm.com');
- if (!in_array($cloudip, $checkips)) {
- $checkips[] = $cloudip;
- }
- }
- }
- template('cloud/diagnose');
- }
|