X-Git-Url: https://git.cweiske.de/stouyapi.git/blobdiff_plain/78ed9b8b83fa0592501c6333fd31ec02a5335d4d..d702d4150f5bdc56354011a1c01720b77ddef20d:/www/.htaccess?ds=sidebyside diff --git a/www/.htaccess b/www/.htaccess index 111445f..e12ed60 100644 --- a/www/.htaccess +++ b/www/.htaccess @@ -2,13 +2,46 @@ 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] -RewriteRule ^api/v1/discover/?$ /api/v1/discover.json [END] +#rewrite developer products "only" GET parameter +RewriteCond %{QUERY_STRING} &only=([^&]+) +RewriteCond %{DOCUMENT_ROOT}/api/v1/developers/$1/products/%1.json -f +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 +# 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] + +#search +# q is first parameter +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] +# q is not the first parameter +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] + #this one wants a 204 status code -RewriteRule ^api/v1/status$ - [R=204,NC,L] +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]