]> git.mxchange.org Git - friendica.git/blob - mod/hovercard.php
Merge pull request #3112 from Quix0r/rewrites/coding-convention
[friendica.git] / mod / hovercard.php
1 <?php
2
3 /**
4  * Name: Frio Hovercard
5  * Description: Hovercard addon for the frio theme
6  * Version: 0.1
7  * Author: Rabuzarus <https://github.com/rabuzarus>
8  * License: GNU AFFERO GENERAL PUBLIC LICENSE (Version 3)
9  */
10
11 require_once("include/socgraph.php");
12 require_once("include/Contact.php");
13
14 function hovercard_init(App $a) {
15         // Just for testing purposes
16         $_GET["mode"] = "minimal";
17 }
18 function hovercard_content() {
19         $profileurl     =       (x($_REQUEST,'profileurl')      ? $_REQUEST['profileurl']       : "");
20         $datatype       =       (x($_REQUEST,'datatype')        ?$_REQUEST['datatype']          : "json");
21
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);
25
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;
33                 killme();
34         }
35
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"] : "");
44         }
45
46         // if it's the url containing https it should be converted to http
47         $nurl = normalise_link(clean_contact_url($profileurl));
48         if ($nurl) {
49                 // Search for contact data
50                 $contact = get_contact_details_by_url($nurl);
51         }
52
53         if (!is_array($contact))
54                 return;
55
56         // Get the photo_menu - the menu if possible contact actions
57         if (local_user())
58                 $actions = contact_photo_menu($contact);
59
60
61         // Move the contact data to the profile array so we can deliver it to
62         //
63         $profile = array(
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,
82         );
83         if ($datatype == "html") {
84                 $t = get_markup_template("hovercard.tpl");
85
86                 $o = replace_macros($t, array(
87                         '$profile' => $profile,
88                 ));
89
90                 return $o;
91
92         } else {
93                 json_return_and_die($profile);
94         }
95 }
96
97 /**
98  * @brief Get the raw content of a template file
99  *
100  * @param string $template The name of the template
101  * @param string $root Directory of the template
102  *
103  * @return string|bool Output the raw content if existent, otherwise false
104  */
105 function get_template_content($template, $root = "") {
106
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;
111
112         // Get the content of the template file
113         if (file_exists($filename)) {
114                 $content = file_get_contents($filename);
115
116                 return $content;
117         }
118
119         return false;
120 }