$(function(){
var pattern ={
// /products/list.php の変換マスタ
// "カテゴリID":"変換後ファイル名"
"category_list":{
"16" :"rhythmicgymnastics",
"61" :"stream/rhythmicgymnastics"
},
"products_category_list":{
"125" :"rhythmicgymnastics",
"126" :"rhythmicgymnastics",
"686" :"rhythmicgymnastics",
"687" :"rhythmicgymnastics",
"688" :"rhythmicgymnastics",
"689" :"rhythmicgymnastics",
"690" :"rhythmicgymnastics",
"691" :"rhythmicgymnastics",
"1143" :"rhythmicgymnastics",
"1144" :"rhythmicgymnastics",
"1145" :"rhythmicgymnastics",
"1146" :"rhythmicgymnastics",
"1147" :"rhythmicgymnastics",
"1148" :"rhythmicgymnastics",
"1229" :"rhythmicgymnastics",
"1230" :"rhythmicgymnastics",
"1231" :"rhythmicgymnastics",
"1232" :"rhythmicgymnastics",
"1710" :"stream/rhythmicgymnastics",
"1711" :"stream/rhythmicgymnastics",
"2219" :"stream/rhythmicgymnastics",
"2220" :"stream/rhythmicgymnastics",
"2221" :"stream/rhythmicgymnastics",
"2222" :"stream/rhythmicgymnastics",
"2223" :"stream/rhythmicgymnastics",
"2224" :"stream/rhythmicgymnastics",
"2621" :"stream/rhythmicgymnastics",
"2622" :"stream/rhythmicgymnastics",
"2623" :"stream/rhythmicgymnastics",
"2624" :"stream/rhythmicgymnastics",
"2625" :"stream/rhythmicgymnastics",
"2626" :"stream/rhythmicgymnastics",
"2707" :"stream/rhythmicgymnastics",
"2708" :"stream/rhythmicgymnastics",
"2709" :"stream/rhythmicgymnastics",
"2710" :"stream/rhythmicgymnastics",
"3055" :"stream/rhythmicgymnastics",
"3129" :"stream/rhythmicgymnastics",
"3130" :"stream/rhythmicgymnastics",
"3131" :"stream/rhythmicgymnastics",
"3132" :"stream/rhythmicgymnastics",
"3133" :"stream/rhythmicgymnastics",
"3134" :"rhythmicgymnastics",
"3135" :"rhythmicgymnastics",
"3136" :"rhythmicgymnastics",
"3137" :"rhythmicgymnastics"
}
};
/* リンク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);
}
}
});
});