Add "new games" on top of discover main screen, move "Last updated" to own category
[stouyapi.git] / bin / filters.php
index 04a998f2b985259ba00874281faafc1653109d81..9cac07a2e613e64e0e71cd69637cc64bd923e8f0 100644 (file)
@@ -48,9 +48,11 @@ function filterByPackageNames($origGames, $packageNames)
     $filtered = [];
     foreach ($origGames as $game) {
         if (isset($names[$game->packageName])) {
-            $filtered[] = $game;
+            $filtered[$names[$game->packageName]] = $game;
         }
     }
+    //keep original order
+    ksort($filtered, SORT_NUMERIC);
     return $filtered;
 }
 
@@ -65,6 +67,30 @@ function filterByPlayers($origGames, $numOfPlayers)
     return $filtered;
 }
 
+function filterBySearchWord($origGames, $searchWord)
+{
+    $filtered = [];
+    foreach ($origGames as $game) {
+        if (stripos($game->title, $searchWord) !== false) {
+            $filtered[] = $game;
+        }
+    }
+    return $filtered;
+}
+
+function filterLastAdded($origGames, $limit)
+{
+    $games = array_values($origGames);
+    usort(
+        $games,
+        function ($gameA, $gameB) {
+            return strtotime($gameB->firstRelease->date) - strtotime($gameA->firstRelease->date);
+        }
+    );
+
+    return array_slice($games, 0, $limit);
+}
+
 function filterLastUpdated($origGames, $limit)
 {
     $games = array_values($origGames);
@@ -90,4 +116,38 @@ function filterBestRated($origGames, $limit)
 
     return array_slice($games, 0, $limit);
 }
+
+function filterMostDownloaded($origGames, $limit)
+{
+    $games = array_values($origGames);
+    usort(
+        $games,
+        function ($gameA, $gameB) {
+            return $gameB->rating->count - $gameA->rating->count;
+        }
+    );
+
+    return array_slice($games, 0, $limit);
+}
+
+function filterRandom($origGames, $limit)
+{
+    $randKeys = array_rand($origGames, min(count($origGames), $limit));
+    $games = [];
+    foreach ($randKeys as $key) {
+        $games[] = $origGames[$key];
+    }
+    return $games;
+}
+
+function sortByTitle($games)
+{
+    usort(
+        $games,
+        function ($gameA, $gameB) {
+            return strcasecmp($gameA->title, $gameB->title);
+        }
+    );
+    return $games;
+}
 ?>