【熊掌號mip外掛】織夢DEDECMS百度熊掌號mip改造教程
阿新 • • 發佈:2018-12-30
第一部分:模板修改
1、js部分:刪除或使用現有元件替換
2、呼叫百度mip檔案:
head里加<link rel="stylesheet" type="text/css"href="https://mipcache.bdstatic.com/static/mipmain-v1.1.1.css">
body里加<script src="https://mipcache.bdstatic.com/static/mipmain-v1.1.2.js"></script>
3、head里加<link rel="canonical"href="{dede:global.cfg_basehost/}{dede:field name='arcurl'/}" >,通過dedecms標籤直接呼叫當前頁url。
4、外部通用css檔案:建議將css檔案中的樣式程式碼嵌入<style mip-custom>…</style>中,另存為模板檔案(如css.htm),用{dede:includefilename="css.htm"/}替換相關模板中的<link rel="stylesheet" type="text/css"href="…" />。
模板中的內聯css可人工進行查詢替換,合併至<stylemip-custom>中。(雖在下面程式碼中可以自動進行處理,但從靜態檔案生成效能角度考慮,還是建議人工先將模板中的內聯樣式一次性整改好。)
注:以上操作大多可通過批量查詢替換來完成,看似需要修改很多,但實際工作量並不大。
第二部分:程式檔案修改
靜態生成移動站:
找到 /include/dedetag.class.php檔案中解析模板輸出為檔案的函式:
function SaveTo($filename)
{
$fp = @fopen($filename,"w")or die("DedeTag Engine Create File False");
fwrite($fp,$this->GetResult());
fclose($fp);
}
替換為(部分程式碼可根據實際情況進行改動):
//路徑轉換函式檔案。$content:程式碼源,$feed_url:首頁,$f_url:相對路徑的目錄部分
function relative_to_absolute($content,$protocol, $domain, $f_url) {
//根目錄相對路徑(如href="/a/b.html")轉換
$new_content =preg_replace('/href\s*\=\s*([\'"])\s*\//','href=\\1'.$protocol.$domain.'/', $content);
$new_content =preg_replace('/src\s*\=\s*([\'"])\s*\//', 'src=\\1'.$protocol.$domain.'/',$new_content);
//當前頁相對路徑(如href="a/b.html")轉換
$new_content =preg_replace('/href\s*\=\s*([\'"])(?!(http|https):\/\/)/','href=\\1'.$protocol.$domain.$f_url,$new_content);
$new_content =preg_replace('/src\s*\=\s*([\'"])(?!(http|https):\/\/)/','src=\\1'.$protocol.$domain.$f_url, $new_content);
return $new_content;
}
function SaveTo($filename)
{
[email protected]($filename,"w") ordie("DedeTag Engine Create File False");
if(substr($_SERVER['PHP_SELF'],-6)=='_m.php'||substr($filename,-13)=='/m/index.html'){ //跳轉適配站識別是否為移動端生成,不影響pc端的gbk編碼。移動端為獨立站點需去掉此判斷條件。
$f_url=explode('www.ainiu.net/m',dirname($filename));//分割路徑,獲取當前頁相對路徑的目錄部分
//如dirname($filename)得到的本地絕對路徑為D:/wwwroot/www.ainiu.net/m/a/b,用網站目錄“www.ainiu.net/m”作為標識分割路徑,得到目錄部分“/a/b”。
$html=$this->GetResult();
$html=$this->relative_to_absolute($html,'http://','m.ainiu.net',$f_url[1].'/');//相對路徑轉換絕對路徑
$html=str_replace('<metacharset="gb2312">','<metacharset="utf-8">',iconv('gbk','utf-8//ignore',$html)); //轉換為utf-8編碼宣告,fwrite會以此生成對應編碼的靜態頁面
$html=str_replace('<a','<a target="_blank" ',$html); //<a>標籤加target
$html=str_replace('<img','<mip-img ',$html); //替換<img>標籤
/* 主要針對編輯器生成的內聯樣式,將內聯樣式轉換到head的style標籤中 */
if(preg_match_all('/\sstyle\s*\=\s*[\'"](.*?)[\'"]/',$html,$css)){
$css0=array_unique($css[0]);//過濾重複style
foreach($css0as $k => $v){
$html=str_replace($v,'class="mip_add_css_'.$k.'"',$html); //mip_add_css_為自定義樣式名字首,可自行修改,但需避免與原有樣式名重複
$temp_name='mip_add_css_'.$k;
$$temp_name=$css[1][$k];
$add_css.='.'.$temp_name.'{'.$css[1][$k]."}\n";
}
$html=str_replace('<stylemip-custom>',"<style mip-custom>\n".$add_css,$html);
}
fwrite($fp, $html);
}else{ //pc端執行
fwrite($fp,$this->GetResult());
}
fclose($fp);
}
注:該方案初步測試成功,因生成靜態檔案時處理程式增加,理論上來說會對生成效率有所影響。另外,不排除存在問題的可能性,如有問題或其他想法可回帖共同研究探討。
· 預設動態移動站:
1、修改/m目錄下index.php、list.php、view.php三個php檔案的編碼,改為utf-8。
2、找到 /include/dedetag.class.php檔案中解析模板直接輸出的函式:
function Display()
{
echo $this->GetResult();
}
替換為:
function Display()
{
$html=str_replace('<meta charset="gb2312">','<meta charset="utf-8">',$this->GetResult()); //轉換為utf-8編碼宣告,此處源內容$this->GetResult()不需要轉編碼
echo $html;
}