werc/apps/duckduckgo/app.rc

31 lines
636 B
Plaintext
Raw Permalink Normal View History

fn conf_enable_duckduckgo {
enable_duckduckgo=yes
conf_enable_app duckduckgo
2020-05-25 18:13:01 -06:00
pageTitle='Site Search'
}
fn duckduckgo_init {
2020-05-25 18:13:01 -06:00
get_post_args q
if (! ~ $#q 0) {
redirect_string = 'https://duckduckgo.com/?q=site:'$SERVER_NAME^'+'^$"q
http_redirect $redirect_string '302 Found'
}
if not {
handler_body_main='duckduckgo_body'
2020-05-25 18:13:01 -06:00
}
}
fn duckduckgo_body {
2020-05-25 18:13:01 -06:00
echo '
<h1>Site search</h1>
<h2>using DuckDuckGo</h2>
2020-05-25 18:13:01 -06:00
<form action="/_search/" method="POST">
<label for="searchtext">Site search:</label>
<input type="text" id="searchtext" name="q" placeholder="Search text...">
2020-05-25 18:13:01 -06:00
<input type="submit" value="Search">
</form>'
}