X-Git-Url: https://fpunktk.de/gitweb/?p=consearch.git;a=blobdiff_plain;f=index.php;h=e5680aecfadf8ab0633be67e0b8d77e0a5601ddb;hp=e8a3756420937ae649e20b43a3ad77d14643a2b9;hb=a81b515dcffbdc8cf79c64a7e9e424498d1a5680;hpb=b287bcef8164367079832d61cff27e270d58939a diff --git a/index.php b/index.php index e8a3756..e5680ae 100644 --- a/index.php +++ b/index.php @@ -1,11 +1,5 @@ - - - - - - - - +*/ + +$consearch_name = "consearch"; +$consearch_base_url = "https://fpunktk.de/consearch/"; +$consearch_url = "$consearch_base_url" . "index.php"; -consearch +$dse = ""; // default search engine +if ( isset($_GET['dse']) and preg_match('/^[0-9a-z]{1,5}$/', $_GET['dse']) === 1 ) { // TODO: prevent injection, check whether dse is a valid searchengine + $dse = $_GET['dse']; +} +$browserintegration = ""; +if ( isset($_GET['include']) and $_GET['include'] == "browserintegration" ) { + $browserintegration = "true"; +} + +if ( isset($_GET['get']) and $_GET['get'] === "opensearchdescription" ) { + header('Content-Type: text/xml'); + echo ' + +' . "$consearch_name"; + if ( $dse ) { echo " ($dse)"; } + echo ' +conveniently use different searchengines +consearch +consearch @ f p u n k t k . de + +' . "$consearch_base_url" . 'consearch.png +'; + + exit; +} + +?> + + + + + + + +<?php echo "$consearch_name";?> - +'; + echo "\n"; +} +?>