Buying games #4: show prices in discover store
[stouyapi.git] / bin / import-game-data.php
index ae7e24e44a0e4a4f1adf9a13aeaaf11e6d431dc0..d4033af28cdf1c91d9e148618bf6e79dc3559317 100755 (executable)
@@ -41,6 +41,7 @@ foreach (file($foldersFile) as $line) {
 
 $games = [];
 $count = 0;
+$developers = [];
 foreach ($gameFiles as $gameFile) {
     $game = json_decode(file_get_contents($gameFile));
     if ($game === null) {
@@ -53,6 +54,31 @@ foreach ($gameFiles as $gameFile) {
         'api/v1/details-data/' . $game->packageName . '.json',
         buildDetails($game)
     );
+
+    if (!isset($developers[$game->developer->uuid])) {
+        $developers[$game->developer->uuid] = [
+            'info'     => $game->developer,
+            'products' => [],
+        ];
+    }
+
+    $products = $game->products ?? [];
+    foreach ($products as $product) {
+        writeJson(
+            'api/v1/developers/' . $game->developer->uuid
+            . '/products/' . $product->identifier . '.json',
+            buildDeveloperProductOnly($product, $game->developer)
+        );
+        $developers[$game->developer->uuid]['products'][] = $product;
+    }
+
+    /**/
+    writeJson(
+        'api/v1/games/' . $game->packageName . '/purchases',
+        buildPurchases($game)
+    );
+    /**/
+
     /* this crashes babylonian twins
     writeJson(
         'api/v1/games/' . $game->packageName . '/purchases',
@@ -80,6 +106,15 @@ foreach ($gameFiles as $gameFile) {
     }
 }
 
+foreach ($developers as $developer) {
+    writeJson(
+        //index.htm does not need a rewrite rule
+        'api/v1/developers/' . $developer['info']->uuid
+        . '/products/index.htm',
+        buildDeveloperProducts($developer['products'], $developer['info'])
+    );
+}
+
 writeJson('api/v1/discover-data/discover.json', buildDiscover($games));
 writeJson('api/v1/discover-data/home.json', buildDiscoverHome($games));
 
@@ -210,6 +245,12 @@ function buildApps($game)
 {
     $latestRelease = $game->latestRelease;
 
+    $product      = null;
+    $gamePromoted = getPromotedProduct($game);
+    if ($gamePromoted) {
+        $product = buildProduct($gamePromoted);
+    }
+
     // http://cweiske.de/ouya-store-api-docs.htm#get-https-devs-ouya-tv-api-v1-apps-xxx
     return [
         'app' => [
@@ -247,7 +288,7 @@ function buildApps($game)
             'supportPhone'        => $game->developer->supportPhone,
             'founder'             => $game->developer->founder,
 
-            'promotedProduct' => null,
+            'promotedProduct' => $product,
         ],
     ];
 }
@@ -264,6 +305,23 @@ function buildAppDownload($game, $release)
     ];
 }
 
+function buildProduct($product)
+{
+    if ($product === null) {
+        return null;
+    }
+    return [
+        'type'          => 'entitlement',
+        'identifier'    => $product->identifier,
+        'name'          => $product->name,
+        'description'   => $product->description ?? '',
+        'localPrice'    => $product->localPrice,
+        'originalPrice' => $product->originalPrice,
+        'percentOff'    => 0,
+        'currency'      => $product->currency,
+    ];
+}
+
 /**
  * Build /app/v1/details?app=org.example.game
  */
@@ -293,13 +351,26 @@ function buildDetails($game)
         } else {
             $mediaTiles[] = [
                 'type' => 'video',
-                'urls' => [
-                    'full'      => $medium->url,
-                ],
+                'url'  => $medium->url,
             ];
         }
     }
 
+    $buttons = [];
+    if (isset($game->links->unlocked)) {
+        $buttons[] = [
+            'text' => 'Show unlocked',
+            'url'  => 'ouya://launcher/details?app=' . $game->links->unlocked,
+            'bold' => true,
+        ];
+    }
+
+    $product      = null;
+    $gamePromoted = getPromotedProduct($game);
+    if ($gamePromoted) {
+        $product = buildProduct($gamePromoted);
+    }
+
     // http://cweiske.de/ouya-store-api-docs.htm#get-https-devs-ouya-tv-api-v1-details
     return [
         'type'             => 'Game',
@@ -356,7 +427,73 @@ function buildDetails($game)
             'url' => null,
         ],
 
-        'promotedProduct' => null,
+        'promotedProduct' => $product,
+        'buttons'         => $buttons,
+    ];
+}
+
+/**
+ * For /api/v1/developers/xxx/products/?only=yyy
+ */
+function buildDeveloperProductOnly($product, $developer)
+{
+    return [
+        'developerName' => $developer->name,
+        'currency'      => $product->currency,
+        'products'      => [
+            buildProduct($product),
+        ],
+    ];
+}
+
+/**
+ * For /api/v1/developers/xxx/products/
+ */
+function buildDeveloperProducts($products, $developer)
+{
+    $jsonProducts = [];
+    foreach ($products as $product) {
+        $jsonProducts[] = buildProduct($product);
+    }
+    return [
+        'developerName' => $developer->name,
+        'currency'      => $products[0]->currency ?? 'EUR',
+        'products'      => $jsonProducts,
+    ];
+}
+
+function buildPurchases($game)
+{
+    $purchasesData = [
+        'purchases' => [],
+    ];
+    $promotedProduct = getPromotedProduct($game);
+    if ($promotedProduct) {
+        $purchasesData['purchases'][] = [
+            'purchaseDate' => time() * 1000,
+            'generateDate' => time() * 1000,
+            'identifier'   => $promotedProduct->identifier,
+            'gamer'        => 'stouyapi',
+            'uuid'         => '00702342-0000-1111-2222-c3e1500cafe2',//gamer uuid
+            'priceInCents' => $promotedProduct->originalPrice * 100,
+            'localPrice'   => $promotedProduct->localPrice,
+            'currency'     => $promotedProduct->currency,
+        ];
+    }
+
+    $encryptedOnce  = dummyEncrypt($purchasesData);
+    $encryptedTwice = dummyEncrypt($encryptedOnce);
+    return $encryptedTwice;
+}
+
+function dummyEncrypt($data)
+{
+    return [
+        'key'  => base64_encode('0123456789abcdef') . "\n",
+        'iv'   => 't3jir1LHpICunvhlM76edQ==' . "\n",//random bytes
+        'blob' => base64_encode(
+            json_encode($data, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES)
+        ) . "\n",
     ];
 }
 
@@ -377,7 +514,7 @@ function addDiscoverRow(&$data, $title, $games)
 {
     $row = [
         'title'     => $title,
-        'showPrice' => false,
+        'showPrice' => true,
         'ranked'    => false,
         'tiles'     => [],
     ];
@@ -389,6 +526,11 @@ function addDiscoverRow(&$data, $title, $games)
 
         } else {
             //game
+            if (isset($game->links->original)) {
+                //do not link unlocked games.
+                // people an access them via the original games
+                continue;
+            }
             $tilePos = findTile($data['tiles'], $game->packageName);
             if ($tilePos === null) {
                 $tilePos = count($data['tiles']);
@@ -448,6 +590,7 @@ function buildDiscoverGameTile($game)
             'count' => $game->rating->count,
             'average' => $game->rating->average,
         ],
+        'promotedProduct' => buildProduct(getPromotedProduct($game)),
     ];
 }
 
@@ -576,6 +719,19 @@ function getAllImageUrls($media)
     return $imageUrls;
 }
 
+function getPromotedProduct($game)
+{
+    if (!isset($game->products) || !count($game->products)) {
+        return null;
+    }
+    foreach ($game->products as $gameProd) {
+        if ($gameProd->promoted) {
+            return $gameProd;
+        }
+    }
+    return null;
+}
+
 function writeJson($path, $data)
 {
     global $wwwDir;