X-Git-Url: https://git.cweiske.de/stouyapi.git/blobdiff_plain/42ed43ca190da18e957d1ec948e8f26d30a3b8d7..ad9f3cf5a07338134a29fee4b6215c50cb8142c8:/bin/import-game-data.php diff --git a/bin/import-game-data.php b/bin/import-game-data.php index 0ae5a4e..0dc4926 100755 --- a/bin/import-game-data.php +++ b/bin/import-game-data.php @@ -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,12 +54,29 @@ foreach ($gameFiles as $gameFile) { 'api/v1/details-data/' . $game->packageName . '.json', buildDetails($game) ); - /* this crashes babylonian twins + + 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', - "{}\n" + buildPurchases($game) ); - */ writeJson( 'api/v1/apps/' . $game->packageName . '.json', @@ -80,12 +98,45 @@ foreach ($gameFiles as $gameFile) { } } +calculateRank($games); + +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( + //index.htm does not need a rewrite rule + 'api/v1/developers/' . $developer['info']->uuid + . '/current_gamer', + buildDeveloperCurrentGamer() + ); +} + writeJson('api/v1/discover-data/discover.json', buildDiscover($games)); writeJson('api/v1/discover-data/home.json', buildDiscoverHome($games)); +//make +writeJson( + 'api/v1/discover-data/tutorials.json', + buildMakeCategory('Tutorials', filterByGenre($games, 'Tutorials')) +); + +$searchLetters = 'abcdefghijklmnopqrstuvwxyz0123456789., '; +foreach (str_split($searchLetters) as $letter) { + $letterGames = filterBySearchWord($games, $letter); + writeJson( + 'api/v1/search-data/' . $letter . '.json', + buildSearch($letterGames) + ); +} + function buildDiscover(array $games) { + $games = removeMakeGames($games); $data = [ 'title' => 'DISCOVER', 'rows' => [], @@ -129,7 +180,7 @@ function buildDiscover(array $games) ); } - $genres = getAllGenres($games); + $genres = removeMakeGenres(getAllGenres($games)); sort($genres); addChunkedDiscoverRows($data, $genres, 'Genres'); @@ -171,12 +222,7 @@ function buildDiscoverCategory($name, $games) filterBestRated($games, 10) ); - usort( - $games, - function ($gameA, $gameB) { - return strcmp($gameA->title, $gameB->title); - } - ); + $games = sortByTitle($games); $chunks = array_chunk($games, 4); foreach ($chunks as $chunkGames) { addDiscoverRow($data, '', $chunkGames); @@ -185,6 +231,20 @@ function buildDiscoverCategory($name, $games) return $data; } +function buildMakeCategory($name, $games) +{ + $data = [ + 'title' => $name, + 'rows' => [], + 'tiles' => [], + ]; + + $games = sortByTitle($games); + addDiscoverRow($data, '', $games); + + return $data; +} + function buildDiscoverHome(array $games) { //we do not want anything here for now @@ -213,16 +273,7 @@ function buildApps($game) $product = null; $gamePromoted = getPromotedProduct($game); if ($gamePromoted) { - $product = [ - 'type' => 'entitlement', - 'identifier' => $gamePromoted->identifier, - 'name' => $gamePromoted->name, - 'description' => $gamePromoted->description ?? '', - 'localPrice' => $gamePromoted->localPrice, - 'originalPrice' => $gamePromoted->originalPrice, - 'percentOff' => 0, - 'currency' => $gamePromoted->currency, - ]; + $product = buildProduct($gamePromoted); } // http://cweiske.de/ouya-store-api-docs.htm#get-https-devs-ouya-tv-api-v1-apps-xxx @@ -279,6 +330,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 */ @@ -325,16 +393,7 @@ function buildDetails($game) $product = null; $gamePromoted = getPromotedProduct($game); if ($gamePromoted) { - $product = [ - 'type' => 'entitlement', - 'identifier' => $gamePromoted->identifier, - 'name' => $gamePromoted->name, - 'description' => $gamePromoted->description ?? '', - 'localPrice' => $gamePromoted->localPrice, - 'originalPrice' => $gamePromoted->originalPrice, - 'percentOff' => 0, - 'currency' => $gamePromoted->currency, - ]; + $product = buildProduct($gamePromoted); } // http://cweiske.de/ouya-store-api-docs.htm#get-https-devs-ouya-tv-api-v1-details @@ -398,6 +457,98 @@ function buildDetails($game) ]; } +function buildDeveloperCurrentGamer() +{ + return [ + 'gamer' => [ + 'uuid' => '00702342-0000-1111-2222-c3e1500cafe2', + 'username' => 'stouyapi', + ], + ]; +} + +/** + * 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 buildSearch($games) +{ + $games = sortByTitle($games); + $results = []; + foreach ($games as $game) { + $results[] = [ + 'title' => $game->title, + 'url' => 'ouya://launcher/details?app=' . $game->packageName, + 'contentRating' => $game->contentRating, + ]; + } + return [ + 'count' => count($results), + 'results' => $results, + ]; +} + +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", + ]; +} + function addChunkedDiscoverRows(&$data, $games, $title) { $chunks = array_chunk($games, 4); @@ -415,7 +566,7 @@ function addDiscoverRow(&$data, $title, $games) { $row = [ 'title' => $title, - 'showPrice' => false, + 'showPrice' => true, 'ranked' => false, 'tiles' => [], ]; @@ -491,6 +642,7 @@ function buildDiscoverGameTile($game) 'count' => $game->rating->count, 'average' => $game->rating->average, ], + 'promotedProduct' => buildProduct(getPromotedProduct($game)), ]; } @@ -598,6 +750,29 @@ function addMissingGameProperties($game) } } +/** + * Implements a sensible ranking system described in + * https://stackoverflow.com/a/1411268/2826013 + */ +function calculateRank(array $games) +{ + $averageRatings = array_map( + function ($game) { + return $game->rating->average; + }, + $games + ); + $average = array_sum($averageRatings) / count($averageRatings); + $C = $average; + $m = 500; + + foreach ($games as $game) { + $R = $game->rating->average; + $v = $game->rating->count; + $game->rating->rank = ($R * $v + $C * $m) / ($v + $m); + } +} + function getFirstVideoUrl($media) { foreach ($media as $medium) { @@ -632,6 +807,22 @@ function getPromotedProduct($game) return null; } +function removeMakeGames(array $games) +{ + return filterByGenre($games, 'Tutorials', true); +} + +function removeMakeGenres($genres) +{ + $filtered = []; + foreach ($genres as $genre) { + if ($genre != 'Tutorials' && $genre != 'Builds') { + $filtered[] = $genre; + } + } + return $filtered; +} + function writeJson($path, $data) { global $wwwDir;