Special handling for "Tutorials" genre
[stouyapi.git] / bin / import-game-data.php
index cad1e47f009698c539e12ddb4d8ac0c8f5fc1333..cf6a047640861478b3758f4ac65b92bacd8afef8 100755 (executable)
@@ -113,11 +113,24 @@ foreach ($developers as $developer) {
         . '/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'))
+);
+
+
 
 function buildDiscover(array $games)
 {
@@ -164,7 +177,7 @@ function buildDiscover(array $games)
         );
     }
 
-    $genres = getAllGenres($games);
+    $genres = removeMakeGenres(getAllGenres($games));
     sort($genres);
     addChunkedDiscoverRows($data, $genres, 'Genres');
 
@@ -209,7 +222,7 @@ function buildDiscoverCategory($name, $games)
     usort(
         $games,
         function ($gameA, $gameB) {
-            return strcmp($gameA->title, $gameB->title);
+            return strcasecmp($gameA->title, $gameB->title);
         }
     );
     $chunks = array_chunk($games, 4);
@@ -220,6 +233,25 @@ function buildDiscoverCategory($name, $games)
     return $data;
 }
 
+function buildMakeCategory($name, $games)
+{
+    $data = [
+        'title' => $name,
+        'rows'  => [],
+        'tiles' => [],
+    ];
+
+    usort(
+        $games,
+        function ($gameA, $gameB) {
+            return strcasecmp($gameA->title, $gameB->title);
+        }
+    );
+    addDiscoverRow($data, '', $games);
+
+    return $data;
+}
+
 function buildDiscoverHome(array $games)
 {
     //we do not want anything here for now
@@ -432,6 +464,16 @@ function buildDetails($game)
     ];
 }
 
+function buildDeveloperCurrentGamer()
+{
+    return [
+        'gamer' => [
+            'uuid'     => '00702342-0000-1111-2222-c3e1500cafe2',
+            'username' => 'stouyapi',
+        ],
+    ];
+}
+
 /**
  * For /api/v1/developers/xxx/products/?only=yyy
  */
@@ -514,7 +556,7 @@ function addDiscoverRow(&$data, $title, $games)
 {
     $row = [
         'title'     => $title,
-        'showPrice' => false,
+        'showPrice' => true,
         'ranked'    => false,
         'tiles'     => [],
     ];
@@ -732,6 +774,17 @@ function getPromotedProduct($game)
     return null;
 }
 
+function removeMakeGenres($genres)
+{
+    $filtered = [];
+    foreach ($genres as $genre) {
+        if ($genre != 'Tutorials' && $genre != 'Builds') {
+            $filtered[] = $genre;
+        }
+    }
+    return $filtered;
+}
+
 function writeJson($path, $data)
 {
     global $wwwDir;