templates/Search.j2.php (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 |
<?php
const baseurl = '{{ site.url }}';
function relurl($from, $to) {
$from = explode('/', $from);
$to = explode('/', $to);
$relpath = '';
$i = 0;
while (isset($from[$i]) && isset($to[$i])) {
if ($from[$i] != $to[$i]) break;
$i++;
}
$j = count( $from ) - 1;
while ( $i <= $j ) {
if ( !empty($from[$j]) ) $relpath .= '../';
$j--;
}
while ( isset($to[$i]) ) {
if ( !empty($to[$i]) ) $relpath .= $to[$i].'/';
$i++;
}
return substr($relpath, 0, -1);
}
if(isset($_GET['q'])) {
$q = $_GET['q'];
}
elseif(isset($_GET['search'])) {
$q = $_GET['search'];
}
else {
$q = '';
}
$q = filter_var($q, FILTER_SANITIZE_STRING);
$db = new SQLite3('./search.sqlite', SQLITE3_OPEN_READONLY);
$sql = $db->prepare("
SELECT
url, category, title, snippet(data, '', '', '[...]', 5, 24), mtime
FROM
data
WHERE
data MATCH :q
ORDER BY
category, mtime
");
$sql->bindValue(':q', str_replace('-', '+', $q));
$query = $sql->execute();
$results = array();
if($query) {
while ($row = $query->fetchArray(SQLITE3_ASSOC)) {
$item = array(
"id" => $row['url'],
"title" => $row['title'],
"url" => $row['url'],
"description" => $row["snippet(data, '', '', '[...]', 5, 24)"],
"pubDate" => gmdate(DATE_RFC2822, $row['mtime']),
);
array_push($results, $item);
}
}
if (isset($_GET['xml'])) {
header('Content-Type: text/xml; charset=utf-8', true);
$xml = new DOMDocument("1.0", "UTF-8");
$xml->preserveWhiteSpace = false;
$xml->formatOutput = true;
$rss = $xml->createElement("rss");
$rss_node = $xml->appendChild($rss);
$rss_node->setAttribute("version","2.0");
$rss_node->setAttribute("xmlns:dc","http://a9.com/-/spec/opensearch/1.1/");
$channel = $xml->createElement("channel");
$channel_node = $rss_node->appendChild($channel);
$channel_node->appendChild($xml->createElement("title", "Search results for: {$_GET['q']}"));
$channel_node->appendChild($xml->createElement("link", "{{ site.url }}"));
$channel_node->appendChild($xml->createElement("description", "Search {{ site.name }} for {$_GET['q']}"));
$channel_node->appendChild($xml->createElement("openSearch:totalResults", sizeof($results)));
$channel_node->appendChild($xml->createElement("openSearch:startIndex", 1));
$channel_node->appendChild($xml->createElement("openSearch:itemsPerPage", sizeof($results)));
$build_date = gmdate(DATE_RFC2822, time());
$channel_node->appendChild($xml->createElement("lastBuildDate", $build_date));
foreach ($results as $row) {
$item_node = $channel_node->appendChild($xml->createElement("item"));
$title_node = $item_node->appendChild($xml->createElement("title", $row['title']));
$link_node = $item_node->appendChild($xml->createElement("link", $row['url']));
$guid_link = $xml->createElement("guid", $row['url']);
$guid_link->setAttribute("isPermaLink","false");
$guid_node = $item_node->appendChild($guid_link);
$description_node = $item_node->appendChild($xml->createElement("description"));
$description_contents = $xml->createCDATASection(htmlentities($row["description"]));
$description_node->appendChild($description_contents);
$pub_date = $xml->createElement("pubDate", $row['pubDate']);
$pub_date_node = $item_node->appendChild($pub_date);
}
echo $xml->saveXML();
exit(0);
}
if (isset($_GET['json'])) {
// WordPress JSON
header('Content-Type: application/json; charset=utf-8', true);
echo(json_encode($results));
exit(0);
}
?>
{% extends "base.j2.html" %}
{% block lang %}{% endblock %}
{% block title %}Search results for: <?php echo($q); ?>{% endblock %}
{% block content %}
<main id="main" class="h-feed hatom">
<h1>Search results for: <?php echo($q); ?></h1>
<dl>
<?php
foreach($results as $row) {
printf('<dt><a href="%s">%s</a></dt><dd>%s</dd>', relurl(baseurl, $row['url']), $row['title'], $row["description"]);
}
?>
</dl>
</main>
{% endblock %}
|