function send_page_access(page){
var c_key = $.cookie("maniwa-joho-hasshin_key");
page = _convert_page(page);
if (!c_key){
$.ajax({
type: "POST",
url: "https://i-maniwa.com/area/nature_res_2022/page_access/page_access_key.html",
data: {
},
complete: function(){
_send_page(page);
}
});
}else{
_send_page(page);
}
}
function _send_page(page){
var c_page = $.cookie("maniwa-joho-hasshin_page");
var match = new RegExp("#"+page);
if (!c_page || ! match.test(c_page)){
$.ajax({
type: "POST",
url: "https://i-maniwa.com/area/nature_res_2022/page_access/page_access_index.html",
data: {
page: page,
csrf_token: "d02eb2f6de29db7536c872d864751326"
}
});
}
}
function _convert_page(page){
page = page.replace(/.html/, "");
page = page.replace(/^\/area/, "");
if (page == "/"){
page += "index";
}
return page;
}