상세 컨텐츠

본문 제목

플래시 액션스크립트 adobe ane 라이브러리를 이용한 ios 구매 관련

ADOBE/ ActionScript

by AlrepondTech 2014. 10. 20. 16:32

본문

반응형
728x170

 

 

 

 

=================================

=================================

=================================

 

 

 

 

 

 

adobe ane ios store 샘플

 

출처: adobe game sdk

 

관련파일: 

ProductStoreTest.as
다운로드

 

Product Store.ane
다운로드

 

플래시 빌더에 ane 파일을 등록하여 사용한다.

ios 빌드인 경우에는 맥에서 빌드하고 실행해야 볼수 있을 것이다.

윈도우에서 빌드하면 실행은 안되나 아이패드, 아이폰에 올려서 실행해야 할 것 이다.

 

/*************************************************************************

 

*

 

* ADOBE CONFIDENTIAL

 

* ___________________

 

*

 

*  Copyright [first year code created] Adobe Systems Incorporated

 

*  All Rights Reserved.

 

*

 

* NOTICE:  All information contained herein is, and remains

 

* the property of Adobe Systems Incorporated and its suppliers,

 

* if any.  The intellectual and technical concepts contained

 

* herein are proprietary to Adobe Systems Incorporated and its

 

* suppliers and are protected by trade secret or copyright law.

 

* Dissemination of this information or reproduction of this material

 

* is strictly forbidden unless prior written permission is obtained

 

* from Adobe Systems Incorporated.

 

**************************************************************************/

 

 

 

package

 

{

 

import com.adobe.ane.productStore.Product;

 

import com.adobe.ane.productStore.ProductEvent;

 

import com.adobe.ane.productStore.ProductStore;

 

import com.adobe.ane.productStore.Transaction;

 

import com.adobe.ane.productStore.TransactionEvent;

 

 

 

import flash.display.Sprite;

 

import flash.display.StageAlign;

 

import flash.display.StageScaleMode;

 

import flash.events.*;

 

import flash.events.MouseEvent;

 

import flash.net.URLLoader;

 

import flash.net.URLRequest;

 

import flash.net.URLRequestMethod;

 

import flash.sampler.NewObjectSample;

 

import flash.text.TextField;

 

import flash.text.TextFormat;

 

 

 

public class ProductStoreTest extends Sprite

 

{

 

private var productStore:ProductStore = null;

 

private var arrC3:Array=new Array();

 

private var arrC2:Array=new Array();

 

 

 

private var avlTxt:CustomTextField;

 

private var isAvailable:CustomButton;

 

private var isSupported:CustomButton;

 

private var suppTxt:CustomTextField;

 

private var restoreTransaction:CustomButton;

 

private var getProduct:CustomButton;

 

private var gt:TextField;

 

private var proSuc:CustomTextField;

 

private var prodSuccess:TextField;

 

private var val:String;

 

private var restoreVal:CustomTextField;

 

private var restoreTxt:TextField;

 

private var pendBtn:CustomButton;

 

 

 

public function ProductStoreTest()

 

{

 

 isAvailable = new CustomButton( "isAvailable", 0,-135,70,25);

 

addChild(isAvailable);

 

 avlTxt = new CustomTextField();

 

addChild(avlTxt);

 

isAvailable.addEventListener(MouseEvent.CLICK, is_Available);

 

 

 

isSupported = new CustomButton("isSupported",250,-135,70,25);

 

addChild(isSupported);

 

suppTxt = new CustomTextField();

 

addChild(suppTxt);

 

isSupported.addEventListener(MouseEvent.CLICK, check_isSupported);

 

 

 

restoreTransaction = new CustomButton("restoreTransaction", 0,-90,100,25);

 

addChild(restoreTransaction);

 

restoreTransaction.addEventListener(MouseEvent.CLICK, restore_Transactions);

 

restoreVal = new CustomTextField();

 

restoreTxt = restoreVal.create(130,-90,150,25);

 

addChild(restoreTxt);

 

 

 

getProduct = new CustomButton("getProduct",0,-50,70,25);

 

addChild(getProduct);

 

getProduct.addEventListener(MouseEvent.CLICK, get_Product);

 

 

 

proSuc = new CustomTextField();

 

addChild(proSuc);

 

prodSuccess = proSuc.create(135,-20,200,50);

 

addChild(prodSuccess);

 

prodSuccess.text = "PRODUCT DETAILS";

 

 

 

pendBtn = new CustomButton("Pending Transactions", 0, 180, 110, 25);

 

addChild(pendBtn);

 

pendBtn.addEventListener(MouseEvent.CLICK, pending_transaction);

 

 

 

gt = new TextField();

 

gt.x = 0;

 

gt.y = -20;

 

gt.width = 120;

 

gt.height = 50;

 

gt.border = true;

 

addChild(gt);

 

}

 

 

 

protected function check_isSupported(event:MouseEvent):void

 

{

 

trace("in ckeck is supported");

 

productStore=new ProductStore()

 

var t1:Boolean=ProductStore.isSupported;

 

var t:TextField = suppTxt.create(330,-135,60,25);

 

t.text=t1.toString();

 

}

 

 

 

// protected function abc(ps:ProductStore):void

 

// {

 

// trace("in abc");

 

// }

 

 

 

protected function is_Available(event:MouseEvent):void

 

{

 

var ps:ProductStore=new ProductStore();

 

trace("in is_Available");

 

var t2:Boolean=productStore.available;

 

var t:TextField = avlTxt.create(90, -135,60,20);

 

t.text=t2.toString();

 

}

 

 

 

public function get_Product(event:MouseEvent):void

 

{

 

trace("in get_Product");

 

productStore.addEventListener(ProductEvent.PRODUCT_DETAILS_SUCCESS,productDetailsSucceeded);

 

productStore.addEventListener(ProductEvent.PRODUCT_DETAILS_FAIL, productDetailsFailed);

 

 

 

var vector:Vector.<String> = new Vector.<String>(3);

 

vector[0] = "9";

 

vector[1] = "p8";

 

vector[2] = "1234897";

 

productStore.requestProductsDetails(vector);

 

gt.text =( "Available products: \n" + "1. Consumable \n" + "2. Non Consumable \n"+ vector);

 

var consumable:CustomButton = new CustomButton("Consumable", 0,50, 70,25);

 

addChild(consumable);

 

consumable.addEventListener(MouseEvent.CLICK, consumableProduct);

 

var nonconsumable:CustomButton = new CustomButton("Non Consumable", 90, 50, 90,25);

 

addChild(nonconsumable);

 

nonconsumable.addEventListener(MouseEvent.CLICK, nonconsumableProduct);

 

}

 

 

 

public function productDetailsSucceeded(e:ProductEvent):void

{

 

trace("in productDetailsSucceeded "+e);

 

var i:uint=0;

 

while(e.products && i < e.products.length)

 

{

 

 

var p:Product = e.products[i];

 

prodSuccess.appendText("\nTITLE: " + p.title + "\nDescription: " + p.description + "\nIdentifier : " + p.identifier + "PriceLocale : " + p.priceLocale + "\nPrice: " + p.price);

 

trace("title : "+p.title);

 

trace("description: "+p.description);

 

trace("identifier: "+p.identifier);

 

trace("priceLocale: "+p.priceLocale);

 

trace("price :"+p.price);

 

i++;

 

}

 

}

 

 

 

public function productDetailsFailed(e:ProductEvent):void

{

 

trace("in productDetailsFailed"+e);

 

var i:uint=0;

 

while(e.invalidIdentifiers && i < e.invalidIdentifiers.length)

 

{

 

trace(e.invalidIdentifiers[i]);

 

i++;

 

}

}

 

 

 

public function consumableProduct(e:MouseEvent):void

{

 

trace("consumable product...");

 

productStore.addEventListener(TransactionEvent.PURCHASE_TRANSACTION_SUCCESS, purchaseTransactionSucceeded);

 

productStore.addEventListener(TransactionEvent.PURCHASE_TRANSACTION_CANCEL, purchaseTransactionCanceled);

 

productStore.addEventListener(TransactionEvent.PURCHASE_TRANSACTION_FAIL, purchaseTransactionFailed);

 

productStore.makePurchaseTransaction("p8",1);

 

}

 

 

 

public function nonconsumableProduct(e:MouseEvent):void

{

 

trace("Non consumable product...");

 

productStore.addEventListener(TransactionEvent.PURCHASE_TRANSACTION_SUCCESS, purchaseTransactionSucceeded);

 

productStore.addEventListener(TransactionEvent.PURCHASE_TRANSACTION_CANCEL, purchaseTransactionCanceled);

 

productStore.addEventListener(TransactionEvent.PURCHASE_TRANSACTION_FAIL, purchaseTransactionFailed);

 

productStore.makePurchaseTransaction("9",1);

 

}

 

 

 

protected function purchaseTransactionSucceeded(e:TransactionEvent):void

{

trace("in purchaseTransactionSucceeded" +e);

 

var i:uint=0;

 

var t:Transaction;

 

while(e.transactions && i < e.transactions.length)

 

{

 

t = e.transactions[i];

 

printTransaction(t);

 

i++;

 

var Base:Base64=new Base64();

 

var encodedReceipt:String = Base64.Encode(t.receipt);

 

var req:URLRequest = new URLRequest("https://sandbox.itunes.apple.com/verifyReceipt");

 

req.method = URLRequestMethod.POST;

 

req.data = "{\"receipt-data\" : \""+ encodedReceipt+"\"}";

 

var ldr:URLLoader = new URLLoader(req);

 

ldr.load(req);

 

ldr.addEventListener(Event.COMPLETE,function(e:Event):void{

 

trace("LOAD COMPLETE: " + ldr.data);

 

productStore.addEventListener(TransactionEvent.FINISH_TRANSACTION_SUCCESS, finishTransactionSucceeded);

 

productStore.finishTransaction(t.identifier);

 

});

 

 

 

trace("Called Finish on/Finish Transaction " + t.identifier); 

 

}

 

getPendingTransaction(productStore);

 

}

 

 

 

protected function purchaseTransactionCanceled(e:TransactionEvent):void{

 

trace("in purchaseTransactionCanceled"+e);

 

var i:uint=0;

 

while(e.transactions && i < e.transactions.length)

 

{

 

var t:Transaction = e.transactions[i];

 

printTransaction(t);

 

i++;

 

trace("FinishTransactions" + t.identifier);

 

productStore.addEventListener(TransactionEvent.FINISH_TRANSACTION_SUCCESS, finishTransactionSucceeded);

 

productStore.finishTransaction(t.identifier);

 

}

 

getPendingTransaction(productStore);

}

 

 

 

protected function purchaseTransactionFailed(e:TransactionEvent):void

{

 

trace("in purchaseTransactionFailed"+e);

 

var i:uint=0;

 

while(e.transactions && i < e.transactions.length)

 

{

 

var t:Transaction = e.transactions[i];

 

printTransaction(t);

 

i++;

 

trace("FinishTransactions" + t.identifier);

 

productStore.addEventListener(TransactionEvent.FINISH_TRANSACTION_SUCCESS, finishTransactionSucceeded);

 

productStore.finishTransaction(t.identifier);

 

}

 

 

 

getPendingTransaction(productStore);

 

}

 

 

 

protected function finishTransactionSucceeded(e:TransactionEvent):void{

 

trace("in finishTransactionSucceeded" +e);

 

var i:uint=0;

 

while(e.transactions && i < e.transactions.length)

 

{

 

var t:Transaction = e.transactions[i];

 

printTransaction(t);

 

i++;

 

}

 

}

 

 

 

protected function restore_Transactions(event:MouseEvent):void

 

{

 

trace("in restore_Transactions");

 

productStore.addEventListener(TransactionEvent.RESTORE_TRANSACTION_SUCCESS, restoreTransactionSucceeded);

 

productStore.addEventListener(TransactionEvent.RESTORE_TRANSACTION_FAIL, restoreTransactionFailed);

 

productStore.addEventListener(TransactionEvent.RESTORE_TRANSACTION_COMPLETE,  restoreTransactionCompleted);

 

productStore.restoreTransactions();

 

 

 

}

 

 

 

protected function restoreTransactionSucceeded(e:TransactionEvent):void{

 

trace("in restoreTransactionSucceeded" +e);

 

val= "Restore Success";

 

restoreTxt.text = val;

 

var i:uint=0;

 

while(e.transactions && i < e.transactions.length)

{

 

var t:Transaction = e.transactions[i];

 

printTransaction(t);

 

i++;

 

 

 

trace("FinishTransactions" + t.identifier);

 

productStore.addEventListener(TransactionEvent.FINISH_TRANSACTION_SUCCESS, finishTransactionSucceeded);

 

productStore.finishTransaction(t.identifier);

 

}

 

 

 

getPendingTransaction(productStore);

 

}

 

 

 

protected function restoreTransactionFailed(e:TransactionEvent):void{

 

trace("in restoreTransactionFailed" +e);

 

val="Restore Fail";

 

restoreTxt.text = val;

 

}

 

 

 

protected function restoreTransactionCompleted(e:TransactionEvent):void{

 

trace("in restoreTransactionCompleted" +e);

 

val = "Restore Complete";

 

restoreTxt.text = val;

 

}

 

 

 

protected function pending_transaction(event:MouseEvent):void

 

{

 

getPendingTransaction(productStore);

 

}

 

 

 

public function getPendingTransaction(prdStore:ProductStore):void

 

{

 

trace("pending transaction");

 

var transactions:Vector.<Transaction> = prdStore.pendingTransactions; 

 

var i:uint=0;

 

while(transactions && i<transactions.length)

 

{

 

var t:Transaction = transactions[i];

 

printTransaction(t);

 

i++;

 

}

 

}

 

 

 

public function printTransaction(t:Transaction):void

 

{

 

trace("-------------------in Print Transaction----------------------");

 

trace("identifier :"+t.identifier);

 

trace("productIdentifier: "+ t.productIdentifier);

 

trace("productQuantity: "+t.productQuantity);

 

trace("date: "+t.date);

 

trace("receipt: "+t.receipt);

 

trace("error: "+t.error);

 

trace("originalTransaction: "+t.originalTransaction);

 

if(t.originalTransaction)

 

printTransaction(t.originalTransaction);

 

trace("---------end of print transaction----------------------------");

 

}

 

}

 

}

 

 

 

=================================

=================================

=================================

 

 

 

//결제 매니져 구현

 

파일: 

CPurchaseMgr_t.as
다운로드

 

 

package com.psj.manager

{

import com.adobe.ane.productStore.Product;

import com.adobe.ane.productStore.ProductEvent;

import com.adobe.ane.productStore.ProductStore;

import com.adobe.ane.productStore.Transaction;

import com.adobe.ane.productStore.TransactionEvent;

import common.base.CWindow;

 

public class CPurchaseMgr_t extends CWindow

{

private static const MSG_POS_X:int = 90;

 

private static var _pid:String   = ""; //결제 구매 아이디

 

private static var _purchase_finish:Boolean  = false;

 

private static var _inst:CPurchaseMgr_t     = null;

private var _productStore:ProductStore    = null;

 

private var _isTransacting:Boolean = false; //현재 결제중에 있는지. 

 

private static var _nextPur:Boolean = true; //결제가 제대로 않될때 showPurchaseMessageBox 부분에 다르게 api를 불러준다

 

public static function getInstance():CPurchaseMgr_t

{

if(_inst == null)

_inst = new CPurchaseMgr_t();

 

return _inst;

}

 

public static function setPid(pid:String):void

{

if(pid == null)

return;

 

if(getPurchaseFinish())

{

if(!((_pid.length == pid.length) && (_pid.indexOf(pid) == 0)))

{

setPurchaseFinish(false);

}

}

 

_pid = pid;

}

 

public static function getPid():String

{

return _pid;

}

 

public static function setPurchaseFinish(bon:Boolean):void

{

_purchase_finish = bon;

}

 

public static function getPurchaseFinish():Boolean

{

return _purchase_finish;

}

 

public function CPurchaseMgr_t()

{

_productStore = new ProductStore();

}

 

public function showPurchaseMessageBox():void

{

if(getPurchaseFinish())

return;

 

var pid:String   = "com.psj.ex"; //my apple Product id //nonConsumableProduct id or ConsumableProduct id

 

CPurchaseMgr_t.setPid(pid);

 

startPurchase();

}

 

public function startPurchase():void

{

//------------------------------------------------

/*

- if(_nextPur) 결제시 로그인이 안되어있으면 nonConsumableProduct 에있는 makePurchaseTransaction api로 만으로 

 아이디를 물어보는 창이 안뜰경우가 있다 이런 경우 restore, ProductDetail api를 먼저 실행하여 디바이스의 상태를 로그인 할수

있도록 유도한다. 그래도 로그인에 인한 결제가 안될경우 유저가 2번째 결제 버튼을 누를때 else 부분에 바로 nonConsumableProduct(..) 

결제 api로 향하도록 한다.

*/

//-------------------------------------------------

if(_nextPur)

{

showRestoreMessageBox();

CPurchaseMgr_t.getInstance().requestProductDetail(getPid());

CPurchaseMgr_t.getInstance().nonConsumableProduct(getPid());

}

else

{

CPurchaseMgr_t.getInstance().nonConsumableProduct(getPid());

_nextPur = true;

}

}

 

//---------------------------------------------------

//ProductDetail

 

public function requestProductDetail(pid:String):void

{

_productStore.addEventListener(ProductEvent.PRODUCT_DETAILS_SUCCESS, productDetailsSucceeded);

_productStore.addEventListener(ProductEvent.PRODUCT_DETAILS_FAIL,    productDetailsFailed);

 

var vector:Vector.<String> = new Vector.<String>(1);

vector[0] = pid;

_productStore.requestProductsDetails(vector);

}

 

public function productDetailsSucceeded(e:ProductEvent):void

{

trace("in productDetailsSucceeded "+e);

 

var i:uint=0;

 

var testTest:String = "";

 

e.invalidIdentifiers

 

while(e.products && i < e.products.length)

{

var p:Product = e.products[i];

 

trace("title : "+p.title);

 

testTest = testTest + "title : "+p.title+ ";";

 

trace("description: "+p.description);

 

testTest = testTest + "description: "+p.description+ ";";

 

trace("identifier: "+p.identifier);

 

testTest = testTest + "identifier: "+p.identifier+ ";";

 

trace("priceLocale: "+p.priceLocale);

 

testTest = testTest + "priceLocale: "+p.priceLocale + ";";

 

trace("price :"+p.price);

 

testTest = testTest + "price :"+p.price + ";";

 

i++;

}

}

 

public function productDetailsFailed(e:ProductEvent):void

{

trace("in productDetailsFailed"+e);

 

var i:uint=0;

 

while(e.invalidIdentifiers && i < e.invalidIdentifiers.length)

{

trace(e.invalidIdentifiers[i]);

 

i++;

}

}

 

//--------------------------------------------------------------

//nonConsumable

 

public function nonConsumableProduct(pid:String):void

{

if(! ProductStore.isSupported)

{

trace("지원하지 않습니다.");

return;

}

 

if(! _productStore.available)

{

trace("이용 가능한 상태가 아닙니다.");

return;

}

 

if(_isTransacting)

{

trace("처리 중입니다. 잠시만 기다려 주세요.");

}

 

_productStore.addEventListener(TransactionEvent.PURCHASE_TRANSACTION_SUCCESS, purchaseTransactionSucceeded);

_productStore.addEventListener(TransactionEvent.PURCHASE_TRANSACTION_CANCEL,  purchaseTransactionCanceled);

_productStore.addEventListener(TransactionEvent.PURCHASE_TRANSACTION_FAIL,    purchaseTransactionFailed);

 

_productStore.makePurchaseTransaction(pid, 1);

 

_isTransacting = true;

 

}

 

protected function purchaseTransactionCanceled(e:TransactionEvent):void

{

trace("in purchaseTransactionCanceled"+e);

 

var i:uint=0;

 

while(e.transactions && i < e.transactions.length)

{

var t:Transaction = e.transactions[i];

 

printTransaction(t);

 

i++;

 

trace("FinishTransactions" + t.identifier);

 

_productStore.addEventListener(TransactionEvent.FINISH_TRANSACTION_SUCCESS, finishTransactionSucceeded);

 

_productStore.finishTransaction(t.identifier);

}

 

getPendingTransaction(_productStore);

 

_isTransacting = false;

}

 

protected function purchaseTransactionSucceeded(e:TransactionEvent):void

{

trace("in purchaseTransactionSucceeded" +e);

 

var i:uint=0;

var t:Transaction;

while(e.transactions && i < e.transactions.length)

{

t = e.transactions[i];

printTransaction(t);

i++;

 

trace("Called Finish on/Finish Transaction " + t.identifier); 

}

getPendingTransaction(_productStore);

 

purchaseSucceeded_pur_local();

}

 

protected function purchaseTransactionFailed(e:TransactionEvent):void

{

trace("in purchaseTransactionFailed"+e);

 

var i:uint=0;

while(e.transactions && i < e.transactions.length)

{

var t:Transaction = e.transactions[i];

printTransaction(t);

i++;

 

trace("FinishTransactions" + t.identifier);

_productStore.addEventListener(TransactionEvent.FINISH_TRANSACTION_SUCCESS, finishTransactionSucceeded);

_productStore.finishTransaction(t.identifier);

}

 

getPendingTransaction(_productStore);

 

_isTransacting = false;

}

 

protected function finishTransactionSucceeded(e:TransactionEvent):void

{

trace("in finishTransactionSucceeded" +e);

var i:uint=0;

while(e.transactions && i < e.transactions.length)

{

var t:Transaction = e.transactions[i];

printTransaction(t);

i++;

}

}

 

public function getPendingTransaction(prdStore:ProductStore):void

{

trace("pending transaction");

 

var transactions:Vector.<Transaction> = prdStore.pendingTransactions; 

var i:uint=0;

while(transactions && i<transactions.length)

{

var t:Transaction = transactions[i];

printTransaction(t);

i++;

}

}

 

public function printTransaction(t:Transaction):void

{

trace("-------------------in Print Transaction----------------------");

trace("id :"+t.identifier);

}

 

private function purchaseSucceeded_pur_local():void

{

//결제 성공 또는 리스토어 성공

//.................................................

}

 

//-------------------------------------------------

//{restore

 

public function showRestoreMessageBox():void

{

var pid:String   = "com.psj.ex"; //my apple Product id //nonConsumableProduct id or ConsumableProduct id

 

CPurchaseMgr_t.setPid(pid);

 

startRestore();

}

 

public function startRestore():void

{

trace("in restore_Transactions");

_productStore.addEventListener(TransactionEvent.RESTORE_TRANSACTION_SUCCESS,   restoreTransactionSucceeded);

_productStore.addEventListener(TransactionEvent.RESTORE_TRANSACTION_FAIL,      restoreTransactionFailed);

_productStore.addEventListener(TransactionEvent.RESTORE_TRANSACTION_COMPLETE,  restoreTransactionCompleted); 

 

_productStore.restoreTransactions();

}

 

protected function restoreTransactionSucceeded(e:TransactionEvent):void

{

 

trace("in restoreTransactionSucceeded" +e);

//val= "Restore Success";

//restoreTxt.text = val;

 

var bRestore:Boolean = false;

 

var i:uint=0;

while(e.transactions && i < e.transactions.length)

{

var t:Transaction = e.transactions[i];

printTransaction(t);

i++;

 

//하나라도 가지고 있으면 서버에 restore 요청 break 걸면 애플에 모든 요청이 안가므로 모든 반복문을 다 돌아야한다.

if(getPid() == t.productIdentifier)

{

bRestore = true;

}

 

trace("FinishTransactions" + t.identifier);

_productStore.addEventListener(TransactionEvent.FINISH_TRANSACTION_SUCCESS, finishTransactionSucceeded);

_productStore.finishTransaction(t.identifier);

}

 

getPendingTransaction(_productStore);

 

if(bRestore)

{

purchaseSucceeded_pur_local();

}

}

 

protected function restoreTransactionFailed(e:TransactionEvent):void

{

trace("in restoreTransactionFailed" +e);

//val="Restore Fail";

//restoreTxt.text = val;

}

 

protected function restoreTransactionCompleted(e:TransactionEvent):void

{

trace("in restoreTransactionCompleted" +e);

//val = "Restore Complete";

//restoreTxt.text = val;

 

_productStore.removeEventListener(TransactionEvent.RESTORE_TRANSACTION_SUCCESS,   restoreTransactionSucceeded);

_productStore.removeEventListener(TransactionEvent.RESTORE_TRANSACTION_FAIL,      restoreTransactionFailed);

_productStore.removeEventListener(TransactionEvent.RESTORE_TRANSACTION_COMPLETE,  restoreTransactionCompleted);

}

 

//}restore

//-------------------------------------------------------------

 

}

}

 

=================================

=================================

=================================

 

 

 

 

반응형
그리드형


관련글 더보기

댓글 영역