添加德语AMP模板

hotfix/远程访问多媒体中心
尹诚诚 7 years ago
parent 594d91c265
commit e388fdecd3

@ -41,28 +41,37 @@ class Amp extends CI_Controller
if ($data['information'] == FALSE) {
echo json_encode(array('result' => 'no', 'data' => '找不到这个页面'));
}
//144.76.185.44:8029
//根据站点不同,配置不同参数
$site_code = strtolower($this->config->item('site_code'));
switch ($site_code) {
case 'ah':
//websitehost是表示资源下载的域名在网页代码中有/css/xxx.css之类的路径程序需要添加域名组成完整URL去下载文件一般是data域名或者www域名
$websitehost = 'https://data.asiahighlights.com';
$html_source_url = 'https://www.asiahighlights.com/index.php/information/detail/?no_cache=true&static_html_url=' . $data['information']->ic_url;
break;
case 'cht':
$websitehost = 'https://data.chinahighlights.com';
$html_source_url = 'http://192.155.224.195:2222' . $data['information']->ic_url;
break;
case 'gm':
$websitehost = 'https://data.chinarundreisen.com';
$html_source_url = 'http://144.76.185.44:8029' . $data['information']->ic_url;
break;
case 'ct':
$websitehost = 'https://data.chinatravel.com';
$html_source_url = 'http://158.85.210.78:2222' . $data['information']->ic_url;
break;
default:
$websitehost = $this->config->item('site_url');
$html_source_url = $this->config->item('site_url') . $data['information']->ic_url;
}
//获取网页当前源码,然后发送到信息平台
$html_source = GET_HTTP($this->config->item('site_url') . '/index.php/information/detail/?no_cache=true&static_html_url=' . $data['information']->ic_url);
$html_source = GET_HTTP($html_source_url);
if (!empty($html_source)) {
//websitehost是表示资源下载的域名在网页代码中有/css/xxx.css之类的路径程序需要添加域名组成完整URL去下载文件一般是data域名或者www域名
$site_code = strtolower($this->config->item('site_code'));
switch ($site_code) {
case 'ah':
$websitehost = 'https://data.asiahighlights.com';
break;
case 'cht':
$websitehost = 'https://data.chinahighlights.com';
break;
case 'gm':
$websitehost = 'https://data.chinarundreisen.com';
break;
case 'ct':
$websitehost = 'https://data.chinatravel.com';
break;
default:
$websitehost = $this->config->item('site_url');
}
$post_data = array('websitehost' => $websitehost, 'template_name' => $site_code, 'create_amp' => 'true', 'htmlsource' => $html_source);
echo GET_HTTP(site_url('/apps/htmlcompressor/index/optimize'), $post_data, 'POST');
return;

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save