2010-07-02 01:48:07 +02:00
|
|
|
<?php
|
2015-07-16 10:09:59 +02:00
|
|
|
require_once('include/diaspora.php');
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2010-10-27 04:01:16 +02:00
|
|
|
function contact_profile_assign($current,$foreign_net) {
|
2010-07-02 01:48:07 +02:00
|
|
|
|
|
|
|
$o = '';
|
2010-10-27 04:01:16 +02:00
|
|
|
|
|
|
|
$disabled = (($foreign_net) ? ' disabled="true" ' : '');
|
|
|
|
|
2016-07-26 09:09:40 +02:00
|
|
|
$o .= "<select id=\"contact-profile-selector\" class=\"form-control\" $disabled name=\"profile-assign\" />\r\n";
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2010-07-11 08:03:54 +02:00
|
|
|
$r = q("SELECT `id`, `profile-name` FROM `profile` WHERE `uid` = %d",
|
2016-07-26 09:09:40 +02:00
|
|
|
intval($_SESSION['uid']));
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2016-12-14 09:42:36 +01:00
|
|
|
if (dbm::is_result($r)) {
|
2016-12-20 21:13:50 +01:00
|
|
|
foreach ($r as $rr) {
|
2010-07-11 08:03:54 +02:00
|
|
|
$selected = (($rr['id'] == $current) ? " selected=\"selected\" " : "");
|
|
|
|
$o .= "<option value=\"{$rr['id']}\" $selected >{$rr['profile-name']}</option>\r\n";
|
2010-07-02 01:48:07 +02:00
|
|
|
}
|
|
|
|
}
|
2010-07-11 08:03:54 +02:00
|
|
|
$o .= "</select>\r\n";
|
2010-07-02 01:48:07 +02:00
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
2010-07-11 08:03:54 +02:00
|
|
|
|
|
|
|
function contact_reputation($current) {
|
|
|
|
|
|
|
|
$o = '';
|
|
|
|
$o .= "<select id=\"contact-reputation-selector\" name=\"reputation\" />\r\n";
|
|
|
|
|
|
|
|
$rep = array(
|
2010-08-01 14:46:51 +02:00
|
|
|
0 => t('Unknown | Not categorised'),
|
|
|
|
1 => t('Block immediately'),
|
|
|
|
2 => t('Shady, spammer, self-marketer'),
|
|
|
|
3 => t('Known to me, but no opinion'),
|
|
|
|
4 => t('OK, probably harmless'),
|
|
|
|
5 => t('Reputable, has my trust')
|
2010-07-11 08:03:54 +02:00
|
|
|
);
|
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
foreach($rep as $k => $v) {
|
2010-07-11 08:03:54 +02:00
|
|
|
$selected = (($k == $current) ? " selected=\"selected\" " : "");
|
|
|
|
$o .= "<option value=\"$k\" $selected >$v</option>\r\n";
|
|
|
|
}
|
|
|
|
$o .= "</select>\r\n";
|
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-08-26 03:12:42 +02:00
|
|
|
function contact_poll_interval($current, $disabled = false) {
|
2010-07-11 08:03:54 +02:00
|
|
|
|
2011-08-26 03:12:42 +02:00
|
|
|
$dis = (($disabled) ? ' disabled="disabled" ' : '');
|
2010-08-01 14:46:51 +02:00
|
|
|
$o = '';
|
2011-08-26 03:12:42 +02:00
|
|
|
$o .= "<select id=\"contact-poll-interval\" name=\"poll\" $dis />" . "\r\n";
|
2010-08-01 14:46:51 +02:00
|
|
|
|
|
|
|
$rep = array(
|
|
|
|
0 => t('Frequently'),
|
|
|
|
1 => t('Hourly'),
|
|
|
|
2 => t('Twice daily'),
|
|
|
|
3 => t('Daily'),
|
|
|
|
4 => t('Weekly'),
|
|
|
|
5 => t('Monthly')
|
|
|
|
);
|
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
foreach($rep as $k => $v) {
|
2010-08-01 14:46:51 +02:00
|
|
|
$selected = (($k == $current) ? " selected=\"selected\" " : "");
|
|
|
|
$o .= "<option value=\"$k\" $selected >$v</option>\r\n";
|
|
|
|
}
|
|
|
|
$o .= "</select>\r\n";
|
|
|
|
return $o;
|
|
|
|
}
|
2011-08-26 03:12:42 +02:00
|
|
|
|
|
|
|
|
2015-07-16 10:09:59 +02:00
|
|
|
function network_to_name($s, $profile = "") {
|
2011-08-26 03:12:42 +02:00
|
|
|
|
2012-01-08 11:08:20 +01:00
|
|
|
$nets = array(
|
|
|
|
NETWORK_DFRN => t('Friendica'),
|
|
|
|
NETWORK_OSTATUS => t('OStatus'),
|
|
|
|
NETWORK_FEED => t('RSS/Atom'),
|
|
|
|
NETWORK_MAIL => t('Email'),
|
|
|
|
NETWORK_DIASPORA => t('Diaspora'),
|
|
|
|
NETWORK_FACEBOOK => t('Facebook'),
|
|
|
|
NETWORK_ZOT => t('Zot!'),
|
|
|
|
NETWORK_LINKEDIN => t('LinkedIn'),
|
|
|
|
NETWORK_XMPP => t('XMPP/IM'),
|
|
|
|
NETWORK_MYSPACE => t('MySpace'),
|
2012-11-22 17:14:22 +01:00
|
|
|
NETWORK_MAIL2 => t('Email'),
|
2013-08-28 08:56:48 +02:00
|
|
|
NETWORK_GPLUS => t('Google+'),
|
2013-10-12 08:29:39 +02:00
|
|
|
NETWORK_PUMPIO => t('pump.io'),
|
2014-04-04 10:40:46 +02:00
|
|
|
NETWORK_TWITTER => t('Twitter'),
|
|
|
|
NETWORK_DIASPORA2 => t('Diaspora Connector'),
|
2017-04-02 09:53:55 +02:00
|
|
|
NETWORK_STATUSNET => t('GNU Social Connector'),
|
2017-02-02 07:06:23 +01:00
|
|
|
NETWORK_PNUT => t('pnut'),
|
2014-06-05 17:44:35 +02:00
|
|
|
NETWORK_APPNET => t('App.net')
|
2012-01-08 11:08:20 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
call_hooks('network_to_name', $nets);
|
|
|
|
|
|
|
|
$search = array_keys($nets);
|
|
|
|
$replace = array_values($nets);
|
2011-08-26 03:12:42 +02:00
|
|
|
|
2017-04-02 09:53:55 +02:00
|
|
|
$networkname = str_replace($search, $replace, $s);
|
2016-02-14 15:05:43 +01:00
|
|
|
|
2017-04-02 14:37:22 +02:00
|
|
|
if ((in_array($s, array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS))) AND ($profile != "")) {
|
2016-02-14 15:05:43 +01:00
|
|
|
$r = q("SELECT `gserver`.`platform` FROM `gcontact`
|
|
|
|
INNER JOIN `gserver` ON `gserver`.`nurl` = `gcontact`.`server_url`
|
|
|
|
WHERE `gcontact`.`nurl` = '%s' AND `platform` != ''",
|
|
|
|
dbesc(normalise_link($profile)));
|
2017-04-02 09:53:55 +02:00
|
|
|
if (dbm::is_result($r)) {
|
2016-02-14 15:05:43 +01:00
|
|
|
$networkname = $r[0]["platform"];
|
2017-04-02 09:53:55 +02:00
|
|
|
}
|
2016-02-14 15:05:43 +01:00
|
|
|
}
|
2011-08-26 03:12:42 +02:00
|
|
|
|
2015-07-16 10:09:59 +02:00
|
|
|
return $networkname;
|
2011-08-26 03:12:42 +02:00
|
|
|
}
|