$(function(){
var pattern ={
// /products/list.php の変換マスタ
// "カテゴリID":"変換後ファイル名"
"category_list":{
"9" :"soccer",
"71" :"stream/soccer"
},
"products_category_list":{
"56" :"soccer",
"57" :"soccer",
"58" :"soccer",
"59" :"soccer",
"60" :"soccer",
"406" :"soccer",
"407" :"soccer",
"408" :"soccer",
"409" :"soccer",
"410" :"soccer",
"411" :"soccer",
"412" :"soccer",
"413" :"soccer",
"414" :"soccer",
"415" :"soccer",
"416" :"soccer",
"417" :"soccer",
"418" :"soccer",
"419" :"soccer",
"420" :"soccer",
"421" :"soccer",
"422" :"soccer",
"423" :"soccer",
"974" :"soccer",
"975" :"soccer",
"976" :"soccer",
"995" :"soccer",
"996" :"soccer",
"997" :"soccer",
"1039" :"soccer",
"1040" :"soccer",
"1041" :"soccer",
"1042" :"soccer",
"1073" :"soccer",
"1074" :"soccer",
"1075" :"soccer",
"1076" :"soccer",
"1077" :"soccer",
"1159" :"soccer",
"1160" :"soccer",
"1161" :"soccer",
"1162" :"soccer",
"1213" :"soccer",
"1214" :"soccer",
"1215" :"soccer",
"1216" :"soccer",
"1217" :"soccer",
"1266" :"soccer",
"1267" :"soccer",
"1268" :"soccer",
"1269" :"soccer",
"1281" :"soccer",
"1282" :"soccer",
"1283" :"soccer",
"1284" :"soccer",
"1293" :"soccer",
"1294" :"soccer",
"1295" :"soccer",
"1296" :"soccer",
"1310" :"soccer",
"1311" :"soccer",
"1312" :"soccer",
"1313" :"soccer",
"1325" :"soccer",
"1326" :"soccer",
"1327" :"soccer",
"1403" :"soccer",
"1404" :"soccer",
"1405" :"soccer",
"1465" :"soccer",
"1466" :"soccer",
"1467" :"soccer",
"1468" :"soccer",
"1525" :"soccer",
"1526" :"soccer",
"1527" :"soccer",
"1649" :"stream/soccer",
"1650" :"stream/soccer",
"1651" :"stream/soccer",
"1652" :"stream/soccer",
"1653" :"stream/soccer",
"1967" :"stream/soccer",
"1968" :"stream/soccer",
"1969" :"stream/soccer",
"1970" :"stream/soccer",
"1971" :"stream/soccer",
"1972" :"stream/soccer",
"1973" :"stream/soccer",
"1974" :"stream/soccer",
"1975" :"stream/soccer",
"1976" :"stream/soccer",
"1977" :"stream/soccer",
"1978" :"stream/soccer",
"1979" :"stream/soccer",
"1980" :"stream/soccer",
"1981" :"stream/soccer",
"1982" :"stream/soccer",
"1983" :"stream/soccer",
"1984" :"stream/soccer",
"2458" :"stream/soccer",
"2459" :"stream/soccer",
"2460" :"stream/soccer",
"2479" :"stream/soccer",
"2480" :"stream/soccer",
"2481" :"stream/soccer",
"2521" :"stream/soccer",
"2522" :"stream/soccer",
"2523" :"stream/soccer",
"2524" :"stream/soccer",
"2551" :"stream/soccer",
"2552" :"stream/soccer",
"2553" :"stream/soccer",
"2554" :"stream/soccer",
"2555" :"stream/soccer",
"2637" :"stream/soccer",
"2638" :"stream/soccer",
"2639" :"stream/soccer",
"2640" :"stream/soccer",
"2691" :"stream/soccer",
"2692" :"stream/soccer",
"2693" :"stream/soccer",
"2694" :"stream/soccer",
"2695" :"stream/soccer",
"2744" :"stream/soccer",
"2745" :"stream/soccer",
"2746" :"stream/soccer",
"2747" :"stream/soccer",
"2759" :"stream/soccer",
"2760" :"stream/soccer",
"2761" :"stream/soccer",
"2762" :"stream/soccer",
"2771" :"stream/soccer",
"2772" :"stream/soccer",
"2773" :"stream/soccer",
"2774" :"stream/soccer",
"2788" :"stream/soccer",
"2789" :"stream/soccer",
"2790" :"stream/soccer",
"2791" :"stream/soccer",
"2803" :"stream/soccer",
"2804" :"stream/soccer",
"2805" :"stream/soccer",
"2879" :"stream/soccer",
"2880" :"stream/soccer",
"2881" :"stream/soccer",
"2939" :"stream/soccer",
"2940" :"stream/soccer",
"2941" :"stream/soccer",
"2942" :"stream/soccer",
"2999" :"stream/soccer",
"3000" :"stream/soccer",
"3001" :"stream/soccer",
"3048" :"stream/soccer",
"3234" :"stream/soccer",
"3235" :"stream/soccer",
"3236" :"stream/soccer",
"3237" :"soccer",
"3238" :"soccer",
"3239" :"soccer"
}
};
/* リンク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);
}
}
});
});