use new game data format for media
[stouyapi.git] / bin / import-game-data.php
index b1ec6299b8d6b19efff511ea74503e31576eb332..ae7e24e44a0e4a4f1adf9a13aeaaf11e6d431dc0 100755 (executable)
@@ -6,36 +6,65 @@
  * @link https://github.com/cweiske/ouya-game-data/
  * @author Christian Weiske <cweiske@cweiske.de>
  */
+ini_set('xdebug.halt_level', E_WARNING|E_NOTICE|E_USER_WARNING|E_USER_NOTICE);
+require_once __DIR__ . '/filters.php';
 if (!isset($argv[1])) {
-    error('Pass the path to a directory with game data json files');
+    error('Pass the path to a "folders" file with game data json files folder names');
 }
-$gameDataDir = $argv[1];
-if (!is_dir($gameDataDir)) {
-    error('Given path is not a directory: ' . $gameDataDir);
+$foldersFile = $argv[1];
+if (!is_file($foldersFile)) {
+    error('Given path is not a file: ' . $foldersFile);
 }
 
+$GLOBALS['packagelists']['cweiskepicks'] = [
+    'de.eiswuxe.blookid2',
+    'com.cosmos.babyloniantwins'
+];
+
 $wwwDir = __DIR__ . '/../www/';
 
-$gameFiles = glob($gameDataDir . '/*.json');
+$baseDir   = dirname($foldersFile);
+$gameFiles = [];
+foreach (file($foldersFile) as $line) {
+    $line = trim($line);
+    if (strlen($line)) {
+        if (strpos($line, '..') !== false) {
+            error('Path attack in ' . $folder);
+        }
+        $folder = $baseDir . '/' . $line;
+        if (!is_dir($folder)) {
+            error('Folder does not exist: ' . $folder);
+        }
+        $gameFiles = array_merge($gameFiles, glob($folder . '/*.json'));
+    }
+}
+
 $games = [];
+$count = 0;
 foreach ($gameFiles as $gameFile) {
     $game = json_decode(file_get_contents($gameFile));
     if ($game === null) {
         error('JSON invalid at ' . $gameFile);
     }
     addMissingGameProperties($game);
-    $games[$game->package] = $game;
+    $games[$game->packageName] = $game;
 
     writeJson(
-        'api/v1/details-data/' . $game->package . '.json',
+        'api/v1/details-data/' . $game->packageName . '.json',
         buildDetails($game)
     );
-    
+    /* this crashes babylonian twins
+    writeJson(
+        'api/v1/games/' . $game->packageName . '/purchases',
+        "{}\n"
+    );
+    */
+
     writeJson(
-        'api/v1/apps/' . $game->package . '.json',
+        'api/v1/apps/' . $game->packageName . '.json',
         buildApps($game)
     );
-    $latestRelease = getLatestRelease($game);
+    $latestRelease = $game->latestRelease;
     writeJson(
         'api/v1/apps/' . $latestRelease->uuid . '.json',
         buildApps($game)
@@ -45,24 +74,146 @@ foreach ($gameFiles as $gameFile) {
         'api/v1/apps/' . $latestRelease->uuid . '-download.json',
         buildAppDownload($game, $latestRelease)
     );
-    //exit(2);
 
+    if ($count++ > 20) {
+        //break;
+    }
 }
 
-writeJson('api/v1/discover.json', buildDiscover($games));
+writeJson('api/v1/discover-data/discover.json', buildDiscover($games));
 writeJson('api/v1/discover-data/home.json', buildDiscoverHome($games));
 
+
+function buildDiscover(array $games)
+{
+    $data = [
+        'title' => 'DISCOVER',
+        'rows'  => [],
+        'tiles' => [],
+    ];
+
+    addDiscoverRow(
+        $data, 'Last Updated',
+        filterLastUpdated($games, 10)
+    );
+    addDiscoverRow(
+        $data, 'Best rated',
+        filterBestRated($games, 10)
+    );
+    addDiscoverRow(
+        $data, "cweiske's picks",
+        filterByPackageNames($games, $GLOBALS['packagelists']['cweiskepicks'])
+    );
+
+    $players = [
+        //1 => '1 player',
+        2 => '2 players',
+        3 => '3 players',
+        4 => '4 players',
+    ];
+    addDiscoverRow($data, '# of players', $players);
+    foreach ($players as $num => $title) {
+        writeJson(
+            'api/v1/discover-data/' . categoryPath($title) . '.json',
+            buildDiscoverCategory($title, filterByPlayers($games, $num))
+        );
+    }
+
+    $ages = getAllAges($games);
+    natsort($ages);
+    addDiscoverRow($data, 'Content rating', $ages);
+    foreach ($ages as $num => $title) {
+        writeJson(
+            'api/v1/discover-data/' . categoryPath($title) . '.json',
+            buildDiscoverCategory($title, filterByAge($games, $title))
+        );
+    }
+
+    $genres = getAllGenres($games);
+    sort($genres);
+    addChunkedDiscoverRows($data, $genres, 'Genres');
+
+    foreach ($genres as $genre) {
+        writeJson(
+            'api/v1/discover-data/' . categoryPath($genre) . '.json',
+            buildDiscoverCategory($genre, filterByGenre($games, $genre))
+        );
+    }
+
+    $abc = array_merge(range('A', 'Z'), ['Other']);
+    addChunkedDiscoverRows($data, $abc, 'Alphabetical');
+    foreach ($abc as $letter) {
+        writeJson(
+            'api/v1/discover-data/' . categoryPath($letter) . '.json',
+            buildDiscoverCategory($letter, filterByLetter($games, $letter))
+        );
+    }
+
+    return $data;
+}
+
+/**
+ * A genre category page
+ */
+function buildDiscoverCategory($name, $games)
+{
+    $data = [
+        'title' => $name,
+        'rows'  => [],
+        'tiles' => [],
+    ];
+    addDiscoverRow(
+        $data, 'Last Updated',
+        filterLastUpdated($games, 10)
+    );
+    addDiscoverRow(
+        $data, 'Best rated',
+        filterBestRated($games, 10)
+    );
+
+    usort(
+        $games,
+        function ($gameA, $gameB) {
+            return strcmp($gameA->title, $gameB->title);
+        }
+    );
+    $chunks = array_chunk($games, 4);
+    foreach ($chunks as $chunkGames) {
+        addDiscoverRow($data, '', $chunkGames);
+    }
+
+    return $data;
+}
+
+function buildDiscoverHome(array $games)
+{
+    //we do not want anything here for now
+    $data = [
+        'title' => 'home',
+        'rows'  => [
+            [
+                'title' => 'FEATURED',
+                'showPrice' => false,
+                'ranked'    => false,
+                'tiles'     => [],
+            ]
+        ],
+        'tiles' => [],
+    ];
+    return $data;
+}
+
 /**
- * Build api/v1/apps/$package
+ * Build api/v1/apps/$packageName
  */
 function buildApps($game)
 {
-    $latestRelease = getLatestRelease($game);
+    $latestRelease = $game->latestRelease;
 
     // http://cweiske.de/ouya-store-api-docs.htm#get-https-devs-ouya-tv-api-v1-apps-xxx
     return [
         'app' => [
-            'uuid'          => $game->uuid,
+            'uuid'          => $latestRelease->uuid,
             'title'         => $game->title,
             'overview'      => $game->overview,
             'description'   => $game->description,
@@ -86,9 +237,9 @@ function buildApps($game)
             'publicSize'    => $latestRelease->publicSize,
             'nativeSize'    => $latestRelease->nativeSize,
 
-            'mainImageFullUrl' => $game->media->large,
-            'videoUrl'         => $game->media->video,
-            'filepickerScreenshots' => $game->media->screenshots,
+            'mainImageFullUrl' => $game->discover,
+            'videoUrl'         => getFirstVideoUrl($game->media),
+            'filepickerScreenshots' => getAllImageUrls($game->media),
             'mobileAppIcon'    => null,
 
             'developer'           => $game->developer->name,
@@ -118,34 +269,35 @@ function buildAppDownload($game, $release)
  */
 function buildDetails($game)
 {
-    $latestRelease = getLatestRelease($game);
+    $latestRelease = $game->latestRelease;
 
     $mediaTiles = [];
-    if ($game->media->large) {
+    if ($game->discover) {
         $mediaTiles[] = [
             'type' => 'image',
             'urls' => [
-                'thumbnail' => $game->media->large,
-                'full'      => $game->media->large,
+                'thumbnail' => $game->discover,
+                'full'      => $game->discover,
             ],
-            'fp_url' => $game->media->large,
         ];
     }
-    if ($game->media->video) {
-        $mediaTiles[] = [
-            'type' => 'video',
-            'url'  => $game->media->video,
-        ];
-    }
-    foreach ($game->media->screenshots as $screenshot) {
-        $mediaTiles[] = [
-            'type' => 'image',
-            'urls' => [
-                'thumbnail' => $screenshot,
-                'full'      => $screenshot,
-            ],
-            'fp_url' => $screenshot,
-        ];
+    foreach ($game->media as $medium) {
+        if ($medium->type == 'image')  {
+            $mediaTiles[] = [
+                'type' => 'image',
+                'urls' => [
+                    'thumbnail' => $medium->thumb,
+                    'full'      => $medium->url,
+                ],
+            ];
+        } else {
+            $mediaTiles[] = [
+                'type' => 'video',
+                'urls' => [
+                    'full'      => $medium->url,
+                ],
+            ];
+        }
     }
 
     // http://cweiske.de/ouya-store-api-docs.htm#get-https-devs-ouya-tv-api-v1-details
@@ -174,7 +326,7 @@ function buildDetails($game)
             'md5sum'      => $latestRelease->md5sum,
             'filename'    => 'FIXME',
             'errors'      => '',
-            'package'     => $game->package,
+            'package'     => $game->packageName,
             'versionCode' => $latestRelease->versionCode,
             'state'       => 'complete',
         ],
@@ -197,7 +349,7 @@ function buildDetails($game)
             number_format($latestRelease->size / 1024 / 1024, 2, '.', '') . ' MiB',
         ],
 
-        'tileImage'     => $game->media->discover,
+        'tileImage'     => $game->discover,
         'mediaTiles'    => $mediaTiles,
         'mobileAppIcon' => null,
         'heroImage'     => [
@@ -208,58 +360,73 @@ function buildDetails($game)
     ];
 }
 
-function buildDiscover(array $games)
+function addChunkedDiscoverRows(&$data, $games, $title)
 {
-    $data = [
-        'title' => 'DISCOVER',
-        'rows'  => [],
-        'tiles' => [],
-    ];
-    $tileMap = [];
+    $chunks = array_chunk($games, 4);
+    $first = true;
+    foreach ($chunks as $chunk) {
+        addDiscoverRow(
+            $data, $first ? $title : '',
+            $chunk
+        );
+        $first = false;
+    }
+}
 
-    $rowAll = [
-        'title'     => 'ALL GAMES',
+function addDiscoverRow(&$data, $title, $games)
+{
+    $row = [
+        'title'     => $title,
         'showPrice' => false,
         'ranked'    => false,
         'tiles'     => [],
     ];
     foreach ($games as $game) {
-        $tilePos = count($tileMap);
-        $data['tiles'][$tilePos] = buildDiscoverGameTile($game);
-        $tileMap[$game->package] = $tilePos;
-
-        $rowAll['tiles'][] = $tilePos;
+        if (is_string($game)) {
+            //category link
+            $tilePos = count($data['tiles']);
+            $data['tiles'][$tilePos] = buildDiscoverCategoryTile($game);
+
+        } else {
+            //game
+            $tilePos = findTile($data['tiles'], $game->packageName);
+            if ($tilePos === null) {
+                $tilePos = count($data['tiles']);
+                $data['tiles'][$tilePos] = buildDiscoverGameTile($game);
+            }
+        }
+        $row['tiles'][] = $tilePos;
     }
-    $data['rows'][] = $rowAll;
+    $data['rows'][] = $row;
+}
 
-    return $data;
+function findTile($tiles, $packageName)
+{
+    foreach ($tiles as $pos => $tile) {
+        if ($tile['package'] == $packageName) {
+            return $pos;
+        }
+    }
+    return null;
 }
 
-function buildDiscoverHome(array $games)
+function buildDiscoverCategoryTile($title)
 {
-    //we do not want anything here for now
-    $data = [
-        'title' => 'home',
-        'rows'  => [
-            [
-                'title' => 'FEATURED',
-                'showPrice' => false,
-                'ranked'    => false,
-                'tiles'     => [],
-            ]
-        ],
-        'tiles' => [],
+    return [
+        'url'   => 'ouya://launcher/discover/' . categoryPath($title),
+        'image' => '',
+        'title' => $title,
+        'type'  => 'discover'
     ];
-    return $data;
 }
 
 function buildDiscoverGameTile($game)
 {
-    $latestRelease = getLatestRelease($game);
+    $latestRelease = $game->latestRelease;
     return [
         'gamerNumbers' => $game->players,
         'genres' => $game->genres,
-        'url' => 'ouya://launcher/details?app=' . $game->package,
+        'url' => 'ouya://launcher/details?app=' . $game->packageName,
         'latestVersion' => [
             'apk' => [
                 'md5sum' => $latestRelease->md5sum,
@@ -271,11 +438,11 @@ function buildDiscoverGameTile($game)
         'promotedProduct' => null,
         'premium' => $game->premium,
         'type' => 'app',
-        'package' => $game->package,
+        'package' => $game->packageName,
         'updated_at' => strtotime($latestRelease->date),
         'updatedAt' => $latestRelease->date,
         'title' => $game->title,
-        'image' => $game->media->discover,
+        'image' => $game->discover,
         'contentRating' => $game->contentRating,
         'rating' => [
             'count' => $game->rating->count,
@@ -284,6 +451,29 @@ function buildDiscoverGameTile($game)
     ];
 }
 
+function categoryPath($title)
+{
+    return str_replace(['/', '\\', ' ', '+'], '_', $title);
+}
+
+function getAllAges($games)
+{
+    $ages = [];
+    foreach ($games as $game) {
+        $ages[] = $game->contentRating;
+    }
+    return array_unique($ages);
+}
+
+function getAllGenres($games)
+{
+    $genres = [];
+    foreach ($games as $game) {
+        $genres = array_merge($genres, $game->genres);
+    }
+    return array_unique($genres);
+}
+
 function addMissingGameProperties($game)
 {
     if (!isset($game->overview)) {
@@ -324,6 +514,8 @@ function addMissingGameProperties($game)
         $game->rating->count = 0;
     }
 
+    $game->latestRelease = null;
+    $latestReleaseTimestamp = 0;
     foreach ($game->releases as $release) {
         if (!isset($release->publicSize)) {
             $release->publicSize = 0;
@@ -331,14 +523,21 @@ function addMissingGameProperties($game)
         if (!isset($release->nativeSize)) {
             $release->nativeSize = 0;
         }
-    }
 
-    if (!isset($game->media->video)) {
-        $game->media->video = null;
+        $releaseTimestamp = strtotime($release->date);
+        if ($releaseTimestamp > $latestReleaseTimestamp) {
+            $game->latestRelease    = $release;
+            $latestReleaseTimestamp = $releaseTimestamp;
+        }
     }
-    if (!isset($game->media->screenshots)) {
-        $game->media->screenshots = [];
+    if ($game->latestRelease === null) {
+        error('No latest release for ' . $game->packageName);
     }
+
+    if (!isset($game->media)) {
+        $game->media = [];
+    }
+
     if (!isset($game->developer->uuid)) {
         $game->developer->uuid = null;
     }
@@ -356,19 +555,25 @@ function addMissingGameProperties($game)
     }
 }
 
-function getLatestRelease($game)
+function getFirstVideoUrl($media)
 {
-    $latestRelease = null;
-    foreach ($game->releases as $release) {
-        if ($release->latest ?? false) {
-            $latestRelease = $release;
-            break;
+    foreach ($media as $medium) {
+        if ($medium->type == 'video') {
+            return $medium->url;
         }
     }
-    if ($latestRelease === null) {
-        error('No latest release for ' . $game->package);
+    return null;
+}
+
+function getAllImageUrls($media)
+{
+    $imageUrls = [];
+    foreach ($media as $medium) {
+        if ($medium->type == 'image') {
+            $imageUrls[] = $medium->url;
+        }
     }
-    return $latestRelease;
+    return $imageUrls;
 }
 
 function writeJson($path, $data)
@@ -381,7 +586,7 @@ function writeJson($path, $data)
     }
     file_put_contents(
         $fullPath,
-        json_encode($data, JSON_PRETTY_PRINT) . "\n"
+        json_encode($data, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES) . "\n"
     );
 }