Buying games #4: show prices in discover store
[stouyapi.git] / www / .htaccess
index 0396ea87977ed645fca16d9ea90956b23fd6c65b..ba3ec53f374e83e22237b7491d7b66b9b3c0417e 100644 (file)
@@ -2,13 +2,25 @@ RewriteEngine on
 
 #rewrite details GET parameter
 RewriteCond %{QUERY_STRING} ^app=([^&]+)
-RewriteRule ^api/v1/details /api/v1/details-data/%1.json?
+RewriteCond %{DOCUMENT_ROOT}/api/v1/details-data/%1.json -f
+RewriteRule ^api/v1/details /api/v1/details-data/%1.json? [END]
+
+# details for unknown apps. Also see .htaccess in the dummy dir
+RewriteRule ^api/v1/details /api/v1/details-dummy/404? [END]
 
 RewriteRule ^api/v1/apps/(.*)/download$ /api/v1/apps/$1-download.json? [END]
 RewriteRule ^api/v1/apps/(.*)$ /api/v1/apps/$1.json? [END]
 
+#rewrite developer products "only" GET parameter
+RewriteCond %{QUERY_STRING} &only=([^&]+)
+RewriteRule ^api/v1/developers/(.+)/products/ /api/v1/developers/$1/products/%1.json? [END]
+
 RewriteRule ^api/v1/discover/?$ /api/v1/discover-data/discover.json [END]
 RewriteRule ^api/v1/discover/(.+)$ /api/v1/discover-data/$1.json [END]
 
+#purchased games/products
+RewriteCond %{REQUEST_FILENAME} !-f
+RewriteRule ^api/v1/games/(.+)/purchases?$ /api/v1/games/purchases-empty.json [END]
+
 #this one wants a 204 status code
 RewriteRule ^api/v1/status$ - [R=204,L]