aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2015-01-26 17:09:33 -0800
committerfriendica <info@friendica.com>2015-01-26 17:09:33 -0800
commitd73972e8e26d2155a49ef7fe01dda0af85112e09 (patch)
treed8e79119d5435333567acdbf70dc0b73afe0298f
parentb428fdf66e63304d7cbc6d6b4a3731f34ef822ba (diff)
downloadvolse-hubzilla-d73972e8e26d2155a49ef7fe01dda0af85112e09.tar.gz
volse-hubzilla-d73972e8e26d2155a49ef7fe01dda0af85112e09.tar.bz2
volse-hubzilla-d73972e8e26d2155a49ef7fe01dda0af85112e09.zip
provide a json feed of search results
-rw-r--r--mod/search.php17
-rw-r--r--version.inc2
2 files changed, 18 insertions, 1 deletions
diff --git a/mod/search.php b/mod/search.php
index 2ea6ad86f..5b15b0593 100644
--- a/mod/search.php
+++ b/mod/search.php
@@ -21,6 +21,10 @@ function search_content(&$a,$update = 0, $load = false) {
require_once('include/conversation.php');
require_once('include/items.php');
+ $format = (($_REQUEST['format']) ? $_REQUEST['format'] : '');
+ if($format !== '') {
+ $update = $load = 1;
+ }
$observer = $a->get_observer();
$observer_hash = (($observer) ? $observer['xchan_hash'] : '');
@@ -179,6 +183,19 @@ function search_content(&$a,$update = 0, $load = false) {
$items = array();
}
+
+ if($format == 'json') {
+ $result = array();
+ require_once('include/conversation.php');
+ foreach($items as $item) {
+ $item['html'] = bbcode($item['body']);
+ $x = encode_item($item);
+ $x['html'] = prepare_text($item['body'],$item['mimetype']);
+ $result[] = $x;
+ }
+ json_return_and_die(array('success' => true,'messages' => $result));
+ }
+
if($tag)
$o .= '<h2>Items tagged with: ' . htmlspecialchars($search, ENT_COMPAT,'UTF-8') . '</h2>';
else
diff --git a/version.inc b/version.inc
index 2574e9160..5a4a46961 100644
--- a/version.inc
+++ b/version.inc
@@ -1 +1 @@
-2015-01-25.927
+2015-01-26.928