diff --git a/apps/bookmarks/ajax/getMeta.php b/apps/bookmarks/ajax/getMeta.php new file mode 100644 index 0000000000..c61c8fb488 --- /dev/null +++ b/apps/bookmarks/ajax/getMeta.php @@ -0,0 +1,58 @@ +. +* +*/ + +//no apps or filesystem +$RUNTIME_NOSETUPFS=true; + +require_once('../../../lib/base.php'); + +// We send json data +header( 'Content-Type: application/jsonrequest' ); + +// Check if we are a user +if( !OC_User::isLoggedIn()){ + echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => 'Authentication error' ))); + exit(); +} + +$metadata = array(); + +$url = urldecode($_GET["url"]); +//allow only http(s) and (s)ftp +$protocols = '/^[hs]{0,1}[tf]{0,1}tp[s]{0,1}\:\/\//i'; +//if not (allowed) protocol is given, assume http +if(preg_match($protocols, $url) == 0) { + $url = 'http://' . $url; +} + +$page = file_get_contents($url); +@preg_match( "/(.*)<\/title>/si", $page, $match ); +$metadata['title'] = htmlentities(strip_tags(@$match[1])); + +$meta = get_meta_tags($url); + +if(array_key_exists('description', $meta)) { + $metadata['description'] = $meta['description']; +} + +echo json_encode( array( 'status' => 'success', 'data' => $metadata));