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 frio_hovercard_install() {
15 logger("installed frio-hovercard");
18 function frio_hovercard_uninstall() {
19 logger("uninstalled frio-hovercard");
21 function frio_hovercard_module() {
24 function frio_hovercard_content() {
25 $profileurl = (x($_REQUEST,'profileurl') ? $_REQUEST['profileurl'] : "");
26 $datatype = (x($_REQUEST,'datatype') ?$_REQUEST['datatype'] : "json");
28 // Get out if the system doesn't have public access allowed
29 if(intval(get_config('system','block_public')))
30 http_status_exit(401);
32 // Return the raw content of the template. We use this to make templates usable for js functions.
33 // Look at hovercard.js (function getHoverCardTemplate()).
34 // This part should be moved in it's own module. Maybe we could make more templates accessabel.
35 // (We need to discuss possible security lacks before doing this)
36 if ($datatype == "tpl") {
37 $templatecontent = get_template_content("hovercard.tpl", "addon/frio_hovercard/");
38 echo $templatecontent;
42 // If a contact is connected the url is internally changed to "redir/CID". We need the pure url to search for
43 // the contact. So we strip out the contact id from the internal url and look in the contact table for
44 // the real url (nurl)
45 if(local_user() && strpos($profileurl, "redir/") === 0) {
46 $cid = intval(substr($profileurl, 6));
47 $r = q("SELECT `nurl`, `self` FROM `contact` WHERE `id` = '%d' LIMIT 1", intval($cid));
48 $profileurl = ($r[0]["nurl"] ? $r[0]["nurl"] : "");
49 $self = ($r[0]["self"] ? $r[0]["self"] : "");
52 // if it's the url containing https it should be converted to http
53 $nurl = normalise_link(clean_contact_url($profileurl));
55 // Search for contact data
56 $contact = get_contact_details_by_url($nurl);
58 // Get_contact_details_by_url() doesn't provide the nurl but we
59 // need it for the photo_menu, so we copy it to the contact array
60 if (!isset($contact["nurl"]))
61 $contact["nurl"] = $nurl;
64 if(!is_array($contact))
67 // Get the photo_menu - the menu if possible contact actions
69 $actions = contact_photo_menu($contact);
72 // Move the contact data to the profile array so we can deliver it to
75 'name' => $contact["name"],
76 'nick' => $contact["nick"],
77 'addr' => (($contact["addr"] != "") ? $contact["addr"] : $contact["url"]),
78 'thumb' => proxy_url($contact["photo"], false, PROXY_SIZE_THUMB),
79 'url' => ($cid ? ("redir/".$cid) : zrl($contact["url"])),
80 'nurl' => $contact["nurl"], // We additionaly strore the nurl as identifier
81 // 'alias' => $contact["alias"],
82 'location' => $contact["location"],
83 'gender' => $contact["gender"],
84 'about' => $contact["about"],
85 'network' => format_network_name($contact["network"]),
86 'tags' => intval($contact["keywords"]),
87 // 'nsfw' => intval($contact["nsfw"]),
88 // 'server_url' => $contact["server_url"],
89 'bd' => (($contact["birthday"] == "0000-00-00") ? "" : $contact["birthday"]),
90 // 'generation' => $contact["generation"],
91 'account_type' => ($contact['community'] ? t("Forum") : ""),
92 'actions' => $actions,
95 if($datatype == "html") {
96 $t = get_markup_template("hovercard.tpl", "addon/frio_hovercard/");
98 $o = replace_macros($t, array(
99 '$profile' => $profile,
105 json_return_and_die($profile);
110 * @brief Get the raw content of a template file
112 * @param string $template The name of the template
113 * @param string $root Directory of the template
115 * @return string|bool Output the raw content if existent, otherwise false
117 function get_template_content($template, $root = "") {
118 // We load the whole template system to get the filename.
119 // Maybe we can do it a little bit smarter if I get time.
120 $t = get_markup_template($template, $root);
121 $filename = $t->filename;
123 // Get the content of the template file
124 if(file_exists($filename)) {
125 $content = file_get_contents($filename);