How to implement product subscription bussiness model with Nokia In-application Purchase API
(Izinin - - →Introduction) |
(Izinin - - →Introduction) |
||
| Line 28: | Line 28: | ||
Book store example application can be found in [https://www.developer.nokia.com/info/sw.nokia.com/id/ad83f279-8d43-4dfa-b07d-7711268886fc/iap_qt_sdk_0.3.1_15.11.11.zip.html In-app Purchase for Qt] by the path after installation | Book store example application can be found in [https://www.developer.nokia.com/info/sw.nokia.com/id/ad83f279-8d43-4dfa-b07d-7711268886fc/iap_qt_sdk_0.3.1_15.11.11.zip.html In-app Purchase for Qt] by the path after installation | ||
\iap_qt_sdk_0.3.1_24.01.12\Examples\InApplicationPurchase\BuyAndDownloadExample | \iap_qt_sdk_0.3.1_24.01.12\Examples\InApplicationPurchase\BuyAndDownloadExample | ||
| − | This application project demonstrates how to implement In-application Purchase with your own access control to protected resources that are stored on third party server. Third party server can validate user requests for a product with OVI Store via Purchase Ticket Verification API. Book store example application functionality allows user to buy a product and use it forever. '''How with minimal efforts | + | This application project demonstrates how to implement In-application Purchase with your own access control to protected resources that are stored on third party server. Third party server can validate user requests for a product with OVI Store via Purchase Ticket Verification API. Book store example application functionality allows user to buy a product and use it forever. '''How to with minimal efforts implement subscription model on top of Book store example application?''' |
== Implementation approach == | == Implementation approach == | ||
Revision as of 18:02, 12 March 2012
This article explains how to ... implement subscription model in application by extending example application project existing in IAP SDK for Qt
Article Metadata
Tested with
Compatibility
Platform Security
Article
Contents |
Introduction
Book store example application can be found in In-app Purchase for Qt by the path after installation \iap_qt_sdk_0.3.1_24.01.12\Examples\InApplicationPurchase\BuyAndDownloadExample This application project demonstrates how to implement In-application Purchase with your own access control to protected resources that are stored on third party server. Third party server can validate user requests for a product with OVI Store via Purchase Ticket Verification API. Book store example application functionality allows user to buy a product and use it forever. How to with minimal efforts implement subscription model on top of Book store example application?
Implementation approach
architecture
When user requests server for a product, server checks whether this product has already been bought by this user. To do this checking server implementation dbaseManager has functionpublic function getTicket($var_account, $var_prodid)
Before the ticket existence check we are going to introduce Subscription expiration check. Upon the Subscription expiration checking result existed ticked for the requested product belongs to this user may be deleted if it is found that this purchase expired. Then if the ticked record has been deleted in Subscription expiration check, dbaseManager.getTicket will return empty string indicating user has to buy that product.
The rest of Book store example application business logic will remain unchanged.
performance consideration
For performance reason subscription expiration check for a product will be performed only for user who requests this product -- i.e. we don't scan the whole purchase list for purchase expiration.
Implementation
- We need to introduce expiration timer to the product catalog database implementation. Stored procedure will delete record if ticket timestamp is older that it is specified in 'subscriptionseconds' filed. Seconds unit is taken to operate with unix time stamp
CREATE PROCEDURE deleteExpiredSubsription (IN var_account VARCHAR(300), var_prodid VARCHAR(10))
BEGIN
DELETE FROM customer_product WHERE ticket IN ( SELECT * FROM (
SELECT t.ticket
FROM customer c
INNER JOIN customer_product t ON c.id = t.customer_id INNER JOIN product p ON p.id = t.product_id
WHERE p.subscriptionseconds IS NOT NULL AND
UNIX_TIMESTAMP() - t.servertimestamp - p.subscriptionseconds > 0 AND
c.accountdigest = var_account AND
p.productid = var_prodid
) AS tempTable );
-- about 'tempTable' above please check http://www.mysqlfaqs.net/mysql-faqs/Errors/1093-You-can-not-specify-target-table-comments-for-update-in-FROM-clause
-- the point is : MySQL does not allow to UPDATE or DELETE a table's data if you're simultaneously reading that same data with a subquery.
-- Error #1093 workaround
END$$
- We need to check whether subscription is expired in the mobile application code. When user tries to open already bought product subscription checking request will be issued to server. According to the implementation approach, when the server receives product request, first it checks user's ticket for expiration and then returns either ticket value or empty string. If empty string is returned, mobile application logic initiates purchase flow.
void MainWindow::playLevel()
{
.........
// before opeining downloaded product check with server back-end whether its ticket has expired
.........
}
(this is not complete article. Working application project source code will be provided)
Summary
Add categories below. Remove Category:Draft when the page is complete or near complete

