X-Git-Url: https://git.cweiske.de/stouyapi.git/blobdiff_plain/0d4e9f2836cdee1dc880a36846a5ca8ce3e4580f..4f203e3eb94fcb899ad72da8fc9a6c3c85a3280f:/www/.htaccess diff --git a/www/.htaccess b/www/.htaccess index 1ba4fcc..e12ed60 100644 --- a/www/.htaccess +++ b/www/.htaccess @@ -20,6 +20,10 @@ 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 +# 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] @@ -35,3 +39,9 @@ RewriteRule ^api/v1/search /api/v1/search-data/%1.json? [END] #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]