X-Git-Url: https://git.cweiske.de/stouyapi.git/blobdiff_plain/5060373c18331dbd58af36c81b930c1cdaf66961..4d2b9288d5403294fe6541358341986910e43c36:/bin/build-html.php diff --git a/bin/build-html.php b/bin/build-html.php index b4561e6..f7f9154 100755 --- a/bin/build-html.php +++ b/bin/build-html.php @@ -7,6 +7,13 @@ */ require_once __DIR__ . '/functions.php'; +//default configuration values +$GLOBALS['pushToMyOuyaUrl'] = '../push-to-my-ouya.php'; +$cfgFile = __DIR__ . '/../config.php'; +if (file_exists($cfgFile)) { + include $cfgFile; +} + $wwwDir = __DIR__ . '/../www/'; $discoverDir = __DIR__ . '/../www/api/v1/discover-data/'; $wwwDiscoverDir = $wwwDir . 'discover/'; @@ -111,6 +118,8 @@ function renderGameFile($gameDataFile) ) ); $apkDownloadUrl = $downloadJson->app->downloadLink; + $pushUrl = $GLOBALS['pushToMyOuyaUrl'] + . '?game=' . urlencode($json->apk->package); $navLinks = []; foreach ($json->genres as $genreTitle) {