2011-10-12 04:27:58 +02:00
|
|
|
<?php
|
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2017-08-26 08:04:21 +02:00
|
|
|
use Friendica\Core\System;
|
2017-07-06 23:31:36 +02:00
|
|
|
use Friendica\Core\Config;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2017-08-15 12:10:09 +02:00
|
|
|
require_once 'include/contact_selectors.php';
|
|
|
|
|
2014-08-25 14:09:56 +02:00
|
|
|
function follow_widget($value = "") {
|
2011-10-12 04:27:58 +02:00
|
|
|
|
2017-04-08 19:44:42 +02:00
|
|
|
return replace_macros(get_markup_template('follow.tpl'), array(
|
2011-10-12 04:27:58 +02:00
|
|
|
'$connect' => t('Add New Contact'),
|
|
|
|
'$desc' => t('Enter address or web location'),
|
|
|
|
'$hint' => t('Example: bob@example.com, http://example.com/barbara'),
|
2014-08-25 14:09:56 +02:00
|
|
|
'$value' => $value,
|
2011-10-12 04:27:58 +02:00
|
|
|
'$follow' => t('Connect')
|
|
|
|
));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function findpeople_widget() {
|
2017-04-08 19:43:01 +02:00
|
|
|
require_once 'include/Contact.php';
|
2011-10-12 04:27:58 +02:00
|
|
|
|
|
|
|
$a = get_app();
|
2017-07-06 23:33:30 +02:00
|
|
|
$global_dir = Config::get('system', 'directory');
|
2011-10-12 04:27:58 +02:00
|
|
|
|
2017-04-08 19:48:57 +02:00
|
|
|
if (get_config('system', 'invitation_only')) {
|
2017-04-08 19:43:01 +02:00
|
|
|
$x = get_pconfig(local_user(), 'system', 'invites_remaining');
|
2017-04-04 19:46:56 +02:00
|
|
|
if ($x || is_site_admin()) {
|
2015-11-29 13:42:31 +01:00
|
|
|
$a->page['aside'] .= '<div class="side-link" id="side-invite-remain">'
|
2017-04-08 19:48:57 +02:00
|
|
|
. sprintf( tt('%d invitation available', '%d invitations available', $x), $x)
|
2011-10-12 04:27:58 +02:00
|
|
|
. '</div>' . $inv;
|
|
|
|
}
|
|
|
|
}
|
2015-11-29 13:42:31 +01:00
|
|
|
|
2017-04-08 19:44:42 +02:00
|
|
|
return replace_macros(get_markup_template('peoplefind.tpl'), array(
|
2011-10-12 04:27:58 +02:00
|
|
|
'$findpeople' => t('Find People'),
|
|
|
|
'$desc' => t('Enter name or interest'),
|
|
|
|
'$label' => t('Connect/Follow'),
|
|
|
|
'$hint' => t('Examples: Robert Morgenstein, Fishing'),
|
|
|
|
'$findthem' => t('Find'),
|
2011-11-02 05:27:11 +01:00
|
|
|
'$suggest' => t('Friend Suggestions'),
|
2011-10-12 04:27:58 +02:00
|
|
|
'$similar' => t('Similar Interests'),
|
2012-04-11 05:50:31 +02:00
|
|
|
'$random' => t('Random Profile'),
|
2017-07-06 20:19:58 +02:00
|
|
|
'$inv' => t('Invite Friends'),
|
2017-07-06 23:31:36 +02:00
|
|
|
'$directory' => t('View Global Directory'),
|
2017-07-06 23:33:30 +02:00
|
|
|
'$global_dir' => $global_dir
|
2011-10-12 04:27:58 +02:00
|
|
|
));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-11-29 13:37:24 +01:00
|
|
|
function unavailable_networks() {
|
|
|
|
$network_filter = "";
|
|
|
|
|
|
|
|
$networks = array();
|
|
|
|
|
2017-04-08 19:43:01 +02:00
|
|
|
if (!plugin_enabled("appnet")) {
|
2015-11-29 13:37:24 +01:00
|
|
|
$networks[] = NETWORK_APPNET;
|
2017-04-08 19:43:01 +02:00
|
|
|
}
|
2015-11-29 13:37:24 +01:00
|
|
|
|
2017-06-08 04:00:59 +02:00
|
|
|
if (!plugin_enabled("fbpost") && !plugin_enabled("facebook")) {
|
2015-11-29 13:37:24 +01:00
|
|
|
$networks[] = NETWORK_FACEBOOK;
|
2017-04-08 19:43:01 +02:00
|
|
|
}
|
2015-11-29 13:37:24 +01:00
|
|
|
|
2017-04-08 19:43:01 +02:00
|
|
|
if (!plugin_enabled("statusnet")) {
|
2015-11-29 13:37:24 +01:00
|
|
|
$networks[] = NETWORK_STATUSNET;
|
2017-04-08 19:43:01 +02:00
|
|
|
}
|
2015-11-29 13:37:24 +01:00
|
|
|
|
2017-04-08 19:43:01 +02:00
|
|
|
if (!plugin_enabled("pumpio")) {
|
2015-11-29 13:37:24 +01:00
|
|
|
$networks[] = NETWORK_PUMPIO;
|
2017-04-08 19:43:01 +02:00
|
|
|
}
|
2015-11-29 13:37:24 +01:00
|
|
|
|
2017-04-08 19:43:01 +02:00
|
|
|
if (!plugin_enabled("twitter")) {
|
2015-11-29 13:37:24 +01:00
|
|
|
$networks[] = NETWORK_TWITTER;
|
2017-04-08 19:43:01 +02:00
|
|
|
}
|
2015-11-29 13:37:24 +01:00
|
|
|
|
2017-04-08 19:43:01 +02:00
|
|
|
if (get_config("system", "ostatus_disabled")) {
|
2015-11-29 13:37:24 +01:00
|
|
|
$networks[] = NETWORK_OSTATUS;
|
2017-04-08 19:43:01 +02:00
|
|
|
}
|
2015-11-29 13:37:24 +01:00
|
|
|
|
2017-04-08 19:43:01 +02:00
|
|
|
if (!get_config("system", "diaspora_enabled")) {
|
2015-11-29 13:37:24 +01:00
|
|
|
$networks[] = NETWORK_DIASPORA;
|
2017-04-08 19:43:01 +02:00
|
|
|
}
|
2015-11-29 13:37:24 +01:00
|
|
|
|
2017-04-08 19:43:01 +02:00
|
|
|
if (!plugin_enabled("pnut")) {
|
2017-02-02 07:06:23 +01:00
|
|
|
$networks[] = NETWORK_PNUT;
|
2017-04-08 19:43:01 +02:00
|
|
|
}
|
2017-02-02 07:06:23 +01:00
|
|
|
|
2017-04-08 19:43:01 +02:00
|
|
|
if (!sizeof($networks)) {
|
2015-11-29 13:37:24 +01:00
|
|
|
return "";
|
2017-04-08 19:43:01 +02:00
|
|
|
}
|
2015-11-29 13:37:24 +01:00
|
|
|
|
|
|
|
$network_filter = implode("','", $networks);
|
|
|
|
|
|
|
|
$network_filter = "AND `network` NOT IN ('$network_filter')";
|
|
|
|
|
|
|
|
return $network_filter;
|
|
|
|
}
|
2011-11-02 05:27:11 +01:00
|
|
|
|
2017-04-08 19:43:01 +02:00
|
|
|
function networks_widget($baseurl, $selected = '') {
|
2012-01-06 05:40:48 +01:00
|
|
|
|
|
|
|
$a = get_app();
|
|
|
|
|
2016-12-20 11:56:34 +01:00
|
|
|
if (!local_user()) {
|
2012-01-06 05:40:48 +01:00
|
|
|
return '';
|
2016-12-20 11:56:34 +01:00
|
|
|
}
|
2012-01-06 05:40:48 +01:00
|
|
|
|
2017-04-08 19:48:57 +02:00
|
|
|
if (!feature_enabled(local_user(), 'networks')) {
|
2012-11-22 17:14:22 +01:00
|
|
|
return '';
|
2016-12-20 11:56:34 +01:00
|
|
|
}
|
2014-06-15 18:51:46 +02:00
|
|
|
|
2015-11-29 13:37:24 +01:00
|
|
|
$extra_sql = unavailable_networks();
|
|
|
|
|
2017-08-11 21:26:08 +02:00
|
|
|
$r = dba::p("SELECT DISTINCT(`network`) FROM `contact` WHERE `uid` = ? AND `network` != '' $extra_sql ORDER BY `network`",
|
|
|
|
local_user()
|
2012-01-06 05:40:48 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
$nets = array();
|
2017-08-15 12:10:09 +02:00
|
|
|
while ($rr = dba::fetch($r)) {
|
|
|
|
/// @TODO If 'network' is not there, this triggers an E_NOTICE
|
|
|
|
if ($rr['network']) {
|
|
|
|
$nets[] = array('ref' => $rr['network'], 'name' => network_to_name($rr['network']), 'selected' => (($selected == $rr['network']) ? 'selected' : '' ));
|
2012-01-06 05:40:48 +01:00
|
|
|
}
|
|
|
|
}
|
2017-08-15 12:10:09 +02:00
|
|
|
dba::close($r);
|
2012-01-06 05:40:48 +01:00
|
|
|
|
2017-04-08 19:43:01 +02:00
|
|
|
if (count($nets) < 2) {
|
2012-01-06 09:23:05 +01:00
|
|
|
return '';
|
2017-04-08 19:43:01 +02:00
|
|
|
}
|
2012-01-06 09:23:05 +01:00
|
|
|
|
2017-04-08 19:44:42 +02:00
|
|
|
return replace_macros(get_markup_template('nets.tpl'), array(
|
2012-01-06 05:40:48 +01:00
|
|
|
'$title' => t('Networks'),
|
|
|
|
'$desc' => '',
|
|
|
|
'$sel_all' => (($selected == '') ? 'selected' : ''),
|
|
|
|
'$all' => t('All Networks'),
|
|
|
|
'$nets' => $nets,
|
|
|
|
'$base' => $baseurl,
|
|
|
|
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2017-04-08 19:43:01 +02:00
|
|
|
function fileas_widget($baseurl, $selected = '') {
|
2016-12-20 11:56:34 +01:00
|
|
|
if (! local_user()) {
|
2012-03-14 02:13:03 +01:00
|
|
|
return '';
|
2016-12-20 11:56:34 +01:00
|
|
|
}
|
2012-03-14 02:13:03 +01:00
|
|
|
|
2017-04-08 19:48:57 +02:00
|
|
|
if (! feature_enabled(local_user(), 'filing')) {
|
2012-11-22 17:14:22 +01:00
|
|
|
return '';
|
2016-12-20 11:56:34 +01:00
|
|
|
}
|
2012-11-22 17:14:22 +01:00
|
|
|
|
2017-04-08 19:48:57 +02:00
|
|
|
$saved = get_pconfig(local_user(), 'system', 'filetags');
|
2016-12-20 11:56:34 +01:00
|
|
|
if (! strlen($saved)) {
|
2012-03-14 02:13:03 +01:00
|
|
|
return;
|
2016-12-20 11:56:34 +01:00
|
|
|
}
|
2012-03-14 02:13:03 +01:00
|
|
|
|
|
|
|
$matches = false;
|
|
|
|
$terms = array();
|
2017-04-08 19:44:42 +02:00
|
|
|
$cnt = preg_match_all('/\[(.*?)\]/', $saved, $matches, PREG_SET_ORDER);
|
2016-12-19 14:26:13 +01:00
|
|
|
if ($cnt) {
|
2017-04-04 19:46:56 +02:00
|
|
|
foreach ($matches as $mtch) {
|
2012-04-01 00:25:17 +02:00
|
|
|
$unescaped = xmlify(file_tag_decode($mtch[1]));
|
2017-04-08 19:48:57 +02:00
|
|
|
$terms[] = array('name' => $unescaped, 'selected' => (($selected == $unescaped) ? 'selected' : ''));
|
2012-03-14 02:13:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-08 19:44:42 +02:00
|
|
|
return replace_macros(get_markup_template('fileas_widget.tpl'), array(
|
2012-03-30 11:42:36 +02:00
|
|
|
'$title' => t('Saved Folders'),
|
2012-03-14 02:13:03 +01:00
|
|
|
'$desc' => '',
|
|
|
|
'$sel_all' => (($selected == '') ? 'selected' : ''),
|
|
|
|
'$all' => t('Everything'),
|
|
|
|
'$terms' => $terms,
|
|
|
|
'$base' => $baseurl,
|
|
|
|
|
|
|
|
));
|
|
|
|
}
|
2012-01-06 05:40:48 +01:00
|
|
|
|
2017-04-08 19:43:01 +02:00
|
|
|
function categories_widget($baseurl, $selected = '') {
|
2012-11-22 17:14:22 +01:00
|
|
|
|
2012-04-02 03:28:31 +02:00
|
|
|
$a = get_app();
|
|
|
|
|
2017-04-08 19:48:57 +02:00
|
|
|
if (! feature_enabled($a->profile['profile_uid'], 'categories')) {
|
2012-11-22 17:14:22 +01:00
|
|
|
return '';
|
2016-12-19 14:26:13 +01:00
|
|
|
}
|
2012-11-22 17:14:22 +01:00
|
|
|
|
2017-04-08 19:48:57 +02:00
|
|
|
$saved = get_pconfig($a->profile['profile_uid'], 'system', 'filetags');
|
2016-12-19 14:26:13 +01:00
|
|
|
if (! strlen($saved)) {
|
2012-04-02 03:28:31 +02:00
|
|
|
return;
|
2016-12-19 14:26:13 +01:00
|
|
|
}
|
2012-04-02 03:28:31 +02:00
|
|
|
|
|
|
|
$matches = false;
|
|
|
|
$terms = array();
|
2017-04-08 19:48:57 +02:00
|
|
|
$cnt = preg_match_all('/<(.*?)>/', $saved, $matches, PREG_SET_ORDER);
|
|
|
|
|
|
|
|
if ($cnt) {
|
|
|
|
foreach ($matches as $mtch) {
|
|
|
|
$unescaped = xmlify(file_tag_decode($mtch[1]));
|
|
|
|
$terms[] = array('name' => $unescaped, 'selected' => (($selected == $unescaped) ? 'selected' : ''));
|
2012-04-02 03:28:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-08 19:44:42 +02:00
|
|
|
return replace_macros(get_markup_template('categories_widget.tpl'), array(
|
2012-04-02 03:28:31 +02:00
|
|
|
'$title' => t('Categories'),
|
|
|
|
'$desc' => '',
|
|
|
|
'$sel_all' => (($selected == '') ? 'selected' : ''),
|
|
|
|
'$all' => t('Everything'),
|
|
|
|
'$terms' => $terms,
|
|
|
|
'$base' => $baseurl,
|
|
|
|
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2012-05-02 04:16:18 +02:00
|
|
|
function common_friends_visitor_widget($profile_uid) {
|
|
|
|
|
|
|
|
$a = get_app();
|
|
|
|
|
2017-04-08 19:50:29 +02:00
|
|
|
if (local_user() == $profile_uid) {
|
2012-05-02 04:16:18 +02:00
|
|
|
return;
|
2017-04-08 19:50:29 +02:00
|
|
|
}
|
2012-05-02 04:16:18 +02:00
|
|
|
|
|
|
|
$cid = $zcid = 0;
|
|
|
|
|
2017-04-04 19:46:56 +02:00
|
|
|
if (is_array($_SESSION['remote'])) {
|
|
|
|
foreach ($_SESSION['remote'] as $visitor) {
|
|
|
|
if ($visitor['uid'] == $profile_uid) {
|
2012-09-05 07:50:28 +02:00
|
|
|
$cid = $visitor['cid'];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-04 19:46:56 +02:00
|
|
|
if (! $cid) {
|
|
|
|
if (get_my_url()) {
|
2017-08-11 21:26:08 +02:00
|
|
|
$r = dba::select('contact', array('id'),
|
|
|
|
array('nurl' => normalise_link(get_my_url()), 'uid' => $profile_uid), array('limit' => 1));
|
2017-04-04 19:46:56 +02:00
|
|
|
if (dbm::is_result($r)) {
|
2017-08-11 21:26:08 +02:00
|
|
|
$cid = $r['id'];
|
2017-04-04 19:46:56 +02:00
|
|
|
} else {
|
2017-08-11 21:26:08 +02:00
|
|
|
$r = dba::select('gcontact', array('id'), array('nurl' => normalise_link(get_my_url())), array('limit' => 1));
|
2016-12-14 09:42:36 +01:00
|
|
|
if (dbm::is_result($r))
|
2017-08-11 21:26:08 +02:00
|
|
|
$zcid = $r['id'];
|
2012-05-02 09:44:37 +02:00
|
|
|
}
|
2012-05-02 04:16:18 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-04 19:46:56 +02:00
|
|
|
if ($cid == 0 && $zcid == 0) {
|
2015-11-29 13:42:31 +01:00
|
|
|
return;
|
2017-04-04 19:46:56 +02:00
|
|
|
}
|
2012-05-02 04:16:18 +02:00
|
|
|
|
2017-04-08 19:43:01 +02:00
|
|
|
require_once 'include/socgraph.php';
|
2012-05-02 04:16:18 +02:00
|
|
|
|
2017-04-04 19:46:56 +02:00
|
|
|
if ($cid) {
|
2017-04-08 19:43:01 +02:00
|
|
|
$t = count_common_friends($profile_uid, $cid);
|
2017-04-04 19:46:56 +02:00
|
|
|
} else {
|
2017-04-08 19:43:01 +02:00
|
|
|
$t = count_common_friends_zcid($profile_uid, $zcid);
|
2017-04-04 19:46:56 +02:00
|
|
|
}
|
|
|
|
if (! $t) {
|
2012-05-02 04:16:18 +02:00
|
|
|
return;
|
2017-04-04 19:46:56 +02:00
|
|
|
}
|
2012-05-02 04:16:18 +02:00
|
|
|
|
2017-04-04 19:46:56 +02:00
|
|
|
if ($cid) {
|
2017-04-08 19:43:01 +02:00
|
|
|
$r = common_friends($profile_uid, $cid, 0, 5, true);
|
2017-04-04 19:46:56 +02:00
|
|
|
} else {
|
2017-04-08 19:43:01 +02:00
|
|
|
$r = common_friends_zcid($profile_uid, $zcid, 0, 5, true);
|
2017-04-04 19:46:56 +02:00
|
|
|
}
|
2012-05-02 04:16:18 +02:00
|
|
|
|
|
|
|
return replace_macros(get_markup_template('remote_friends_common.tpl'), array(
|
2012-05-04 10:46:36 +02:00
|
|
|
'$desc' => sprintf( tt("%d contact in common", "%d contacts in common", $t), $t),
|
2017-08-26 09:32:10 +02:00
|
|
|
'$base' => System::baseUrl(),
|
2012-05-04 10:46:36 +02:00
|
|
|
'$uid' => $profile_uid,
|
2012-05-09 02:40:56 +02:00
|
|
|
'$cid' => (($cid) ? $cid : '0'),
|
|
|
|
'$linkmore' => (($t > 5) ? 'true' : ''),
|
2012-05-04 10:46:36 +02:00
|
|
|
'$more' => t('show more'),
|
2012-05-02 04:20:41 +02:00
|
|
|
'$items' => $r
|
2015-11-29 13:42:31 +01:00
|
|
|
));
|
2012-05-02 04:16:18 +02:00
|
|
|
|
2012-11-22 17:14:22 +01:00
|
|
|
};
|