Merge pull request #135 from loves2tu/google-feed
구글 판매자센터 피드 xml 생성코드입니다.
This commit is contained in:
@ -33,7 +33,7 @@ $pg_anchor = '<ul class="anchor">
|
||||
<p>사이트 명을 클릭하시면 해당 사이트로 이동합니다.</p>
|
||||
|
||||
<dl class="price_engine">
|
||||
<dt><a href="http://shopping.naver.com/" target="_blank">네이버 지식쇼핑</a></dt>
|
||||
<dt><a href="http://shopping.naver.com/" target="_blank">네이버쇼핑</a></dt>
|
||||
<dd>
|
||||
<ul>
|
||||
<li>입점 안내 : <a href="http://join.shopping.naver.com/join/intro.nhn" target="_blank">http://join.shopping.naver.com/join/intro.nhn</a></li>
|
||||
@ -41,6 +41,24 @@ $pg_anchor = '<ul class="anchor">
|
||||
<li>요약상품 URL : <a href="<?php echo G5_SHOP_URL; ?>/price/naver_summary.php" target="_blank"><?php echo G5_SHOP_URL; ?>/price/naver_summary.php</a></li>
|
||||
</ul>
|
||||
</dd>
|
||||
|
||||
<dt><a href="" target="_blank">구글 쇼핑</a></dt>
|
||||
<dd>
|
||||
<ul>
|
||||
<li>구글 Merchant Center : <a href="https://www.google.com/intl/ko_kr/retail/solutions/merchant-center" target="_blank">https://www.google.com/intl/ko_kr/retail/solutions/merchant-center</a></li>
|
||||
<li>파일 이름 : google_feed.php</a></li>
|
||||
<li>파일 URL : <a href="<?php echo G5_SHOP_URL; ?>/price/google_feed.php" target="_blank"><?php echo G5_SHOP_URL; ?>/price/google_feed.php</a></li>
|
||||
</ul>
|
||||
</dd>
|
||||
<dt>Feed 설명</dt>
|
||||
<dd>
|
||||
<ul>
|
||||
<li>판매국가 <b>대한민국</b>, 언어 <b>한국어</b> 설정 기준입니다.</li>
|
||||
<li>기본 피드 이름 : 쇼핑몰피드</li>
|
||||
<li>상품 설명 : <b>it_basic</b> (상품기본설명을 필수 입력해주세요. HTML 태그는 자동 제거됩니다.)</li>
|
||||
</ul>
|
||||
</dd>
|
||||
|
||||
<dt><a href="http://shopping.daum.net/" target="_blank">다음 쇼핑하우</a></dt>
|
||||
<dd>
|
||||
<ul>
|
||||
|
||||
92
shop/price/google_feed.php
Normal file
92
shop/price/google_feed.php
Normal file
@ -0,0 +1,92 @@
|
||||
<?php
|
||||
include_once("./_common.php");
|
||||
|
||||
$sql = "SELECT a.ca_id,
|
||||
a.ca_adult_use AS ca_adult,
|
||||
IF( SUBSTR(a.ca_id, 3) != \"\", (SELECT ca_adult_use FROM `{$g5['g5_shop_category_table']}` WHERE ca_id = SUBSTR(a.ca_id, 3)), 0) AS ca_adult_parent1,
|
||||
IF( SUBSTR(a.ca_id, 5) != \"\", (SELECT ca_adult_use FROM `{$g5['g5_shop_category_table']}` WHERE ca_id = SUBSTR(a.ca_id, 5)), 0) AS ca_adult_parent2,
|
||||
IF( SUBSTR(a.ca_id, 7) != \"\", (SELECT ca_adult_use FROM `{$g5['g5_shop_category_table']}` WHERE ca_id = SUBSTR(a.ca_id, 7)), 0) AS ca_adult_parent3,
|
||||
IF( SUBSTR(a.ca_id, 9) != \"\", (SELECT ca_adult_use FROM `{$g5['g5_shop_category_table']}` WHERE ca_id = SUBSTR(a.ca_id, 9)), 0) AS ca_adult_parent4
|
||||
FROM `{$g5['g5_shop_category_table']}` AS a";
|
||||
$result = sql_query($sql);
|
||||
|
||||
$category_adult_array = array();
|
||||
for ($i = 0; $row = sql_fetch_array($result); $i++ ) {
|
||||
$category_adult_array[$row['ca_id']] = array( $row['ca_adult'], // 자기자신 성인인증판단
|
||||
$row['ca_adult_parent1'], // 1depth 성인인증
|
||||
$row['ca_adult_parent2'], // 2depth 성인인증
|
||||
$row['ca_adult_parent3'], // 3depth 성인인증
|
||||
$row['ca_adult_parent4']); // 4depth 성인인증
|
||||
}
|
||||
|
||||
$sql =" SELECT a.*, IFNULL((SELECT MAX(`io_stock_qty`) FROM `{$g5['g5_shop_item_option_table']}` WHERE `it_id` = a.`it_id` GROUP BY `it_id`), a.`it_stock_qty`) AS in_stock
|
||||
FROM `{$g5['g5_shop_item_table']}` as a
|
||||
where a.`it_use` = '1' and a.`it_soldout` = '0' and a.`it_tel_inq` = '0' and a.`it_price` > '0' order by a.`ca_id`";
|
||||
$result = sql_query($sql);
|
||||
|
||||
$xml = new SimpleXMLElement("<rss/>");
|
||||
$xml->addAttribute("xmlns:xmlns:g", "http://base.google.com/ns/1.0");
|
||||
$xml->addAttribute("version", "2.0");
|
||||
$channel = $xml->addChild("channel");
|
||||
$title = $channel->addChild("title", "쇼핑몰피드");
|
||||
$link = $channel->addChild("link", G5_URL);
|
||||
$description = $channel->addChild("description", "");
|
||||
|
||||
for ($i = 0; $row = sql_fetch_array($result); $i++) {
|
||||
$it_id = $row['it_id'];
|
||||
$it_title = $row['it_name'];
|
||||
$it_link = shop_item_url($row['it_id']);
|
||||
$it_basic = strip_tags($row['it_basic']);
|
||||
|
||||
$it_image = "";
|
||||
for($j = 1; $j <= 10; $j++) {
|
||||
$img = $row['it_img'.$j];
|
||||
|
||||
if(empty($img)) continue;
|
||||
|
||||
$it_image = G5_DATA_URL."/item/".$img;
|
||||
break;
|
||||
}
|
||||
|
||||
$stock = "in_stock";
|
||||
if($row['it_stock_qty'] <= 0) {
|
||||
$stock = "out_of_stock";
|
||||
} else {
|
||||
if($row['in_stock'] <= 0) $stock = "out_of_stock";
|
||||
}
|
||||
|
||||
$item = $channel->addChild("item");
|
||||
// 필수 입력 항목
|
||||
$item->addChild("g:g:id", $it_id);
|
||||
$item->addChild("title", $it_title);
|
||||
$item->addChild("description", $it_basic);
|
||||
$item->addChild("link", $it_link);
|
||||
$item->addChild("g:g:image_link", $it_image);
|
||||
$item->addChild("g:g:availability", $stock);
|
||||
|
||||
if($row['it_cust_price'] != null && $row['it_cust_price'] > 0) {
|
||||
$item->addChild("g:g:price", sprintf('%.2fKRW', $row['it_cust_price']));
|
||||
$item->addChild("g:g:sale_price", sprintf('%.2fKRW', $row['it_price']));
|
||||
} else {
|
||||
$item->addChild("g:g:price", sprintf('%.2fKRW', $row['it_price']));
|
||||
}
|
||||
|
||||
// 선택적 입력 항목
|
||||
$item->addChild("g:g:condition", "new");
|
||||
|
||||
$cate_array = array($row['ca_id'], $row['ca_id2'], $row['ca_id3']);
|
||||
|
||||
$adult = "no";
|
||||
foreach($cate_array as $key => $var) {
|
||||
if(in_array(1, $category_adult_array[$var])) {
|
||||
$adult = "yes";
|
||||
}
|
||||
}
|
||||
|
||||
$item->addChild("g:g:adult", $adult);
|
||||
}
|
||||
|
||||
header('Content-type: text/xml');
|
||||
echo $xml->asXML();
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user