5 define ( 'FRIENDIKA_VERSION', '2.1.915' );
6 define ( 'DFRN_PROTOCOL_VERSION', '2.1' );
7 define ( 'DB_UPDATE_VERSION', 1040 );
9 define ( 'EOL', "<br />\r\n" );
10 define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' );
11 define ( 'DOWN_ARROW', '⇩' );
15 * SSL redirection policies
18 define ( 'SSL_POLICY_NONE', 0 );
19 define ( 'SSL_POLICY_FULL', 1 );
20 define ( 'SSL_POLICY_SELFSIGN', 2 );
27 define ( 'LOGGER_NORMAL', 0 );
28 define ( 'LOGGER_TRACE', 1 );
29 define ( 'LOGGER_DEBUG', 2 );
30 define ( 'LOGGER_DATA', 3 );
31 define ( 'LOGGER_ALL', 4 );
34 * registration policies
37 define ( 'REGISTER_CLOSED', 0 );
38 define ( 'REGISTER_APPROVE', 1 );
39 define ( 'REGISTER_OPEN', 2 );
43 * When used in contact records, this indicates that 'uid' has
44 * this relationship with contact['name']
47 define ( 'REL_VIP', 1);
48 define ( 'REL_FAN', 2);
49 define ( 'REL_BUD', 3);
55 define ( 'HOOK_HOOK', 0);
56 define ( 'HOOK_FILE', 1);
57 define ( 'HOOK_FUNCTION', 2);
63 * PAGE_NORMAL is a typical personal profile account
64 * PAGE_SOAPBOX automatically approves all friend requests as REL_FAN, (readonly)
65 * PAGE_COMMUNITY automatically approves all friend requests as REL_FAN, but with
66 * write access to wall and comments (no email and not included in page owner's ACL lists)
67 * PAGE_FREELOVE automatically approves all friend requests as full friends (REL_BUD).
71 define ( 'PAGE_NORMAL', 0 );
72 define ( 'PAGE_SOAPBOX', 1 );
73 define ( 'PAGE_COMMUNITY', 2 );
74 define ( 'PAGE_FREELOVE', 3 );
77 * Maximum number of "people who like (or don't like) this" that we will list by name
80 define ( 'MAX_LIKERS', 75);
83 * email notification options
86 define ( 'NOTIFY_INTRO', 0x0001 );
87 define ( 'NOTIFY_CONFIRM', 0x0002 );
88 define ( 'NOTIFY_WALL', 0x0004 );
89 define ( 'NOTIFY_COMMENT', 0x0008 );
90 define ( 'NOTIFY_MAIL', 0x0010 );
93 * various namespaces we may need to parse
96 define ( 'NAMESPACE_DFRN' , 'http://purl.org/macgirvin/dfrn/1.0' );
97 define ( 'NAMESPACE_THREAD' , 'http://purl.org/syndication/thread/1.0' );
98 define ( 'NAMESPACE_TOMB' , 'http://purl.org/atompub/tombstones/1.0' );
99 define ( 'NAMESPACE_ACTIVITY', 'http://activitystrea.ms/spec/1.0/' );
100 define ( 'NAMESPACE_ACTIVITY_SCHEMA', 'http://activitystrea.ms/schema/1.0/' );
101 define ( 'NAMESPACE_MEDIA', 'http://purl.org/syndication/atommedia' );
102 define ( 'NAMESPACE_SALMON_ME', 'http://salmon-protocol.org/ns/magic-env' );
103 define ( 'NAMESPACE_OSTATUSSUB', 'http://ostatus.org/schema/1.0/subscribe' );
104 define ( 'NAMESPACE_GEORSS', 'http://www.georss.org/georss' );
105 define ( 'NAMESPACE_POCO', 'http://portablecontacts.net/spec/1.0' );
106 define ( 'NAMESPACE_FEED', 'http://schemas.google.com/g/2010#updates-from' );
109 * activity stream defines
112 define ( 'ACTIVITY_LIKE', NAMESPACE_ACTIVITY_SCHEMA . 'like' );
113 define ( 'ACTIVITY_DISLIKE', NAMESPACE_DFRN . '/dislike' );
114 define ( 'ACTIVITY_OBJ_HEART', NAMESPACE_DFRN . '/heart' );
116 define ( 'ACTIVITY_FRIEND', NAMESPACE_ACTIVITY_SCHEMA . 'make-friend' );
117 define ( 'ACTIVITY_FOLLOW', NAMESPACE_ACTIVITY_SCHEMA . 'follow' );
118 define ( 'ACTIVITY_UNFOLLOW', NAMESPACE_ACTIVITY_SCHEMA . 'stop-following' );
119 define ( 'ACTIVITY_POST', NAMESPACE_ACTIVITY_SCHEMA . 'post' );
120 define ( 'ACTIVITY_UPDATE', NAMESPACE_ACTIVITY_SCHEMA . 'update' );
121 define ( 'ACTIVITY_TAG', NAMESPACE_ACTIVITY_SCHEMA . 'tag' );
123 define ( 'ACTIVITY_OBJ_COMMENT', NAMESPACE_ACTIVITY_SCHEMA . 'comment' );
124 define ( 'ACTIVITY_OBJ_NOTE', NAMESPACE_ACTIVITY_SCHEMA . 'note' );
125 define ( 'ACTIVITY_OBJ_PERSON', NAMESPACE_ACTIVITY_SCHEMA . 'person' );
126 define ( 'ACTIVITY_OBJ_PHOTO', NAMESPACE_ACTIVITY_SCHEMA . 'photo' );
127 define ( 'ACTIVITY_OBJ_P_PHOTO', NAMESPACE_ACTIVITY_SCHEMA . 'profile-photo' );
128 define ( 'ACTIVITY_OBJ_ALBUM', NAMESPACE_ACTIVITY_SCHEMA . 'photo-album' );
131 * item weight for query ordering
134 define ( 'GRAVITY_PARENT', 0);
135 define ( 'GRAVITY_LIKE', 3);
136 define ( 'GRAVITY_COMMENT', 6);
140 * Reverse the effect of magic_quotes_gpc if it is enabled.
141 * Please disable magic_quotes_gpc so we don't have to do this.
142 * See http://php.net/manual/en/security.magicquotes.disabling.php
146 if (get_magic_quotes_gpc()) {
147 $process = array(&$_GET, &$_POST, &$_COOKIE, &$_REQUEST);
148 while (list($key, $val) = each($process)) {
149 foreach ($val as $k => $v) {
150 unset($process[$key][$k]);
152 $process[$key][stripslashes($k)] = $v;
153 $process[] = &$process[$key][stripslashes($k)];
155 $process[$key][stripslashes($k)] = stripslashes($v);
167 * Our main application structure for the life of this page
168 * Primarily deals with the URL that got us here
169 * and tries to make some sense of it, and
170 * stores our page contents and config storage
171 * and anything else that might need to be passed around
172 * before we spit the page out.
176 if(! class_exists('App')) {
179 public $module_loaded = false;
180 public $query_string;
189 public $error = false;
199 public $interactive = true;
210 private $curl_headers;
212 function __construct() {
214 $this->config = array();
215 $this->page = array();
216 $this->pager= array();
218 $this->query_string = '';
220 $this->scheme = ((isset($_SERVER['HTTPS']) && ($_SERVER['HTTPS'])) ? 'https' : 'http' );
222 if(x($_SERVER,'SERVER_NAME')) {
223 $this->hostname = $_SERVER['SERVER_NAME'];
226 * Figure out if we are running at the top of a domain
227 * or in a sub-directory and adjust accordingly
230 $path = trim(dirname($_SERVER['SCRIPT_NAME']),'/\\');
231 if(isset($path) && strlen($path) && ($path != $this->path))
235 set_include_path("include/$this->hostname" . PATH_SEPARATOR . 'include' . PATH_SEPARATOR . '.' );
237 if((x($_SERVER,'QUERY_STRING')) && substr($_SERVER['QUERY_STRING'],0,2) === "q=")
238 $this->query_string = substr($_SERVER['QUERY_STRING'],2);
240 $this->cmd = trim($_GET['q'],'/\\');
246 * Break the URL path into C style argc/argv style arguments for our
247 * modules. Given "http://example.com/module/arg1/arg2", $this->argc
248 * will be 3 (integer) and $this->argv will contain:
254 * There will always be one argument. If provided a naked domain
255 * URL, $this->argv[0] is set to "home".
259 $this->argv = explode('/',$this->cmd);
260 $this->argc = count($this->argv);
261 if((array_key_exists('0',$this->argv)) && strlen($this->argv[0])) {
262 $this->module = $this->argv[0];
265 $this->module = 'home';
269 * Special handling for the webfinger/lrdd host XRD file
270 * Just spit out the contents and exit.
273 if($this->cmd === '.well-known/host-meta') {
274 require_once('include/hostxrd.php');
275 hostxrd($this->hostname);
280 * See if there is any page number information, and initialise
284 $this->pager['page'] = ((x($_GET,'page')) ? $_GET['page'] : 1);
285 $this->pager['itemspage'] = 50;
286 $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
287 $this->pager['total'] = 0;
290 function get_baseurl($ssl = false) {
292 $scheme = $this->scheme;
294 if(x($this->config,'ssl_policy')) {
295 if(($ssl) || ($this->config['ssl_policy'] == SSL_POLICY_FULL))
297 if(($this->config['ssl_policy'] == SSL_POLICY_SELFSIGN) && (local_user() || x($_POST,'auth-params')))
301 $this->baseurl = $scheme . "://" . $this->hostname . ((isset($this->path) && strlen($this->path)) ? '/' . $this->path : '' );
302 return $this->baseurl;
305 function set_baseurl($url) {
306 $parsed = @parse_url($url);
308 $this->baseurl = $url;
311 $this->scheme = $parsed['scheme'];
313 $this->hostname = $parsed['host'];
314 if(x($parsed,'port'))
315 $this->hostname .= ':' . $parsed['port'];
316 if(x($parsed,'path'))
317 $this->path = trim($parsed['path'],'\\/');
322 function get_hostname() {
323 return $this->hostname;
326 function set_hostname($h) {
327 $this->hostname = $h;
330 function set_path($p) {
331 $this->path = trim(trim($p),'/');
334 function get_path() {
338 function set_pager_total($n) {
339 $this->pager['total'] = intval($n);
342 function set_pager_itemspage($n) {
343 $this->pager['itemspage'] = intval($n);
344 $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
348 function init_pagehead() {
349 $this->page['title'] = $this->config['sitename'];
350 $tpl = load_view_file("view/head.tpl");
351 $this->page['htmlhead'] = replace_macros($tpl,array(
352 '$baseurl' => $this->get_baseurl() . '/',
353 '$generator' => 'Friendika' . ' ' . FRIENDIKA_VERSION
357 function set_curl_code($code) {
358 $this->curl_code = $code;
361 function get_curl_code() {
362 return $this->curl_code;
365 function set_curl_headers($headers) {
366 $this->curl_headers = $headers;
369 function get_curl_headers() {
370 return $this->curl_headers;
376 // retrieve the App structure
377 // useful in functions which require it but don't get it passed to them
379 if(! function_exists('get_app')) {
386 // Multi-purpose function to check variable state.
387 // Usage: x($var) or $x($array,'key')
388 // returns false if variable/key is not set
389 // if variable is set, returns 1 if has 'non-zero' value, otherwise returns 0.
390 // e.g. x('') or x(0) returns 0;
392 if(! function_exists('x')) {
393 function x($s,$k = NULL) {
395 if((is_array($s)) && (array_key_exists($k,$s))) {
413 // called from db initialisation if db is dead.
415 if(! function_exists('system_unavailable')) {
416 function system_unavailable() {
417 include('system_unavailable.php');
422 // Primarily involved with database upgrade, but also sets the
423 // base url for use in cmdline programs which don't have
424 // $_SERVER variables, and synchronising the state of installed plugins.
427 if(! function_exists('check_config')) {
428 function check_config(&$a) {
431 load_config('system');
433 if(! x($_SERVER,'SERVER_NAME'))
436 $build = get_config('system','build');
438 $build = set_config('system','build',DB_UPDATE_VERSION);
440 $url = get_config('system','url');
442 $url = set_config('system','url',$a->get_baseurl());
444 if($build != DB_UPDATE_VERSION) {
445 $stored = intval($build);
446 $current = intval(DB_UPDATE_VERSION);
447 if(($stored < $current) && file_exists('update.php')) {
448 // We're reporting a different version than what is currently installed.
449 // Run any existing update scripts to bring the database up to current.
451 require_once('update.php');
452 for($x = $stored; $x < $current; $x ++) {
453 if(function_exists('update_' . $x)) {
454 $func = 'update_' . $x;
458 set_config('system','build', DB_UPDATE_VERSION);
464 * Synchronise plugins:
466 * $a->config['system']['addon'] contains a comma-separated list of names
467 * of plugins/addons which are used on this system.
468 * Go through the database list of already installed addons, and if we have
469 * an entry, but it isn't in the config list, call the uninstall procedure
470 * and mark it uninstalled in the database (for now we'll remove it).
471 * Then go through the config list and if we have a plugin that isn't installed,
472 * call the install procedure and add it to the database.
476 $r = q("SELECT * FROM `addon` WHERE `installed` = 1");
480 $installed = array();
482 $plugins = get_config('system','addon');
483 $plugins_arr = array();
486 $plugins_arr = explode(',',str_replace(' ', '',$plugins));
488 $a->plugins = $plugins_arr;
490 $installed_arr = array();
492 if(count($installed)) {
493 foreach($installed as $i) {
494 if(! in_array($i['name'],$plugins_arr)) {
495 logger("Addons: uninstalling " . $i['name']);
496 q("DELETE FROM `addon` WHERE `id` = %d LIMIT 1",
500 @include_once('addon/' . $i['name'] . '/' . $i['name'] . '.php');
501 if(function_exists($i['name'] . '_uninstall')) {
502 $func = $i['name'] . '_uninstall';
507 $installed_arr[] = $i['name'];
511 if(count($plugins_arr)) {
512 foreach($plugins_arr as $p) {
513 if(! in_array($p,$installed_arr)) {
514 logger("Addons: installing " . $p);
515 $t = filemtime('addon/' . $p . '/' . $p . '.php');
516 @include_once('addon/' . $p . '/' . $p . '.php');
517 if(function_exists($p . '_install')) {
518 $func = $p . '_install';
520 $r = q("INSERT INTO `addon` (`name`, `installed`, `timestamp`) VALUES ( '%s', 1, %d ) ",
535 // reload all updated plugins
537 if(! function_exists('reload_plugins')) {
538 function reload_plugins() {
539 $plugins = get_config('system','addon');
540 if(strlen($plugins)) {
542 $r = q("SELECT * FROM `addon` WHERE `installed` = 1");
546 $installed = array();
548 $parr = explode(',',$plugins);
550 foreach($parr as $pl) {
553 $t = filemtime('addon/' . $pl . '/' . $pl . '.php');
554 foreach($installed as $i) {
555 if(($i['name'] == $pl) && ($i['timestamp'] != $t)) {
556 logger('Reloading plugin: ' . $i['name']);
557 @include_once('addon/' . $pl . '/' . $pl . '.php');
559 if(function_exists($pl . '_uninstall')) {
560 $func = $pl . '_uninstall';
563 if(function_exists($pl . '_install')) {
564 $func = $pl . '_install';
567 q("UPDATE `addon` SET `timestamp` = %d WHERE `id` = %d LIMIT 1",
580 // This is our template processor.
581 // $s is the string requiring macro substitution.
582 // $r is an array of key value pairs (search => replace)
583 // returns substituted string.
584 // WARNING: this is pretty basic, and doesn't properly handle search strings that are substrings of each other.
585 // For instance if 'test' => "foo" and 'testing' => "bar", testing could become either bar or fooing,
586 // depending on the order in which they were declared in the array.
588 if(! function_exists('replace_macros')) {
589 function replace_macros($s,$r) {
594 if(is_array($r) && count($r)) {
595 foreach ($r as $k => $v ) {
600 return str_replace($search,$replace,$s);
604 // load string translation table for alternate language
606 if(! function_exists('load_translation_table')) {
607 function load_translation_table($lang) {
610 if(file_exists("view/$lang/strings.php"))
611 include("view/$lang/strings.php");
614 // translate string if translation exists
616 if(! function_exists('t')) {
621 if(x($a->strings,$s))
622 return $a->strings[$s];
626 // curl wrapper. If binary flag is true, return binary
629 if(! function_exists('fetch_url')) {
630 function fetch_url($url,$binary = false, &$redirects = 0) {
634 $ch = curl_init($url);
635 if(($redirects > 8) || (! $ch))
638 curl_setopt($ch, CURLOPT_HEADER, true);
639 curl_setopt($ch, CURLOPT_RETURNTRANSFER,true);
642 $curl_time = intval(get_config('system','curl_timeout'));
643 curl_setopt($ch, CURLOPT_TIMEOUT, (($curl_time !== false) ? $curl_time : 60));
645 // by default we will allow self-signed certs
646 // but you can override this
648 $check_cert = get_config('system','verifyssl');
649 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, (($check_cert) ? true : false));
651 $prx = get_config('system','proxy');
653 curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, 1);
654 curl_setopt($ch, CURLOPT_PROXY, $prx);
655 $prxusr = get_config('system','proxyuser');
657 curl_setopt($ch, CURLOPT_PROXYUSERPWD, $prxusr);
660 curl_setopt($ch, CURLOPT_BINARYTRANSFER,1);
662 $a->set_curl_code(0);
664 // don't let curl abort the entire application
665 // if it throws any errors.
667 $s = @curl_exec($ch);
669 $http_code = intval(curl_getinfo($ch, CURLINFO_HTTP_CODE));
670 $header = substr($s,0,strpos($s,"\r\n\r\n"));
671 if(stristr($header,'100') && (strlen($header) < 30)) {
672 // 100 Continue has two headers, get the real one
673 $s = substr($s,strlen($header)+4);
674 $header = substr($s,0,strpos($s,"\r\n\r\n"));
676 if($http_code == 301 || $http_code == 302 || $http_code == 303) {
678 preg_match('/(Location:|URI:)(.*?)\n/', $header, $matches);
679 $url = trim(array_pop($matches));
680 $url_parsed = @parse_url($url);
681 if (isset($url_parsed)) {
683 return fetch_url($url,$binary,$redirects);
686 $a->set_curl_code($http_code);
688 $body = substr($s,strlen($header)+4);
690 /* one more try to make sure there are no more headers */
692 if(strpos($body,'HTTP/') === 0) {
693 $header = substr($body,0,strpos($body,"\r\n\r\n"));
694 $body = substr($body,strlen($header)+4);
697 $a->set_curl_headers($header);
703 // post request to $url. $params is an array of post variables.
705 if(! function_exists('post_url')) {
706 function post_url($url,$params, $headers = null, &$redirects = 0) {
708 $ch = curl_init($url);
709 if(($redirects > 8) || (! $ch))
712 curl_setopt($ch, CURLOPT_HEADER, true);
713 curl_setopt($ch, CURLOPT_RETURNTRANSFER,true);
714 curl_setopt($ch, CURLOPT_POST,1);
715 curl_setopt($ch, CURLOPT_POSTFIELDS,$params);
717 $curl_time = intval(get_config('system','curl_timeout'));
718 curl_setopt($ch, CURLOPT_TIMEOUT, (($curl_time !== false) ? $curl_time : 60));
720 if(is_array($headers))
721 curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
723 $check_cert = get_config('system','verifyssl');
724 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, (($check_cert) ? true : false));
725 $prx = get_config('system','proxy');
727 curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, 1);
728 curl_setopt($ch, CURLOPT_PROXY, $prx);
729 $prxusr = get_config('system','proxyuser');
731 curl_setopt($ch, CURLOPT_PROXYUSERPWD, $prxusr);
734 $a->set_curl_code(0);
736 // don't let curl abort the entire application
737 // if it throws any errors.
739 $s = @curl_exec($ch);
741 $http_code = intval(curl_getinfo($ch, CURLINFO_HTTP_CODE));
742 $header = substr($s,0,strpos($s,"\r\n\r\n"));
743 if(stristr($header,'100') && (strlen($header) < 30)) {
744 // 100 Continue has two headers, get the real one
745 $s = substr($s,strlen($header)+4);
746 $header = substr($s,0,strpos($s,"\r\n\r\n"));
748 if($http_code == 301 || $http_code == 302 || $http_code == 303) {
750 preg_match('/(Location:|URI:)(.*?)\n/', $header, $matches);
751 $url = trim(array_pop($matches));
752 $url_parsed = @parse_url($url);
753 if (isset($url_parsed)) {
755 return post_url($url,$binary,$headers,$redirects);
758 $a->set_curl_code($http_code);
759 $body = substr($s,strlen($header)+4);
761 /* one more try to make sure there are no more headers */
763 if(strpos($body,'HTTP/') === 0) {
764 $header = substr($body,0,strpos($body,"\r\n\r\n"));
765 $body = substr($body,strlen($header)+4);
768 $a->set_curl_headers($header);
774 // random hash, 64 chars
776 if(! function_exists('random_string')) {
777 function random_string() {
778 return(hash('sha256',uniqid(rand(),true)));
782 * This is our primary input filter.
784 * The high bit hack only involved some old IE browser, forget which (IE5/Mac?)
785 * that had an XSS attack vector due to stripping the high-bit on an 8-bit character
786 * after cleansing, and angle chars with the high bit set could get through as markup.
788 * This is now disabled because it was interfering with some legitimate unicode sequences
789 * and hopefully there aren't a lot of those browsers left.
791 * Use this on any text input where angle chars are not valid or permitted
792 * They will be replaced with safer brackets. This may be filtered further
793 * if these are not allowed either.
797 if(! function_exists('notags')) {
798 function notags($string) {
800 return(str_replace(array("<",">"), array('[',']'), $string));
802 // High-bit filter no longer used
803 // return(str_replace(array("<",">","\xBA","\xBC","\xBE"), array('[',']','','',''), $string));
806 // use this on "body" or "content" input where angle chars shouldn't be removed,
807 // and allow them to be safely displayed.
809 if(! function_exists('escape_tags')) {
810 function escape_tags($string) {
812 return(htmlspecialchars($string));
815 // wrapper for adding a login box. If $register == true provide a registration
816 // link. This will most always depend on the value of $a->config['register_policy'].
817 // returns the complete html for inserting into the page
819 if(! function_exists('login')) {
820 function login($register = false) {
822 $register_tpl = (($register) ? load_view_file("view/register-link.tpl") : "");
824 $register_html = replace_macros($register_tpl,array(
825 '$title' => t('Create a New Account'),
826 '$desc' => t('Register')
829 $noid = get_config('system','no_openid');
831 $classname = 'no-openid';
832 $namelabel = t('Nickname or Email address: ');
833 $passlabel = t('Password: ');
837 $classname = 'openid';
838 $namelabel = t('Nickname/Email/OpenID: ');
839 $passlabel = t("Password \x28if not OpenID\x29: ");
842 $lostpass = t('Forgot your password?');
843 $lostlink = t('Password Reset');
846 $tpl = load_view_file("view/logout.tpl");
849 $tpl = load_view_file("view/login.tpl");
853 $o = replace_macros($tpl,array(
854 '$logout' => t('Logout'),
855 '$register_html' => $register_html,
856 '$classname' => $classname,
857 '$namelabel' => $namelabel,
858 '$passlabel' => $passlabel,
860 '$lostpass' => $lostpass,
861 '$lostlink' => $lostlink
867 // generate a string that's random, but usually pronounceable.
868 // used to generate initial passwords
870 if(! function_exists('autoname')) {
871 function autoname($len) {
873 $vowels = array('a','a','ai','au','e','e','e','ee','ea','i','ie','o','ou','u');
874 if(mt_rand(0,5) == 4)
892 's','sc','sh','sm','sp','st',
900 $midcons = array('ck','ct','gn','ld','lf','lm','lt','mb','mm', 'mn','mp',
901 'nd','ng','nk','nt','rn','rp','rt');
903 $noend = array('bl', 'br', 'cl','cr','dr','fl','fr','gl','gr',
904 'kh', 'kl','kr','mn','pl','pr','rh','tr','qu','wh');
906 $start = mt_rand(0,2);
914 for ($x = 0; $x < $len; $x ++) {
915 $r = mt_rand(0,count($table) - 1);
918 if($table == $vowels)
919 $table = array_merge($cons,$midcons);
925 $word = substr($word,0,$len);
927 foreach($noend as $noe) {
928 if((strlen($word) > 2) && (substr($word,-2) == $noe)) {
929 $word = substr($word,0,-1);
933 if(substr($word,-1) == 'q')
934 $word = substr($word,0,-1);
938 // Used to end the current process, after saving session state.
940 if(! function_exists('killme')) {
942 session_write_close();
946 // redirect to another URL and terminate this process.
948 if(! function_exists('goaway')) {
949 function goaway($s) {
950 header("Location: $s");
954 // Generic XML return
955 // Outputs a basic dfrn XML status structure to STDOUT, with a <status> variable
956 // of $st and an optional text <message> of $message and terminates the current process.
958 if(! function_exists('xml_status')) {
959 function xml_status($st, $message = '') {
961 $xml_message = ((strlen($message)) ? "\t<message>" . xmlify($message) . "</message>\r\n" : '');
964 logger('xml_status returning non_zero: ' . $st . " message=" . $message);
966 header( "Content-type: text/xml" );
967 echo '<?xml version="1.0" encoding="UTF-8"?>'."\r\n";
968 echo "<result>\r\n\t<status>$st</status>\r\n$xml_message</result>\r\n";
972 // Returns the uid of locally logged in user or false.
974 if(! function_exists('local_user')) {
975 function local_user() {
976 if((x($_SESSION,'authenticated')) && (x($_SESSION,'uid')))
977 return intval($_SESSION['uid']);
981 // Returns contact id of authenticated site visitor or false
983 if(! function_exists('remote_user')) {
984 function remote_user() {
985 if((x($_SESSION,'authenticated')) && (x($_SESSION,'visitor_id')))
986 return intval($_SESSION['visitor_id']);
990 // contents of $s are displayed prominently on the page the next time
991 // a page is loaded. Usually used for errors or alerts.
993 if(! function_exists('notice')) {
994 function notice($s) {
997 $_SESSION['sysmsg'] .= $s;
1000 // wrapper around config to limit the text length of an incoming message
1002 if(! function_exists('get_max_import_size')) {
1003 function get_max_import_size() {
1005 return ((x($a->config,'max_import_size')) ? $a->config['max_import_size'] : 0 );
1009 // escape text ($str) for XML transport
1010 // returns escaped text.
1012 if(! function_exists('xmlify')) {
1013 function xmlify($str) {
1016 for($x = 0; $x < strlen($str); $x ++) {
1027 $buffer .= ''';
1030 $buffer .= '"';
1046 $buffer = trim($buffer);
1051 // pass xml escaped text ($s), returns unescaped text
1053 if(! function_exists('unxmlify')) {
1054 function unxmlify($s) {
1055 $ret = str_replace('&','&', $s);
1056 $ret = str_replace(array('<','>','"','''),array('<','>','"',"'"),$ret);
1060 // convenience wrapper, reverse the operation "bin2hex"
1062 if(! function_exists('hex2bin')) {
1063 function hex2bin($s) {
1064 if(! ctype_xdigit($s)) {
1065 logger('hex2bin: illegal input: ' . print_r(debug_backtrace(), true));
1069 return(pack("H*",$s));
1072 // Automatic pagination.
1073 // To use, get the count of total items.
1074 // Then call $a->set_pager_total($number_items);
1075 // Optionally call $a->set_pager_itemspage($n) to the number of items to display on each page
1076 // Then call paginate($a) after the end of the display loop to insert the pager block on the page
1077 // (assuming there are enough items to paginate).
1078 // When using with SQL, the setting LIMIT %d, %d => $a->pager['start'],$a->pager['itemspage']
1079 // will limit the results to the correct items for the current page.
1080 // The actual page handling is then accomplished at the application layer.
1082 if(! function_exists('paginate')) {
1083 function paginate(&$a) {
1085 $stripped = preg_replace('/(&page=[0-9]*)/','',$a->query_string);
1086 $stripped = str_replace('q=','',$stripped);
1087 $stripped = trim($stripped,'/');
1088 $url = $a->get_baseurl() . '/' . $stripped;
1091 if($a->pager['total'] > $a->pager['itemspage']) {
1092 $o .= '<div class="pager">';
1093 if($a->pager['page'] != 1)
1094 $o .= '<span class="pager_prev">'."<a href=\"$url".'&page='.($a->pager['page'] - 1).'">' . t('prev') . '</a></span> ';
1096 $o .= "<span class=\"pager_first\"><a href=\"$url"."&page=1\">" . t('first') . "</a></span> ";
1098 $numpages = $a->pager['total'] / $a->pager['itemspage'];
1101 $numstop = $numpages;
1103 if($numpages > 14) {
1104 $numstart = (($pagenum > 7) ? ($pagenum - 7) : 1);
1105 $numstop = (($pagenum > ($numpages - 7)) ? $numpages : ($numstart + 14));
1108 for($i = $numstart; $i <= $numstop; $i++){
1109 if($i == $a->pager['page'])
1110 $o .= '<span class="pager_current">'.(($i < 10) ? ' '.$i : $i);
1112 $o .= "<span class=\"pager_n\"><a href=\"$url"."&page=$i\">".(($i < 10) ? ' '.$i : $i)."</a>";
1116 if(($a->pager['total'] % $a->pager['itemspage']) != 0) {
1117 if($i == $a->pager['page'])
1118 $o .= '<span class="pager_current">'.(($i < 10) ? ' '.$i : $i);
1120 $o .= "<span class=\"pager_n\"><a href=\"$url"."&page=$i\">".(($i < 10) ? ' '.$i : $i)."</a>";
1124 $lastpage = (($numpages > intval($numpages)) ? intval($numpages)+1 : $numpages);
1125 $o .= "<span class=\"pager_last\"><a href=\"$url"."&page=$lastpage\">" . t('last') . "</a></span> ";
1127 if(($a->pager['total'] - ($a->pager['itemspage'] * $a->pager['page'])) > 0)
1128 $o .= '<span class="pager_next">'."<a href=\"$url"."&page=".($a->pager['page'] + 1).'">' . t('next') . '</a></span>';
1129 $o .= '</div>'."\r\n";
1134 // Turn user/group ACLs stored as angle bracketed text into arrays
1136 if(! function_exists('expand_acl')) {
1137 function expand_acl($s) {
1138 // turn string array of angle-bracketed elements into numeric array
1139 // e.g. "<1><2><3>" => array(1,2,3);
1143 $t = str_replace('<','',$s);
1144 $a = explode('>',$t);
1145 foreach($a as $aa) {
1147 $ret[] = intval($aa);
1153 // Used to wrap ACL elements in angle brackets for storage
1155 if(! function_exists('sanitise_acl')) {
1156 function sanitise_acl(&$item) {
1158 $item = '<' . intval(notags(trim($item))) . '>';
1163 // retrieve a "family" of config variables from database to cached storage
1165 if(! function_exists('load_config')) {
1166 function load_config($family) {
1168 $r = q("SELECT * FROM `config` WHERE `cat` = '%s'",
1172 foreach($r as $rr) {
1174 $a->config[$family][$k] = $rr['v'];
1179 // get a particular config variable given the family name
1180 // and key. Returns false if not set.
1181 // $instore is only used by the set_config function
1182 // to determine if the key already exists in the DB
1183 // If a key is found in the DB but doesn't exist in
1184 // local config cache, pull it into the cache so we don't have
1185 // to hit the DB again for this item.
1187 if(! function_exists('get_config')) {
1188 function get_config($family, $key, $instore = false) {
1193 if(isset($a->config[$family][$key])) {
1194 if($a->config[$family][$key] === '!<unset>!') {
1197 return $a->config[$family][$key];
1200 $ret = q("SELECT `v` FROM `config` WHERE `cat` = '%s' AND `k` = '%s' LIMIT 1",
1205 $a->config[$family][$key] = $ret[0]['v'];
1206 return $ret[0]['v'];
1209 $a->config[$family][$key] = '!<unset>!';
1214 // Store a config value ($value) in the category ($family)
1215 // under the key ($key)
1216 // Return the value, or false if the database update failed
1218 if(! function_exists('set_config')) {
1219 function set_config($family,$key,$value) {
1223 if(get_config($family,$key,true) === false) {
1224 $ret = q("INSERT INTO `config` ( `cat`, `k`, `v` ) VALUES ( '%s', '%s', '%s' ) ",
1233 $ret = q("UPDATE `config` SET `v` = '%s' WHERE `cat` = '%s' AND `k` = '%s' LIMIT 1",
1239 $a->config[$family][$key] = $value;
1247 if(! function_exists('load_pconfig')) {
1248 function load_pconfig($uid,$family) {
1250 $r = q("SELECT * FROM `pconfig` WHERE `cat` = '%s' AND `uid` = %d",
1255 foreach($r as $rr) {
1257 $a->config[$uid][$family][$k] = $rr['v'];
1264 if(! function_exists('get_pconfig')) {
1265 function get_pconfig($uid,$family, $key, $instore = false) {
1270 if(isset($a->config[$uid][$family][$key])) {
1271 if($a->config[$uid][$family][$key] === '!<unset>!') {
1274 return $a->config[$uid][$family][$key];
1278 $ret = q("SELECT `v` FROM `pconfig` WHERE `uid` = %d AND `cat` = '%s' AND `k` = '%s' LIMIT 1",
1285 $a->config[$uid][$family][$key] = $ret[0]['v'];
1286 return $ret[0]['v'];
1289 $a->config[$uid][$family][$key] = '!<unset>!';
1294 if(! function_exists('del_config')) {
1295 function del_config($family,$key) {
1298 if(x($a->config[$family],$key))
1299 unset($a->config[$family][$key]);
1300 $ret = q("DELETE FROM `config` WHERE `cat` = '%s' AND `k` = '%s' LIMIT 1",
1309 // Same as above functions except these are for personal config storage and take an
1310 // additional $uid argument.
1312 if(! function_exists('set_pconfig')) {
1313 function set_pconfig($uid,$family,$key,$value) {
1317 if(get_pconfig($uid,$family,$key,true) === false) {
1318 $ret = q("INSERT INTO `pconfig` ( `uid`, `cat`, `k`, `v` ) VALUES ( %d, '%s', '%s', '%s' ) ",
1328 $ret = q("UPDATE `pconfig` SET `v` = '%s' WHERE `uid` = %d AND `cat` = '%s' AND `k` = '%s' LIMIT 1",
1335 $a->config[$uid][$family][$key] = $value;
1342 if(! function_exists('del_pconfig')) {
1343 function del_pconfig($uid,$family,$key) {
1346 if(x($a->config[$uid][$family],$key))
1347 unset($a->config[$uid][$family][$key]);
1348 $ret = q("DELETE FROM `pconfig` WHERE `uid` = %d AND `cat` = '%s' AND `k` = '%s' LIMIT 1",
1357 // convert an XML document to a normalised, case-corrected array
1358 // used by webfinger
1360 if(! function_exists('convert_xml_element_to_array')) {
1361 function convert_xml_element_to_array($xml_element, &$recursion_depth=0) {
1363 // If we're getting too deep, bail out
1364 if ($recursion_depth > 512) {
1368 if (!is_string($xml_element) &&
1369 !is_array($xml_element) &&
1370 (get_class($xml_element) == 'SimpleXMLElement')) {
1371 $xml_element_copy = $xml_element;
1372 $xml_element = get_object_vars($xml_element);
1375 if (is_array($xml_element)) {
1376 $result_array = array();
1377 if (count($xml_element) <= 0) {
1378 return (trim(strval($xml_element_copy)));
1381 foreach($xml_element as $key=>$value) {
1384 $result_array[strtolower($key)] =
1385 convert_xml_element_to_array($value, $recursion_depth);
1388 if ($recursion_depth == 0) {
1389 $temp_array = $result_array;
1390 $result_array = array(
1391 strtolower($xml_element_copy->getName()) => $temp_array,
1395 return ($result_array);
1398 return (trim(strval($xml_element)));
1402 // Given an email style address, perform webfinger lookup and
1403 // return the resulting DFRN profile URL, or if no DFRN profile URL
1404 // is located, returns an OStatus subscription template (prefixed
1405 // with the string 'stat:' to identify it as on OStatus template).
1406 // If this isn't an email style address just return $s.
1407 // Return an empty string if email-style addresses but webfinger fails,
1408 // or if the resultant personal XRD doesn't contain a supported
1409 // subscription/friend-request attribute.
1411 if(! function_exists('webfinger_dfrn')) {
1412 function webfinger_dfrn($s) {
1413 if(! strstr($s,'@')) {
1416 $links = webfinger($s);
1417 logger('webfinger_dfrn: ' . $s . ':' . print_r($links,true), LOGGER_DATA);
1419 foreach($links as $link)
1420 if($link['@attributes']['rel'] === NAMESPACE_DFRN)
1421 return $link['@attributes']['href'];
1422 foreach($links as $link)
1423 if($link['@attributes']['rel'] === NAMESPACE_OSTATUSSUB)
1424 return 'stat:' . $link['@attributes']['template'];
1429 // Given an email style address, perform webfinger lookup and
1430 // return the array of link attributes from the personal XRD file.
1431 // On error/failure return an empty array.
1434 if(! function_exists('webfinger')) {
1435 function webfinger($s) {
1437 if(strstr($s,'@')) {
1438 $host = substr($s,strpos($s,'@') + 1);
1441 $tpl = fetch_lrdd_template($host);
1442 logger('webfinger: lrdd template: ' . $tpl);
1444 $pxrd = str_replace('{uri}', urlencode('acct:' . $s), $tpl);
1445 logger('webfinger: pxrd: ' . $pxrd);
1446 $links = fetch_xrd_links($pxrd);
1447 if(! count($links)) {
1448 // try with double slashes
1449 $pxrd = str_replace('{uri}', urlencode('acct://' . $s), $tpl);
1450 logger('webfinger: pxrd: ' . $pxrd);
1451 $links = fetch_xrd_links($pxrd);
1459 if(! function_exists('lrdd')) {
1460 function lrdd($uri) {
1464 // default priority is host priority, host-meta first
1468 // All we have is an email address. Resource-priority is irrelevant
1469 // because our URI isn't directly resolvable.
1471 if(strstr($uri,'@')) {
1472 return(webfinger($uri));
1475 // get the host meta file
1477 $host = @parse_url($uri);
1480 $url = ((x($host,'scheme')) ? $host['scheme'] : 'http') . '://';
1481 $url .= $host['host'] . '/.well-known/host-meta' ;
1486 logger('lrdd: constructed url: ' . $url);
1488 $xml = fetch_url($url);
1489 $headers = $a->get_curl_headers();
1494 logger('lrdd: host_meta: ' . $xml, LOGGER_DATA);
1495 $h = simplexml_load_string($xml);
1496 $arr = convert_xml_element_to_array($h);
1498 if(isset($arr['xrd']['property'])) {
1499 $property = $arr['crd']['property'];
1500 if(! isset($property[0]))
1501 $properties = array($property);
1503 $properties = $property;
1504 foreach($properties as $prop)
1505 if((string) $prop['@attributes'] === 'http://lrdd.net/priority/resource')
1506 $priority = 'resource';
1509 // save the links in case we need them
1513 if(isset($arr['xrd']['link'])) {
1514 $link = $arr['xrd']['link'];
1515 if(! isset($link[0]))
1516 $links = array($link);
1521 // do we have a template or href?
1524 foreach($links as $link) {
1525 if($link['@attributes']['rel'] && attribute_contains($link['@attributes']['rel'],'lrdd')) {
1526 if(x($link['@attributes'],'template'))
1527 $tpl = $link['@attributes']['template'];
1528 elseif(x($link['@attributes'],'href'))
1529 $href = $link['@attributes']['href'];
1534 if((! isset($tpl)) || (! strpos($tpl,'{uri}')))
1537 if($priority === 'host') {
1539 $pxrd = str_replace('{uri}', urlencode($uri), $tpl);
1540 elseif(isset($href))
1543 logger('lrdd: (host priority) pxrd: ' . $pxrd);
1544 $links = fetch_xrd_links($pxrd);
1548 $lines = explode("\n",$headers);
1550 foreach($lines as $line) {
1551 if((stristr($line,'link:')) && preg_match('/<([^>].*)>.*rel\=[\'\"]lrdd[\'\"]/',$line,$matches)) {
1552 return(fetch_xrd_links($matches[1]));
1560 // priority 'resource'
1563 $html = fetch_url($uri);
1564 $headers = $a->get_curl_headers();
1565 logger('lrdd: headers=' . $headers, LOGGER_DEBUG);
1567 require_once('library/HTML5/Parser.php');
1568 $dom = @HTML5_Parser::parse($html);
1571 $items = $dom->getElementsByTagName('link');
1572 foreach($items as $item) {
1573 $x = $item->getAttribute('rel');
1575 $pagelink = $item->getAttribute('href');
1581 if(isset($pagelink))
1582 return(fetch_xrd_links($pagelink));
1584 // next look in HTTP headers
1586 $lines = explode("\n",$headers);
1588 foreach($lines as $line) {
1589 // TODO alter the following regex to support multiple relations (space separated)
1590 if((stristr($line,'link:')) && preg_match('/<([^>].*)>.*rel\=[\'\"]lrdd[\'\"]/',$line,$matches)) {
1591 $pagelink = $matches[1];
1594 // don't try and run feeds through the html5 parser
1595 if(stristr($line,'content-type:') && ((stristr($line,'application/atom+xml')) || (stristr($line,'application/rss+xml'))))
1597 if(stristr($html,'<rss') || stristr($html,'<feed'))
1602 if(isset($pagelink))
1603 return(fetch_xrd_links($pagelink));
1605 // If we haven't found any links, return the host xrd links (which we have already fetched)
1616 // Given a host name, locate the LRDD template from that
1617 // host. Returns the LRDD template or an empty string on
1620 if(! function_exists('fetch_lrdd_template')) {
1621 function fetch_lrdd_template($host) {
1623 $url = 'http://' . $host . '/.well-known/host-meta' ;
1624 $links = fetch_xrd_links($url);
1625 logger('template: ' . print_r($links,true));
1627 foreach($links as $link)
1628 if($link['@attributes']['rel'] && $link['@attributes']['rel'] === 'lrdd')
1629 $tpl = $link['@attributes']['template'];
1631 if(! strpos($tpl,'{uri}'))
1636 // Given a URL, retrieve the page as an XRD document.
1637 // Return an array of links.
1638 // on error/failure return empty array.
1640 if(! function_exists('fetch_xrd_links')) {
1641 function fetch_xrd_links($url) {
1644 $xml = fetch_url($url);
1648 logger('fetch_xrd_links: ' . $xml, LOGGER_DATA);
1649 $h = simplexml_load_string($xml);
1650 $arr = convert_xml_element_to_array($h);
1654 if(isset($arr['xrd']['link'])) {
1655 $link = $arr['xrd']['link'];
1656 if(! isset($link[0]))
1657 $links = array($link);
1661 if(isset($arr['xrd']['alias'])) {
1662 $alias = $arr['xrd']['alias'];
1663 if(! isset($alias[0]))
1664 $aliases = array($alias);
1667 foreach($aliases as $alias) {
1668 $links[]['@attributes'] = array('rel' => 'alias' , 'href' => $alias);
1672 logger('fetch_xrd_links: ' . print_r($links,true), LOGGER_DATA);
1678 // Convert an ACL array to a storable string
1680 if(! function_exists('perms2str')) {
1681 function perms2str($p) {
1684 if(is_array($tmp)) {
1685 array_walk($tmp,'sanitise_acl');
1686 $ret = implode('',$tmp);
1691 // generate a guaranteed unique (for this domain) item ID for ATOM
1692 // safe from birthday paradox
1694 if(! function_exists('item_new_uri')) {
1695 function item_new_uri($hostname,$uid) {
1699 $hash = random_string();
1701 $uri = "urn:X-dfrn:" . $hostname . ':' . $uid . ':' . $hash;
1703 $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' LIMIT 1",
1707 } while($dups == true);
1711 // Generate a guaranteed unique photo ID.
1712 // safe from birthday paradox
1714 if(! function_exists('photo_new_resource')) {
1715 function photo_new_resource() {
1719 $resource = hash('md5',uniqid(mt_rand(),true));
1720 $r = q("SELECT `id` FROM `photo` WHERE `resource-id` = '%s' LIMIT 1",
1725 } while($found == true);
1730 // Take a URL from the wild, prepend http:// if necessary
1731 // and check DNS to see if it's real
1732 // return true if it's OK, false if something is wrong with it
1734 if(! function_exists('validate_url')) {
1735 function validate_url(&$url) {
1736 if(substr($url,0,4) != 'http')
1737 $url = 'http://' . $url;
1738 $h = @parse_url($url);
1740 if(($h) && (dns_get_record($h['host'], DNS_A + DNS_CNAME + DNS_PTR))) {
1746 // checks that email is an actual resolvable internet address
1748 if(! function_exists('validate_email')) {
1749 function validate_email($addr) {
1751 if(! strpos($addr,'@'))
1753 $h = substr($addr,strpos($addr,'@') + 1);
1755 if(($h) && (dns_get_record($h, DNS_A + DNS_CNAME + DNS_PTR + DNS_MX))) {
1761 // Check $url against our list of allowed sites,
1762 // wildcards allowed. If allowed_sites is unset return true;
1763 // If url is allowed, return true.
1764 // otherwise, return false
1766 if(! function_exists('allowed_url')) {
1767 function allowed_url($url) {
1769 $h = @parse_url($url);
1775 $str_allowed = get_config('system','allowed_sites');
1781 $host = strtolower($h['host']);
1783 // always allow our own site
1785 if($host == strtolower($_SERVER['SERVER_NAME']))
1788 $fnmatch = function_exists('fnmatch');
1789 $allowed = explode(',',$str_allowed);
1791 if(count($allowed)) {
1792 foreach($allowed as $a) {
1793 $pat = strtolower(trim($a));
1794 if(($fnmatch && fnmatch($pat,$host)) || ($pat == $host)) {
1803 // check if email address is allowed to register here.
1804 // Compare against our list (wildcards allowed).
1805 // Returns false if not allowed, true if allowed or if
1806 // allowed list is not configured.
1808 if(! function_exists('allowed_email')) {
1809 function allowed_email($email) {
1812 $domain = strtolower(substr($email,strpos($email,'@') + 1));
1816 $str_allowed = get_config('system','allowed_email');
1822 $fnmatch = function_exists('fnmatch');
1823 $allowed = explode(',',$str_allowed);
1825 if(count($allowed)) {
1826 foreach($allowed as $a) {
1827 $pat = strtolower(trim($a));
1828 if(($fnmatch && fnmatch($pat,$domain)) || ($pat == $domain)) {
1837 // Format the like/dislike text for a profile item
1838 // $cnt = number of people who like/dislike the item
1839 // $arr = array of pre-linked names of likers/dislikers
1840 // $type = one of 'like, 'dislike'
1842 // returns formatted text
1844 if(! function_exists('format_like')) {
1845 function format_like($cnt,$arr,$type,$id) {
1848 $o .= $arr[0] . (($type === 'like') ? t(' likes this.') : t(' doesn\'t like this.')) . EOL ;
1850 $o .= '<span class="fakelink" onclick="openClose(\'' . $type . 'list-' . $id . '\');" >'
1851 . $cnt . ' ' . t('people') . '</span> ' . (($type === 'like') ? t('like this.') : t('don\'t like this.')) . EOL ;
1852 $total = count($arr);
1853 if($total >= MAX_LIKERS)
1854 $arr = array_slice($arr, 0, MAX_LIKERS - 1);
1855 if($total < MAX_LIKERS)
1856 $arr[count($arr)-1] = t('and') . ' ' . $arr[count($arr)-1];
1857 $str = implode(', ', $arr);
1858 if($total >= MAX_LIKERS)
1859 $str .= t(', and ') . $total - MAX_LIKERS . t(' other people');
1860 $str .= (($type === 'like') ? t(' like this.') : t(' don\'t like this.'));
1861 $o .= "\t" . '<div id="' . $type . 'list-' . $id . '" style="display: none;" >' . $str . '</div>';
1867 // wrapper to load a view template, checking for alternate
1868 // languages before falling back to the default
1870 if(! function_exists('load_view_file')) {
1871 function load_view_file($s) {
1874 $lang = get_config('system','language');
1877 if(file_exists("$d/$lang/$b"))
1878 return file_get_contents("$d/$lang/$b");
1879 return file_get_contents($s);
1882 // for html,xml parsing - let's say you've got
1883 // an attribute foobar="class1 class2 class3"
1884 // and you want to find out if it contains 'class3'.
1885 // you can't use a normal sub string search because you
1886 // might match 'notclass3' and a regex to do the job is
1887 // possible but a bit complicated.
1888 // pass the attribute string as $attr and the attribute you
1889 // are looking for as $s - returns true if found, otherwise false
1891 if(! function_exists('attribute_contains')) {
1892 function attribute_contains($attr,$s) {
1893 $a = explode(' ', $attr);
1894 if(count($a) && in_array($s,$a))
1899 if(! function_exists('logger')) {
1900 function logger($msg,$level = 0) {
1901 $debugging = get_config('system','debugging');
1902 $loglevel = intval(get_config('system','loglevel'));
1903 $logfile = get_config('system','logfile');
1905 if((! $debugging) || (! $logfile) || ($level > $loglevel))
1908 @file_put_contents($logfile, datetime_convert() . ':' . session_id() . ' ' . $msg . "\n", FILE_APPEND);
1913 if(! function_exists('activity_match')) {
1914 function activity_match($haystack,$needle) {
1915 if(($haystack === $needle) || ((basename($needle) === $haystack) && strstr($needle,NAMESPACE_ACTIVITY_SCHEMA)))
1921 // Pull out all #hashtags and @person tags from $s;
1922 // We also get @person@domain.com - which would make
1923 // the regex quite complicated as tags can also
1924 // end a sentence. So we'll run through our results
1925 // and strip the period from any tags which end with one.
1926 // Returns array of tags found, or empty array.
1929 if(! function_exists('get_tags')) {
1930 function get_tags($s) {
1933 // ignore anything in a code block
1935 $s = preg_replace('/\[code\](.*?)\[\/code\]/sm','',$s);
1937 if(preg_match_all('/([@#][^ \x0D\x0A,:?]+)([ \x0D\x0A,:?]|$)/',$s,$match)) {
1938 foreach($match[1] as $match) {
1939 if(strstr($match,"]")) {
1940 // we might be inside a bbcode color tag - leave it alone
1943 if(substr($match,-1,1) === '.')
1944 $ret[] = substr($match,0,-1);
1954 // quick and dirty quoted_printable encoding
1956 if(! function_exists('qp')) {
1958 return str_replace ("%","=",rawurlencode($s));
1962 if(! function_exists('like_puller')) {
1963 function like_puller($a,$item,&$arr,$mode) {
1967 $verb = (($mode === 'like') ? ACTIVITY_LIKE : ACTIVITY_DISLIKE);
1969 if((activity_match($item['verb'],$verb)) && ($item['id'] != $item['parent'])) {
1970 $url = $item['author-link'];
1971 if((local_user()) && (local_user() == $item['uid']) && ($item['network'] === 'dfrn') && (! $item['self']) && (link_compare($item['author-link'],$item['url']))) {
1972 $url = $a->get_baseurl() . '/redir/' . $item['contact-id'];
1973 $sparkle = ' class="sparkle" ';
1975 if(! ((isset($arr[$item['parent'] . '-l'])) && (is_array($arr[$item['parent'] . '-l']))))
1976 $arr[$item['parent'] . '-l'] = array();
1977 if(! isset($arr[$item['parent']]))
1978 $arr[$item['parent']] = 1;
1980 $arr[$item['parent']] ++;
1981 $arr[$item['parent'] . '-l'][] = '<a href="'. $url . '"'. $sparkle .'>' . $item['author-name'] . '</a>';
1986 if(! function_exists('get_mentions')) {
1987 function get_mentions($item) {
1989 if(! strlen($item['tag']))
1992 $arr = explode(',',$item['tag']);
1993 foreach($arr as $x) {
1995 if(preg_match('/@\[url=([^\]]*)\]/',$x,$matches)) {
1996 $o .= "\t\t" . '<link rel="mentioned" href="' . $matches[1] . '" />' . "\r\n";
1997 $o .= "\t\t" . '<link rel="ostatus:attention" href="' . $matches[1] . '" />' . "\r\n";
2003 if(! function_exists('contact_block')) {
2004 function contact_block() {
2008 $shown = get_pconfig($a->profile['uid'],'system','display_friend_count');
2012 if((! is_array($a->profile)) || ($a->profile['hide-friends']))
2014 $r = q("SELECT COUNT(*) AS `total` FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 and `pending` = 0",
2015 intval($a->profile['uid'])
2018 $total = intval($r[0]['total']);
2021 $o .= '<h4 class="contact-h4">' . t('No contacts') . '</h4>';
2024 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 and `pending` = 0 ORDER BY RAND() LIMIT %d",
2025 intval($a->profile['uid']),
2029 $o .= '<h4 class="contact-h4">' . $total . ' ' . t('Contacts') . '</h4><div id="contact-block">';
2030 foreach($r as $rr) {
2031 $redirect_url = $a->get_baseurl() . '/redir/' . $rr['id'];
2032 if(local_user() && ($rr['uid'] == local_user())
2033 && ($rr['network'] === 'dfrn')) {
2034 $url = $redirect_url;
2035 $sparkle = ' sparkle';
2042 $o .= '<div class="contact-block-div"><a class="contact-block-link' . $sparkle . '" href="' . $url . '" ><img class="contact-block-img' . $sparkle . '" src="' . $rr['micro'] . '" title="' . $rr['name'] . ' [' . $rr['url'] . ']" alt="' . $rr['name'] . '" /></a></div>' . "\r\n";
2044 $o .= '</div><div id="contact-block-end"></div>';
2045 $o .= '<div id="viewcontacts"><a id="viewcontacts-link" href="viewcontacts/' . $a->profile['nickname'] . '">' . t('View Contacts') . '</a></div>';
2049 $arr = array('contacts' => $r, 'output' => $o);
2051 call_hooks('contact_block_end', $arr);
2056 if(! function_exists('search')) {
2057 function search($s) {
2059 $o = '<div id="search-box">';
2060 $o .= '<form action="' . $a->get_baseurl() . '/search' . '" method="get" >';
2061 $o .= '<input type="text" name="search" id="search-text" value="' . $s .'" />';
2062 $o .= '<input type="submit" name="submit" id="search-submit" value="' . t('Search') . '" />';
2063 $o .= '</form></div>';
2067 if(! function_exists('valid_email')) {
2068 function valid_email($x){
2069 if(preg_match('/^[_a-zA-Z0-9-]+(\.[_a-zA-Z0-9-]+)*@[a-zA-Z0-9-]+(\.[a-zA-Z0-9-]+)+$/',$x))
2075 if(! function_exists('gravatar_img')) {
2076 function gravatar_img($email) {
2078 $opt = 'identicon'; // psuedo-random geometric pattern if not found
2080 $hash = md5(trim(strtolower($email)));
2082 $url = 'http://www.gravatar.com/avatar/' . $hash . '.jpg'
2083 . '?s=' . $size . '&d=' . $opt . '&r=' . $rating;
2085 logger('gravatar: ' . $email . ' ' . $url);
2089 if(! function_exists('aes_decrypt')) {
2090 function aes_decrypt($val,$ky)
2092 $key="\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0";
2093 for($a=0;$a<strlen($ky);$a++)
2094 $key[$a%16]=chr(ord($key[$a%16]) ^ ord($ky[$a]));
2095 $mode = MCRYPT_MODE_ECB;
2096 $enc = MCRYPT_RIJNDAEL_128;
2097 $dec = @mcrypt_decrypt($enc, $key, $val, $mode, @mcrypt_create_iv( @mcrypt_get_iv_size($enc, $mode), MCRYPT_DEV_URANDOM ) );
2098 return rtrim($dec,(( ord(substr($dec,strlen($dec)-1,1))>=0 and ord(substr($dec, strlen($dec)-1,1))<=16)? chr(ord( substr($dec,strlen($dec)-1,1))):null));
2102 if(! function_exists('aes_encrypt')) {
2103 function aes_encrypt($val,$ky)
2105 $key="\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0";
2106 for($a=0;$a<strlen($ky);$a++)
2107 $key[$a%16]=chr(ord($key[$a%16]) ^ ord($ky[$a]));
2108 $mode=MCRYPT_MODE_ECB;
2109 $enc=MCRYPT_RIJNDAEL_128;
2110 $val=str_pad($val, (16*(floor(strlen($val) / 16)+(strlen($val) % 16==0?2:1))), chr(16-(strlen($val) % 16)));
2111 return mcrypt_encrypt($enc, $key, $val, $mode, mcrypt_create_iv( mcrypt_get_iv_size($enc, $mode), MCRYPT_DEV_URANDOM));
2119 * Replace naked text hyperlink with HTML formatted hyperlink
2123 if(! function_exists('linkify')) {
2124 function linkify($s) {
2125 $s = preg_replace("/(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\.\=\_\~\#\'\%\$\!\+]*)/", ' <a href="$1" target="external-link">$1</a>', $s);
2135 * Replaces text emoticons with graphical images
2137 * @Parameter: string $s
2142 if(! function_exists('smilies')) {
2143 function smilies($s) {
2147 array( '<3', '</3', '<\\3', ':-)', ';-)', ':-(', ':(', ':-P', ':-"', ':-x', ':-X', ':-D', '8-|', '8-O'),
2149 '<img src="' . $a->get_baseurl() . '/images/smiley-heart.gif" alt="<3" />',
2150 '<img src="' . $a->get_baseurl() . '/images/smiley-brokenheart.gif" alt="</3" />',
2151 '<img src="' . $a->get_baseurl() . '/images/smiley-brokenheart.gif" alt="<\\3" />',
2152 '<img src="' . $a->get_baseurl() . '/images/smiley-smile.gif" alt=":-)" />',
2153 '<img src="' . $a->get_baseurl() . '/images/smiley-wink.gif" alt=";-)" />',
2154 '<img src="' . $a->get_baseurl() . '/images/smiley-frown.gif" alt=":-(" />',
2155 '<img src="' . $a->get_baseurl() . '/images/smiley-frown.gif" alt=":(" />',
2156 '<img src="' . $a->get_baseurl() . '/images/smiley-tongue-out.gif" alt=":-P" />',
2157 '<img src="' . $a->get_baseurl() . '/images/smiley-kiss.gif" alt=":-\"" />',
2158 '<img src="' . $a->get_baseurl() . '/images/smiley-kiss.gif" alt=":-x" />',
2159 '<img src="' . $a->get_baseurl() . '/images/smiley-kiss.gif" alt=":-X" />',
2160 '<img src="' . $a->get_baseurl() . '/images/smiley-laughing.gif" alt=":-D" />',
2161 '<img src="' . $a->get_baseurl() . '/images/smiley-surprised.gif" alt="8-|" />',
2162 '<img src="' . $a->get_baseurl() . '/images/smiley-surprised.gif" alt="8-O" />'
2169 * Function : profile_load
2171 * @parameter string $nickname
2172 * @parameter int $profile
2174 * Summary: Loads a profile into the page sidebar.
2175 * The function requires a writeable copy of the main App structure, and the nickname
2176 * of a registered local account.
2178 * If the viewer is an authenticated remote viewer, the profile displayed is the
2179 * one that has been configured for his/her viewing in the Contact manager.
2180 * Passing a non-zero profile ID can also allow a preview of a selected profile
2183 * Profile information is placed in the App structure for later retrieval.
2184 * Honours the owner's chosen theme for display.
2188 if(! function_exists('profile_load')) {
2189 function profile_load(&$a, $nickname, $profile = 0) {
2191 $r = q("SELECT `profile-id` FROM `contact` WHERE `id` = %d LIMIT 1",
2192 intval($_SESSION['visitor_id']));
2194 $profile = $r[0]['profile-id'];
2200 $profile_int = intval($profile);
2201 $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `user`.* FROM `profile`
2202 LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid`
2203 WHERE `user`.`nickname` = '%s' AND `profile`.`id` = %d LIMIT 1",
2205 intval($profile_int)
2209 $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `user`.* FROM `profile`
2210 LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid`
2211 WHERE `user`.`nickname` = '%s' AND `profile`.`is-default` = 1 LIMIT 1",
2216 if(($r === false) || (! count($r))) {
2217 notice( t('No profile') . EOL );
2222 $a->profile = $r[0];
2225 $a->page['title'] = $a->profile['name'] . " @ " . $a->config['sitename'];
2226 $_SESSION['theme'] = $a->profile['theme'];
2228 if(! (x($a->page,'aside')))
2229 $a->page['aside'] = '';
2231 $a->page['aside'] .= profile_sidebar($a->profile);
2232 $a->page['aside'] .= contact_block();
2240 * Function: profile_sidebar
2242 * Formats a profile for display in the sidebar.
2243 * It is very difficult to templatise the HTML completely
2244 * because of all the conditional logic.
2246 * @parameter: array $profile
2248 * Returns HTML string stuitable for sidebar inclusion
2249 * Exceptions: Returns empty string if passed $profile is wrong type or not populated
2254 if(! function_exists('profile_sidebar')) {
2255 function profile_sidebar($profile) {
2261 if((! is_array($profile)) && (! count($profile)))
2264 call_hooks('profile_sidebar_enter', $profile);
2266 $fullname = '<div class="fn">' . $profile['name'] . '</div>';
2268 $pdesc = '<div class="title">' . $profile['pdesc'] . '</div>';
2272 $photo = '<div id="profile-photo-wrapper"><img class="photo" src="' . $profile['photo'] . '" alt="' . $profile['name'] . '" /></div>';
2274 $connect = (($profile['uid'] != local_user()) ? '<li><a id="dfrn-request-link" href="dfrn_request/' . $profile['nickname'] . '">' . t('Connect') . '</a></li>' : '');
2276 if((x($profile,'address') == 1)
2277 || (x($profile,'locality') == 1)
2278 || (x($profile,'region') == 1)
2279 || (x($profile,'postal-code') == 1)
2280 || (x($profile,'country-name') == 1))
2284 $location .= '<div class="location"><span class="location-label">' . t('Location:') . '</span> <div class="adr">';
2285 $location .= ((x($profile,'address') == 1) ? '<div class="street-address">' . $profile['address'] . '</div>' : '');
2286 $location .= (((x($profile,'locality') == 1) || (x($profile,'region') == 1) || (x($profile,'postal-code') == 1))
2287 ? '<span class="city-state-zip"><span class="locality">' . $profile['locality'] . '</span>'
2288 . ((x($profile['locality']) == 1) ? t(', ') : '')
2289 . '<span class="region">' . $profile['region'] . '</span>'
2290 . ' <span class="postal-code">' . $profile['postal-code'] . '</span></span>' : '');
2291 $location .= ((x($profile,'country-name') == 1) ? ' <span class="country-name">' . $profile['country-name'] . '</span>' : '');
2292 $location .= '</div></div><div class="profile-clear"></div>';
2296 $gender = ((x($profile,'gender') == 1) ? '<div class="mf"><span class="gender-label">' . t('Gender:') . '</span> <span class="x-gender">' . $profile['gender'] . '</span></div><div class="profile-clear"></div>' : '');
2298 $pubkey = ((x($profile,'pubkey') == 1) ? '<div class="key" style="display:none;">' . $profile['pubkey'] . '</div>' : '');
2300 $marital = ((x($profile,'marital') == 1) ? '<div class="marital"><span class="marital-label"><span class="heart">♥</span> ' . t('Status:') . ' </span><span class="marital-text">' . $profile['marital'] . '</span></div></div><div class="profile-clear"></div>' : '');
2302 $homepage = ((x($profile,'homepage') == 1) ? '<div class="homepage"><span class="homepage-label">' . t('Homepage:') . ' </span><span class="homepage-url">' . linkify($profile['homepage']) . '</span></div></div><div class="profile-clear"></div>' : '');
2304 $tpl = load_view_file('view/profile_vcard.tpl');
2306 $o .= replace_macros($tpl, array(
2307 '$fullname' => $fullname,
2311 '$connect' => $connect,
2312 '$location' => $location,
2313 '$gender' => $gender,
2314 '$pubkey' => $pubkey,
2315 '$marital' => $marital,
2316 '$homepage' => $homepage
2320 $arr = array('profile' => $profile, 'entry' => $o);
2322 call_hooks('profile_sidebar', $arr);
2328 if(! function_exists('register_hook')) {
2329 function register_hook($hook,$file,$function) {
2331 $r = q("SELECT * FROM `hook` WHERE `hook` = '%s' AND `file` = '%s' AND `function` = '%s' LIMIT 1",
2339 $r = q("INSERT INTO `hook` (`hook`, `file`, `function`) VALUES ( '%s', '%s', '%s' ) ",
2347 if(! function_exists('unregister_hook')) {
2348 function unregister_hook($hook,$file,$function) {
2350 $r = q("DELETE FROM `hook` WHERE `hook` = '%s' AND `file` = '%s' AND `function` = '%s' LIMIT 1",
2359 if(! function_exists('load_hooks')) {
2360 function load_hooks() {
2362 $a->hooks = array();
2363 $r = q("SELECT * FROM `hook` WHERE 1");
2365 foreach($r as $rr) {
2366 $a->hooks[] = array($rr['hook'], $rr['file'], $rr['function']);
2372 if(! function_exists('call_hooks')) {
2373 function call_hooks($name, &$data = null) {
2376 if(count($a->hooks)) {
2377 foreach($a->hooks as $hook) {
2378 if($hook[HOOK_HOOK] === $name) {
2379 @include_once($hook[HOOK_FILE]);
2380 if(function_exists($hook[HOOK_FUNCTION])) {
2381 $func = $hook[HOOK_FUNCTION];
2390 if(! function_exists('day_translate')) {
2391 function day_translate($s) {
2392 $ret = str_replace(array('Monday','Tuesday','Wednesday','Thursday','Friday','Saturday','Sunday'),
2393 array( t('Monday'), t('Tuesday'), t('Wednesday'), t('Thursday'), t('Friday'), t('Saturday'), t('Sunday')),
2396 $ret = str_replace(array('January','February','March','April','May','June','July','August','September','October','November','December'),
2397 array( t('January'), t('February'), t('March'), t('April'), t('May'), t('June'), t('July'), t('August'), t('September'), t('October'), t('November'), t('December')),
2403 if(! function_exists('get_birthdays')) {
2404 function get_birthdays() {
2412 $bd_format = get_config('system','birthday_format');
2414 $bd_format = 'g A l F d' ; // 8 AM Friday January 18
2416 $r = q("SELECT `event`.*, `event`.`id` AS `eid`, `contact`.* FROM `event`
2417 LEFT JOIN `contact` ON `contact`.`id` = `event`.`cid`
2418 WHERE `event`.`uid` = %d AND `type` = 'birthday' AND `start` < '%s' AND `finish` > '%s'
2419 ORDER BY `start` DESC ",
2420 intval(local_user()),
2421 dbesc(datetime_convert('UTC','UTC','now + 6 days')),
2422 dbesc(datetime_convert('UTC','UTC','now'))
2425 if($r && count($r)) {
2426 $o .= '<div id="birthday-wrapper"><div id="birthday-title">' . t('Birthdays this week:') . '</div>';
2427 $o .= '<div id="birthday-adjust">' . t("\x28Adjusted for local time\x29") . '</div>';
2428 $o .= '<div id="birthday-title-end"></div>';
2430 foreach($r as $rr) {
2431 $now = strtotime('now');
2432 $today = (((strtotime($rr['start'] . ' +00:00') < $now) && (strtotime($rr['finish'] . ' +00:00') > $now)) ? true : false);
2434 $o .= '<div class="birthday-list" id="birthday-' . $rr['eid'] . '"><a class="sparkle" href="'
2435 . $a->get_baseurl() . '/redir/' . $rr['cid'] . '">' . $rr['name'] . '</a> '
2436 . day_translate(datetime_convert('UTC', $a->timezone, $rr['start'], $bd_format)) . (($today) ? ' ' . t('[today]') : '')
2449 * Compare two URLs to see if they are the same, but ignore
2450 * slight but hopefully insignificant differences such as if one
2451 * is https and the other isn't, or if one is www.something and
2452 * the other isn't - and also ignore case differences.
2454 * Return true if the URLs match, otherwise false.
2458 if(! function_exists('link_compare')) {
2459 function link_compare($a,$b) {
2460 $a1 = str_replace(array('https:','//www.'), array('http:','//'), $a);
2461 $b1 = str_replace(array('https:','//www.'), array('http:','//'), $b);
2462 if(strcasecmp($a1,$b1) === 0)
2468 if(! function_exists('prepare_body')) {
2469 function prepare_body($item) {
2470 return prepare_text($item['body']);
2473 if(! function_exists('prepare_text')) {
2474 function prepare_text($text) {
2476 require_once('include/bbcode.php');
2478 $s = smilies(bbcode($text));
2485 * Wrap calls to proc_close(proc_open()) and call hook
2486 * so plugins can take part in process :)
2489 * $cmd program to run
2490 * next args are passed as $cmd command line
2492 * e.g.: proc_run("ls","-la","/tmp");
2494 * $cmd and string args are surrounded with ""
2497 if(! function_exists('proc_run')) {
2498 function proc_run($cmd){
2502 $args = func_get_args();
2503 call_hooks("proc_run", $args);
2505 if(count($args) && $args[0] === 'php')
2506 $args[0] = ((x($a->config,'php_path')) && (strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
2508 foreach ($args as $arg){
2509 $arg = escapeshellarg($arg);
2511 $cmdline = implode($args," ");
2512 proc_close(proc_open($cmdline." &",array(),$foo));
2516 * Return full URL to theme which is currently in effect.
2517 * Provide a sane default if nothing is chosen or the specified theme does not exist.
2520 if(! function_exists('current_theme_url')) {
2521 function current_theme_url() {
2523 $app_base_themes = array('duepuntozero', 'loozah');
2527 $system_theme = ((isset($a->config['system']['theme'])) ? $a->config['system']['theme'] : '');
2528 $theme_name = ((x($_SESSION,'theme')) ? $_SESSION['theme'] : $system_theme);
2530 if($theme_name && file_exists('view/theme/' . $theme_name . '/style.css'))
2531 return($a->get_baseurl() . '/view/theme/' . $theme_name . '/style.css');
2533 foreach($app_base_themes as $t) {
2534 if(file_exists('view/theme/' . $t . '/style.css'))
2535 return($a->get_baseurl() . '/view/theme/' . $t . '/style.css');
2538 $fallback = glob('view/theme/*/style.css');
2539 if(count($fallback))
2540 return($a->get_baseurl() . $fallback[0]);
2545 if(! function_exists('feed_birthday')) {
2546 function feed_birthday($uid,$tz) {
2550 * Determine the next birthday, but only if the birthday is published
2551 * in the default profile. We _could_ also look for a private profile that the
2552 * recipient can see, but somebody could get mad at us if they start getting
2553 * public birthday greetings when they haven't made this info public.
2555 * Assuming we are able to publish this info, we are then going to convert
2556 * the start time from the owner's timezone to UTC.
2558 * This will potentially solve the problem found with some social networks
2559 * where birthdays are converted to the viewer's timezone and salutations from
2560 * elsewhere in the world show up on the wrong day. We will convert it to the
2561 * viewer's timezone also, but first we are going to convert it from the birthday
2562 * person's timezone to GMT - so the viewer may find the birthday starting at
2563 * 6:00PM the day before, but that will correspond to midnight to the birthday person.
2569 $p = q("SELECT `dob` FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
2573 if($p && count($p)) {
2574 $tmp_dob = substr($p[0]['dob'],5);
2575 if(intval($tmp_dob)) {
2576 $y = datetime_convert($tz,$tz,'now','Y');
2577 $bd = $y . '-' . $tmp_dob . ' 00:00';
2578 $t_dob = strtotime($bd);
2579 $now = strtotime(datetime_convert($tz,$tz,'now'));
2581 $bd = $y + 1 . '-' . $tmp_dob . ' 00:00';
2582 $birthday = datetime_convert($tz,'UTC',$bd,ATOM_TIME);
2590 * return atom link elements for all of our hubs
2593 if(! function_exists('feed_hublinks')) {
2594 function feed_hublinks() {
2596 $hub = get_config('system','huburl');
2600 $hubs = explode(',', $hub);
2602 foreach($hubs as $h) {
2606 $hubxml .= '<link rel="hub" href="' . xmlify($h) . '" />' . "\n" ;
2613 /* return atom link elements for salmon endpoints */
2615 if(! function_exists('feed_salmonlinks')) {
2616 function feed_salmonlinks($nick) {
2620 $salmon = '<link rel="salmon" href="' . xmlify($a->get_baseurl() . '/salmon/' . $nick) . '" />' . "\n" ;
2622 // old style links that status.net still needed as of 12/2010
2624 $salmon .= ' <link rel="http://salmon-protocol.org/ns/salmon-replies" href="' . xmlify($a->get_baseurl() . '/salmon/' . $nick) . '" />' . "\n" ;
2625 $salmon .= ' <link rel="http://salmon-protocol.org/ns/salmon-mention" href="' . xmlify($a->get_baseurl() . '/salmon/' . $nick) . '" />' . "\n" ;
2629 if(! function_exists('get_plink')) {
2630 function get_plink($item) {
2632 $plink = (((x($item,'plink')) && (! $item['private'])) ? '<div class="wall-item-links-wrapper"><a href="'
2633 . $item['plink'] . '" title="' . t('link to source') . '" target="external-link" ><img src="' . $a->get_baseurl() . '/images/remote-link.gif" alt="' . t('link to source') . '" /></a></div>' : '');
2637 if(! function_exists('unamp')) {
2638 function unamp($s) {
2639 return str_replace('&', '&', $s);
2642 if(! function_exists('extract_item_authors')) {
2643 function extract_item_authors($arr,$uid) {
2645 if((! $uid) || (! is_array($arr)) || (! count($arr)))
2648 foreach($arr as $rr) {
2649 if(! in_array("'" . dbesc($rr['author-link']) . "'",$urls))
2650 $urls[] = "'" . dbesc($rr['author-link']) . "'";
2653 // pre-quoted, don't put quotes on %s
2655 $r = q("SELECT `id`,`url` FROM `contact` WHERE `uid` = %d AND `url` IN ( %s ) AND `network` = 'dfrn' AND `self` = 0 AND `blocked` = 0 ",
2662 $ret[$rr['url']] = $rr['id'];