5 * Description: Hovercard addon for the frio theme
7 * Author: Rabuzarus <https://github.com/rabuzarus>
8 * License: GNU AFFERO GENERAL PUBLIC LICENSE (Version 3)
11 require_once("include/socgraph.php");
12 require_once("include/Contact.php");
14 function hovercard_init(App &$a) {
15 // Just for testing purposes
16 $_GET["mode"] = "minimal";
18 function hovercard_content() {
19 $profileurl = (x($_REQUEST,'profileurl') ? $_REQUEST['profileurl'] : "");
20 $datatype = (x($_REQUEST,'datatype') ?$_REQUEST['datatype'] : "json");
22 // Get out if the system doesn't have public access allowed
23 if(intval(get_config('system','block_public')))
24 http_status_exit(401);
26 // Return the raw content of the template. We use this to make templates usable for js functions.
27 // Look at hovercard.js (function getHoverCardTemplate()).
28 // This part should be moved in it's own module. Maybe we could make more templates accessabel.
29 // (We need to discuss possible security lacks before doing this)
30 if ($datatype == "tpl") {
31 $templatecontent = get_template_content("hovercard.tpl");
32 echo $templatecontent;
36 // If a contact is connected the url is internally changed to "redir/CID". We need the pure url to search for
37 // the contact. So we strip out the contact id from the internal url and look in the contact table for
38 // the real url (nurl)
39 if(local_user() && strpos($profileurl, "redir/") === 0) {
40 $cid = intval(substr($profileurl, 6));
41 $r = q("SELECT `nurl`, `self` FROM `contact` WHERE `id` = '%d' LIMIT 1", intval($cid));
42 $profileurl = ($r[0]["nurl"] ? $r[0]["nurl"] : "");
43 $self = ($r[0]["self"] ? $r[0]["self"] : "");
46 // if it's the url containing https it should be converted to http
47 $nurl = normalise_link(clean_contact_url($profileurl));
49 // Search for contact data
50 $contact = get_contact_details_by_url($nurl);
53 if(!is_array($contact))
56 // Get the photo_menu - the menu if possible contact actions
58 $actions = contact_photo_menu($contact);
61 // Move the contact data to the profile array so we can deliver it to
64 'name' => $contact["name"],
65 'nick' => $contact["nick"],
66 'addr' => (($contact["addr"] != "") ? $contact["addr"] : $contact["url"]),
67 'thumb' => proxy_url($contact["thumb"], false, PROXY_SIZE_THUMB),
68 'url' => ($cid ? ("redir/".$cid) : zrl($contact["url"])),
69 'nurl' => $contact["nurl"], // We additionally store the nurl as identifier
70 // 'alias' => $contact["alias"],
71 'location' => $contact["location"],
72 'gender' => $contact["gender"],
73 'about' => $contact["about"],
74 'network' => format_network_name($contact["network"], $contact["url"]),
75 'tags' => $contact["keywords"],
76 // 'nsfw' => intval($contact["nsfw"]),
77 // 'server_url' => $contact["server_url"],
78 'bd' => (($contact["birthday"] == "0000-00-00") ? "" : $contact["birthday"]),
79 // 'generation' => $contact["generation"],
80 'account_type' => account_type($contact),
81 'actions' => $actions,
83 if($datatype == "html") {
84 $t = get_markup_template("hovercard.tpl");
86 $o = replace_macros($t, array(
87 '$profile' => $profile,
93 json_return_and_die($profile);
98 * @brief Get the raw content of a template file
100 * @param string $template The name of the template
101 * @param string $root Directory of the template
103 * @return string|bool Output the raw content if existent, otherwise false
105 function get_template_content($template, $root = "") {
107 // We load the whole template system to get the filename.
108 // Maybe we can do it a little bit smarter if I get time.
109 $t = get_markup_template($template, $root);
110 $filename = $t->filename;
112 // Get the content of the template file
113 if(file_exists($filename)) {
114 $content = file_get_contents($filename);