X-Git-Url: https://git.cweiske.de/stouyapi.git/blobdiff_plain/5cbf471fb8bc6be680642b01e18418efc377051c..35656081d384dd2c762002293a9070229675586b:/bin/import-game-data.php diff --git a/bin/import-game-data.php b/bin/import-game-data.php index 95549d3..182708a 100755 --- a/bin/import-game-data.php +++ b/bin/import-game-data.php @@ -7,6 +7,7 @@ * @author Christian Weiske */ ini_set('xdebug.halt_level', E_WARNING|E_NOTICE|E_USER_WARNING|E_USER_NOTICE); +require_once __DIR__ . '/functions.php'; require_once __DIR__ . '/filters.php'; if (!isset($argv[1])) { error('Pass the path to a "folders" file with game data json files folder names'); @@ -16,11 +17,13 @@ if (!is_file($foldersFile)) { error('Given path is not a file: ' . $foldersFile); } -$GLOBALS['packagelists']['cweiskepicks'] = [ - 'de.eiswuxe.blookid2', - 'com.cosmos.babyloniantwins', - 'com.inverseblue.skyriders', -]; +//default configuration values +$GLOBALS['packagelists'] = []; +$GLOBALS['urlRewrites'] = []; +$cfgFile = __DIR__ . '/../config.php'; +if (file_exists($cfgFile)) { + include $cfgFile; +} $wwwDir = __DIR__ . '/../www/'; @@ -152,9 +155,36 @@ function buildDiscover(array $games) $data, 'Best rated', filterBestRated($games, 10) ); + + foreach ($GLOBALS['packagelists'] as $listTitle => $listPackageNames) { + addDiscoverRow( + $data, $listTitle, + filterByPackageNames($games, $listPackageNames) + ); + } + addDiscoverRow( - $data, "cweiske's picks", - filterByPackageNames($games, $GLOBALS['packagelists']['cweiskepicks']) + $data, 'Special', + [ + 'Best rated', + 'Most rated', + 'Random', + ] + ); + writeJson( + 'api/v1/discover-data/' . categoryPath('Best rated') . '.json', + buildSpecialCategory('Best rated', filterBestRated($games, 99)) + ); + writeJson( + 'api/v1/discover-data/' . categoryPath('Most rated') . '.json', + buildSpecialCategory('Most rated', filterMostDownloaded($games, 99)) + ); + writeJson( + 'api/v1/discover-data/' . categoryPath('Random') . '.json', + buildSpecialCategory( + 'Random ' . date('Y-m-d H:i'), + filterRandom($games, 99) + ) ); $players = [ @@ -163,7 +193,7 @@ function buildDiscover(array $games) 3 => '3 players', 4 => '4 players', ]; - addDiscoverRow($data, '# of players', $players); + addDiscoverRow($data, 'Multiplayer', $players); foreach ($players as $num => $title) { writeJson( 'api/v1/discover-data/' . categoryPath($title) . '.json', @@ -246,6 +276,25 @@ function buildMakeCategory($name, $games) return $data; } +function buildSpecialCategory($name, $games) +{ + $data = [ + 'title' => $name, + 'rows' => [], + 'tiles' => [], + ]; + + $first3 = array_slice($games, 0, 3); + $chunks = array_chunk(array_slice($games, 3), 4); + array_unshift($chunks, $first3); + + foreach ($chunks as $chunkGames) { + addDiscoverRow($data, '', $chunkGames); + } + + return $data; +} + function buildDiscoverHome(array $games) { //we do not want anything here for now @@ -326,7 +375,7 @@ function buildAppDownload($game, $release) 'fileSize' => $release->size, 'version' => $release->uuid, 'contentRating' => $game->contentRating, - 'downloadLink' => $release->url, + 'downloadLink' => rewriteUrl($release->url), ] ]; } @@ -337,12 +386,13 @@ function buildProduct($product) return null; } return [ - 'type' => 'entitlement', + 'type' => $product->type ?? 'entitlement', 'identifier' => $product->identifier, 'name' => $product->name, 'description' => $product->description ?? '', 'localPrice' => $product->localPrice, 'originalPrice' => $product->originalPrice, + 'priceInCents' => $product->originalPrice * 100, 'percentOff' => 0, 'currency' => $product->currency, ]; @@ -370,15 +420,17 @@ function buildDetails($game) $mediaTiles[] = [ 'type' => 'image', 'urls' => [ - 'thumbnail' => $medium->thumb, + 'thumbnail' => $medium->thumb ?? $medium->url, 'full' => $medium->url, ], ]; } else { - $mediaTiles[] = [ - 'type' => 'video', - 'url' => $medium->url, - ]; + if (!isUnsupportedVideoUrl($medium->url)) { + $mediaTiles[] = [ + 'type' => 'video', + 'url' => $medium->url, + ]; + } } } @@ -397,6 +449,13 @@ function buildDetails($game) $product = buildProduct($gamePromoted); } + $iaUrl = null; + if (isset($game->latestRelease->url) + && substr($game->latestRelease->url, 0, 29) == 'https://archive.org/download/' + ) { + $iaUrl = dirname($game->latestRelease->url) . '/'; + } + // http://cweiske.de/ouya-store-api-docs.htm#get-https-devs-ouya-tv-api-v1-details return [ 'type' => 'Game', @@ -455,6 +514,11 @@ function buildDetails($game) 'promotedProduct' => $product, 'buttons' => $buttons, + + 'stouyapi' => [ + 'internet-archive' => $iaUrl, + 'developer-url' => $game->developer->website ?? null, + ] ]; } @@ -487,6 +551,9 @@ function buildDeveloperProductOnly($product, $developer) */ function buildDeveloperProducts($products, $developer) { + //remove duplicates + $products = array_values(array_column($products, null, 'identifier')); + $jsonProducts = []; foreach ($products as $product) { $jsonProducts[] = buildProduct($product); @@ -509,8 +576,8 @@ function buildPurchases($game) 'purchaseDate' => time() * 1000, 'generateDate' => time() * 1000, 'identifier' => $promotedProduct->identifier, - 'gamer' => 'stouyapi', - 'uuid' => '00702342-0000-1111-2222-c3e1500cafe2',//gamer uuid + 'gamer' => '00702342-0000-1111-2222-c3e1500cafe2',//gamer uuid + 'uuid' => '00702342-0000-1111-2222-c3e1500beef3',//transaction ID 'priceInCents' => $promotedProduct->originalPrice * 100, 'localPrice' => $promotedProduct->localPrice, 'currency' => $promotedProduct->currency, @@ -542,11 +609,11 @@ function buildSearch($games) function dummyEncrypt($data) { return [ - 'key' => base64_encode('0123456789abcdef') . "\n", - 'iv' => 't3jir1LHpICunvhlM76edQ==' . "\n",//random bytes + 'key' => base64_encode('0123456789abcdef'), + 'iv' => 't3jir1LHpICunvhlM76edQ==',//random bytes 'blob' => base64_encode( json_encode($data, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES) - ) . "\n", + ), ]; } @@ -647,11 +714,6 @@ function buildDiscoverGameTile($game) ]; } -function categoryPath($title) -{ - return str_replace(['/', '\\', ' ', '+', '?'], '_', $title); -} - function getAllAges($games) { $ages = []; @@ -808,6 +870,16 @@ function getPromotedProduct($game) return null; } +/** + * vimeo only work with HTTPS now, + * and the OUYA does not support SNI. + * We get SSL errors and no video for them :/ + */ +function isUnsupportedVideoUrl($url) +{ + return strpos($url, '://vimeo.com/') !== false; +} + function removeMakeGames(array $games) { return filterByGenre($games, 'Tutorials', true); @@ -824,6 +896,14 @@ function removeMakeGenres($genres) return $filtered; } +function rewriteUrl($url) +{ + foreach ($GLOBALS['urlRewrites'] as $pattern => $replacement) { + $url = preg_replace($pattern, $replacement, $url); + } + return $url; +} + function writeJson($path, $data) { global $wwwDir;