$(function(){
var pattern ={
// /products/list.php の変換マスタ
// "カテゴリID":"変換後ファイル名"
"category_list":{
"42" :"gymnastics",
"62" :"stream/gymnastics"
},
"products_category_list":{
"61" :"gymnastics",
"62" :"gymnastics",
"63" :"gymnastics",
"64" :"gymnastics",
"65" :"gymnastics",
"66" :"gymnastics",
"429" :"gymnastics",
"430" :"gymnastics",
"431" :"gymnastics",
"432" :"gymnastics",
"433" :"gymnastics",
"434" :"gymnastics",
"435" :"gymnastics",
"436" :"gymnastics",
"437" :"gymnastics",
"438" :"gymnastics",
"439" :"gymnastics",
"440" :"gymnastics",
"441" :"gymnastics",
"442" :"gymnastics",
"443" :"gymnastics",
"444" :"gymnastics",
"445" :"gymnastics",
"446" :"gymnastics",
"447" :"gymnastics",
"448" :"gymnastics",
"449" :"gymnastics",
"943" :"gymnastics",
"944" :"gymnastics",
"945" :"gymnastics",
"946" :"gymnastics",
"947" :"gymnastics",
"948" :"gymnastics",
"949" :"gymnastics",
"950" :"gymnastics",
"951" :"gymnastics",
"952" :"gymnastics",
"953" :"gymnastics",
"1469" :"gymnastics",
"1470" :"gymnastics",
"1471" :"gymnastics",
"1472" :"gymnastics",
"1473" :"gymnastics",
"1654" :"stream/gymnastics",
"1655" :"stream/gymnastics",
"1656" :"stream/gymnastics",
"1985" :"stream/gymnastics",
"1986" :"stream/gymnastics",
"1987" :"stream/gymnastics",
"1988" :"stream/gymnastics",
"1989" :"stream/gymnastics",
"1990" :"stream/gymnastics",
"1991" :"stream/gymnastics",
"1992" :"stream/gymnastics",
"1993" :"stream/gymnastics",
"1994" :"stream/gymnastics",
"1995" :"stream/gymnastics",
"1996" :"stream/gymnastics",
"1997" :"stream/gymnastics",
"1998" :"stream/gymnastics",
"1999" :"stream/gymnastics",
"2000" :"stream/gymnastics",
"2001" :"stream/gymnastics",
"2428" :"stream/gymnastics",
"2429" :"stream/gymnastics",
"2430" :"stream/gymnastics",
"2431" :"stream/gymnastics",
"2432" :"stream/gymnastics",
"2433" :"stream/gymnastics",
"2434" :"stream/gymnastics",
"2435" :"stream/gymnastics",
"2436" :"stream/gymnastics",
"2437" :"stream/gymnastics",
"2438" :"stream/gymnastics",
"2943" :"stream/gymnastics",
"2944" :"stream/gymnastics",
"2945" :"stream/gymnastics",
"2946" :"stream/gymnastics",
"2947" :"stream/gymnastics",
"3049" :"stream/gymnastics"
}
};
/* リンクURL書き換え */
$('a').each(function() {
var ret = $(this).attr('href');
if(ret){
var res_data = null;
var cat_res = ret.match(/\/products\/list\.php\?(.*)category_id=(\d{1,})(.*)/); // カテゴリ別商品ページ
var detail_res = ret.match(/\/products\/detail\.php\?(.*)product_id=(\d{1,})(.*)/); // 商品詳細ページ
// 初期化
var rep_url = null;
var rep_param = '';
if(cat_res){
// カテゴリ別商品ページ用URL変換処理
res_data = cat_res;
if((typeof res_data[2] != "undefined") && res_data[2] && (typeof pattern['category_list'][res_data[2]] != "undefined") && pattern['category_list'][res_data[2]]){
rep_url = window.location.protocol + '//' + window.location.host + '/' + pattern['category_list'][res_data[2]] + '.php';
}
}
else if(detail_res){
// 商品詳細ページ用URL変換処理
res_data = detail_res;
if((typeof res_data[2] != "undefined") && res_data[2] && (typeof pattern['products_category_list'][res_data[2]] != "undefined") && pattern['products_category_list'][res_data[2]]){
rep_url = window.location.protocol + '//' + window.location.host + '/' + pattern['products_category_list'][res_data[2]] + '_' + res_data[2] + '.php';
}
}
if(res_data && rep_url){
if((typeof res_data[1] != "undefined") && res_data[1]){
rep_param = '?' + res_data[1].slice(0, -1);
}
if((typeof res_data[3] != "undefined") && res_data[3]){
if(rep_param){
rep_param = rep_param + res_data[3];
}else{
rep_param = '?' + res_data[3];
}
}
if(rep_param){
rep_param = rep_param.replace('??','?');
rep_param = rep_param.replace('?&','?');
rep_param = rep_param.replace('&&','&');
}
$(this).attr('href', rep_url + rep_param);
}
}
});
});