Let OUYAs fetch firmware info only once a day, remove the redirect for gamers/me
authorChristian Weiske <cweiske@cweiske.de>
Sat, 2 Jan 2021 19:27:45 +0000 (20:27 +0100)
committerChristian Weiske <cweiske@cweiske.de>
Sat, 2 Jan 2021 19:27:45 +0000 (20:27 +0100)
README.rst
www/.htaccess
www/api/v1/gamers/me.json [moved from www/api/v1/gamers/me/index.html with 100% similarity]

index 0b7b800f4a3062d4bbcd6289c7bdce1b1f64df35..4a5593eff1e151b81b5a4f183280ef9c4b720309 100644 (file)
@@ -38,7 +38,7 @@ Virtual host configuration::
   Script PUT /empty-json.php
   Script DELETE /api/v1/queued_downloads_delete.php
 
-``mod_actions`` need to be enabled for apache 2.4.
+``mod_actions`` and ``mod_expires`` need to be enabled for apache 2.4.
 
 The virtual host's document root needs to point to the ``www`` folder.
 
index cf607a188bdd70924712c7a7deb3fb2bafc5b863..2c5ece0d51c92e38fb5366b3a522d36f2733dab7 100644 (file)
@@ -1,4 +1,10 @@
 RewriteEngine on
+RewriteBase /
+
+<Files "firmware_builds">
+    ExpiresActive On
+    ExpiresDefault "access plus 1 day"
+</Files>
 
 #rewrite details GET parameter
 RewriteCond %{QUERY_STRING} ^app=([^&]+)
@@ -20,13 +26,17 @@ RewriteRule ^api/v1/discover/?$ /api/v1/discover-data/discover.json [END]
 RewriteRule ^api/v1/discover/(.+)$ /api/v1/discover-data/$1.json [END]
 
 #if directoryslash is on, gamers gets redirected to gamers/ (dir index)
-<Files "/api/v1/gamers">
-    DirectorySlash off
-</Files>
+# the ouya registration does not support redirects there
 #TODO: Use that only for the api/v1/gamers path, not for all
 ErrorDocument 400 /api/v1/gamers/register-error.json
 RewriteRule ^api/v1/gamers$ /api/v1/gamers/register-error.json [R=400,END]
 
+#prevent redirect from gamers/me to gamers/me/
+<Files "me">
+    DirectorySlash Off
+</Files>
+RewriteRule ^api/v1/gamers/me$ /api/v1/gamers/me.json [END]
+
 #purchased games/products
 # active buy requests
 RewriteCond %{REQUEST_METHOD} POST