Merge pull request #745 from tobiasd/20181011-diaspora_getHostName
Adoption of get_hostname changes for diaspora bridge
This commit is contained in:
commit
cb4241af69
|
@ -57,7 +57,7 @@ function diaspora_jot_nets(App $a, &$b)
|
|||
}
|
||||
|
||||
function diaspora_queue_hook(App $a, &$b) {
|
||||
$hostname = $a->get_hostname();
|
||||
$hostname = $a->getHostName();
|
||||
|
||||
$qi = q("SELECT * FROM `queue` WHERE `network` = '%s'",
|
||||
DBA::escape(Protocol::DIASPORA2)
|
||||
|
@ -287,7 +287,7 @@ function diaspora_post_local(App $a, array &$b)
|
|||
|
||||
function diaspora_send(App $a, array &$b)
|
||||
{
|
||||
$hostname = $a->get_hostname();
|
||||
$hostname = $a->getHostName();
|
||||
|
||||
logger('diaspora_send: invoked');
|
||||
|
||||
|
|
|
@ -181,7 +181,7 @@ function libertree_send(&$a,&$b) {
|
|||
$ltree_api_token = PConfig::get($b['uid'],'libertree','libertree_api_token');
|
||||
$ltree_url = PConfig::get($b['uid'],'libertree','libertree_url');
|
||||
$ltree_blog = "$ltree_url/api/v1/posts/create/?token=$ltree_api_token";
|
||||
$ltree_source = $a->get_hostname();
|
||||
$ltree_source = $a->getHostName();
|
||||
|
||||
if ($b['app'] != "")
|
||||
$ltree_source .= " (".$b['app'].")";
|
||||
|
|
|
@ -91,7 +91,7 @@ function mailstream_addon_admin_post ($a) {
|
|||
|
||||
function mailstream_generate_id($a, $uri) {
|
||||
// http://www.jwz.org/doc/mid.html
|
||||
$host = $a->get_hostname();
|
||||
$host = $a->getHostName();
|
||||
$resource = hash('md5', $uri);
|
||||
$message_id = "<" . $resource . "@" . $host . ">";
|
||||
logger('mailstream: Generated message ID ' . $message_id . ' for URI ' . $uri, LOGGER_DEBUG);
|
||||
|
|
|
@ -53,7 +53,7 @@ function notifyall_post(App $a)
|
|||
}
|
||||
|
||||
if (! x(Config::get('config', 'sender_email'))) {
|
||||
$sender_email = 'noreply@' . $a->get_hostname();
|
||||
$sender_email = 'noreply@' . $a->getHostName();
|
||||
} else {
|
||||
$sender_email = Config::get('config', 'sender_email');
|
||||
}
|
||||
|
|
|
@ -102,7 +102,7 @@ function pumpio_registerclient(App $a, $host)
|
|||
$application_name = Config::get('pumpio', 'application_name');
|
||||
|
||||
if ($application_name == "") {
|
||||
$application_name = $a->get_hostname();
|
||||
$application_name = $a->getHostName();
|
||||
}
|
||||
|
||||
$adminlist = explode(",", str_replace(" ", "", Config::get('config', 'admin_email')));
|
||||
|
@ -749,7 +749,7 @@ function pumpio_fetchtimeline(App $a, $uid)
|
|||
$application_name = Config::get('pumpio', 'application_name');
|
||||
}
|
||||
if ($application_name == "") {
|
||||
$application_name = $a->get_hostname();
|
||||
$application_name = $a->getHostName();
|
||||
}
|
||||
|
||||
$first_time = ($lastdate == "");
|
||||
|
|
|
@ -97,7 +97,7 @@ function securemail_settings_post(App &$a, array &$b){
|
|||
if ($_POST['securemail-submit'] == L10n::t('Save and send test')) {
|
||||
$sitename = Config::get('config', 'sitename');
|
||||
|
||||
$hostname = $a->get_hostname();
|
||||
$hostname = $a->getHostName();
|
||||
if (strpos($hostname, ':')) {
|
||||
$hostname = substr($hostname, 0, strpos($hostname, ':'));
|
||||
}
|
||||
|
|
|
@ -791,7 +791,7 @@ function statusnet_fetchtimeline(App $a, $uid)
|
|||
$application_name = Config::get('statusnet', 'application_name');
|
||||
}
|
||||
if ($application_name == "") {
|
||||
$application_name = $a->get_hostname();
|
||||
$application_name = $a->getHostName();
|
||||
}
|
||||
|
||||
$connection = new StatusNetOAuth($api, $ckey, $csecret, $otoken, $osecret);
|
||||
|
|
|
@ -866,7 +866,7 @@ function twitter_fetchtimeline(App $a, $uid)
|
|||
$application_name = Config::get('twitter', 'application_name');
|
||||
|
||||
if ($application_name == "") {
|
||||
$application_name = $a->get_hostname();
|
||||
$application_name = $a->getHostName();
|
||||
}
|
||||
|
||||
$has_picture = false;
|
||||
|
@ -1597,7 +1597,7 @@ function twitter_fetchhometimeline(App $a, $uid)
|
|||
$application_name = Config::get('twitter', 'application_name');
|
||||
|
||||
if ($application_name == "") {
|
||||
$application_name = $a->get_hostname();
|
||||
$application_name = $a->getHostName();
|
||||
}
|
||||
|
||||
require_once 'include/items.php';
|
||||
|
|
|
@ -164,7 +164,7 @@ function xmpp_converse(App $a)
|
|||
PConfig::set(local_user(), "xmpp", "password", $password);
|
||||
}
|
||||
|
||||
$jid = $a->user["nickname"] . "@" . $a->get_hostname() . "/converse-" . random_string(5);
|
||||
$jid = $a->user["nickname"] . "@" . $a->getHostName() . "/converse-" . random_string(5);
|
||||
|
||||
$auto_login = "auto_login: true,
|
||||
authentication: 'login',
|
||||
|
|
Loading…
Reference in a new issue