<?

$postURL = '';

//コンテンツID定義済
if(defined('CONTENTS_ID')){
	$postURL = CONTENTS_ID;
}

//コンテンツID未定義
else{
	if(isset($_SERVER['HTTPS']) and $_SERVER['HTTPS'] == 'on'){
	    $protocol = 'https://';
	}else{
	    $protocol = 'http://';
	}
	
	$prevurl  = urlencode($protocol.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']);  
	$content_id = explode("%2F", $prevurl);
	$postURL = $content_id[5];
}

//対応チェック
$is_support = false;

//フラグ定義済
if(isset($ANDROID_FLG) && isset($IOS_FLG) && isset($PC_FLG)){
	
	//ユーザーエージェント
	$user_agent = $_SERVER['HTTP_USER_AGENT'];
	
	//Android
	if(strstr($user_agent, "Android")){
		if($ANDROID_FLG){
			$is_support = true;
		}
	}
	
	//iOS
	else if(strstr($user_agent, "iPhone") || strstr($user_agent, "iPad") || strstr($user_agent, "iPod")){
		if($IOS_FLG){
			$is_support = true;
		}
	}
	
	//PC
	else{
		if($PC_FLG){
			$is_support = true;
		}
	}
}

//対応
if($is_support){
	
	//フラグ定義済
	if(isset($IS_LOGIN) && isset($IS_RELEASED) && isset($BEFORE_SALE)){
		
		//ログイン済
		if($IS_LOGIN == 1){
		
			//予約販売またはリリース済
			if($BEFORE_SALE == 1 || $IS_RELEASED == 1){
				echo '<a href="https://hbox.jp/home/cart_add/'.$postURL.'/"  target="_blank" data-ajax="false"><img src="https://hbox.jp/aff/prom/b_sakura/images/addcart.png" width="100%" alt="カートに追加" /></a>';
			}
			
			//上記以外
			else{
				echo '<a href="https://hbox.jp/home/content/'.$postURL.'/"  data-ajax="false"><img src="https://hbox.jp/aff/prom/b_sakura/images/contents_back.png" width="100%" alt="コンテンツ詳細へ戻る" /></a>';
			}
		}
		
		//未ログイン
		else{
			echo '<a href="https://hbox.jp/home/create_account?rcid='.$postURL.'"  target="_blank"  data-ajax="false"><img src="https://hbox.jp/aff/prom/b_sakura/images/join.png" width="100%" alt="無料会員登録" /></a>';
		}
	}
	
	//フラグ未定義
	else{
		echo '<a href="https://hbox.jp/home/content/'.$postURL.'/" data-ajax="false"><img src="https://hbox.jp/aff/prom/b_sakura/images/contents_back.png" width="100%" alt="コンテンツ詳細へ戻る" /></a>';
	}
}

//非対応
else{
	
	//フラグ定義済かつ未ログイン
	if(isset($IS_LOGIN) && $IS_LOGIN == 0){
		echo '<a href="https://hbox.jp/home/create_account?rcid='.$postURL.'" target="_blank"  data-ajax="false"><img src="https://hbox.jp/aff/prom/b_sakura/images/join.png" width="100%" alt="無料会員登録" /></a>';
	}
	
	//上記以外
	else{
		echo '<a href="https://hbox.jp/home/content/'.$postURL.'/" data-ajax="false"><img src="https://hbox.jp/aff/prom/b_sakura/images/contents_back.png" width="100%" alt="コンテンツ詳細へ戻る" /></a>';
	}
}

?>