X-Git-Url: https://git.cweiske.de/stouyapi.git/blobdiff_plain/0d4e9f2836cdee1dc880a36846a5ca8ce3e4580f..fb7d4b34dbb6535e5ee1a55a90978bc6f054061a:/www/.htaccess diff --git a/www/.htaccess b/www/.htaccess index 1ba4fcc..541105e 100644 --- a/www/.htaccess +++ b/www/.htaccess @@ -1,4 +1,10 @@ RewriteEngine on +RewriteBase / + + + ExpiresActive On + ExpiresDefault "access plus 1 day" + #rewrite details GET parameter RewriteCond %{QUERY_STRING} ^app=([^&]+) @@ -19,7 +25,28 @@ RewriteRule ^api/v1/developers/(.+)/products/ /api/v1/developers/$1/products/%1. 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) +# 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/ + + DirectorySlash Off + + +#Disable the next two lines to have static usernames only +RewriteRule ^api/v1/gamers/me$ /api/v1/gamers/me.php [END] +RewriteRule ^api/v1/sessions$ /api/v1/sessions.php [END] + +RewriteRule ^api/v1/gamers/me$ /api/v1/gamers/me.json [END] + #purchased games/products +# active buy requests +RewriteCond %{REQUEST_METHOD} POST +RewriteRule ^api/v1/games/(.+)/purchases?$ /api/v1/games/purchase.php [END] + RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^api/v1/games/(.+)/purchases?$ /api/v1/games/purchases-empty.json [END] @@ -33,5 +60,14 @@ RewriteCond %{QUERY_STRING} &q=([^&]+) RewriteCond %{DOCUMENT_ROOT}/api/v1/search-data/%1.json -f RewriteRule ^api/v1/search /api/v1/search-data/%1.json? [END] +# for http://clients3.google.com/generate_204 +RewriteRule ^generate_204$ /api/v1/status + #this one wants a 204 status code RewriteRule ^api/v1/status$ - [R=204,L] + +#push-to-my-ouya needs php scripting support +RewriteRule ^api/v1/queued_downloads?$ /api/v1/queued_downloads.php [END] + +RewriteCond %{REQUEST_METHOD} DELETE +RewriteRule ^api/v1/queued_downloads/(.+)?$ /api/v1/queued_downloads_delete.php?game=$1 [END]