Diaspora: The hostname is now send, so that at Diaspora there is a line telling "via ..."

This commit is contained in:
Michael Vogel 2014-04-22 15:28:23 +02:00
parent ce997a0367
commit a23099a6fd
3 changed files with 9 additions and 5 deletions

View File

@ -61,11 +61,12 @@ class Diasphp {
return $this;
}
function post($text) {
function post($text, $provider = "diasphp") {
// post-daten vorbereiten
$datatopost = json_encode(array(
'aspect_ids' => 'public',
'status_message' => array('text' => $text)
'status_message' => array('text' => $text,
'provider_display_name' => $provider)
));
// header vorbereiten

View File

@ -39,6 +39,8 @@ function diaspora_jot_nets(&$a,&$b) {
}
function diaspora_queue_hook(&$a,&$b) {
$hostname = $a->get_hostname();
$qi = q("SELECT * FROM `queue` WHERE `network` = '%s'",
dbesc(NETWORK_DIASPORA2)
);
@ -85,7 +87,7 @@ function diaspora_queue_hook(&$a,&$b) {
logger('diaspora_queue: try to log in '.$diaspora_username, LOGGER_DEBUG);
$conn->login($diaspora_username, $diaspora_password);
logger('diaspora_queue: try to send '.$body, LOGGER_DEBUG);
$conn->post($post);
$conn->post($post, $hostname);
logger('diaspora_queue: send '.$userdata['uid'].' success', LOGGER_DEBUG);
@ -233,6 +235,7 @@ function diaspora_post_local(&$a,&$b) {
function diaspora_send(&$a,&$b) {
$hostname = $a->get_hostname();
logger('diaspora_send: invoked');
@ -303,7 +306,7 @@ function diaspora_send(&$a,&$b) {
logger('diaspora_send: try to send '.$body, LOGGER_DEBUG);
//throw new Exception('Test');
$conn->post($body);
$conn->post($body, $hostname);
logger('diaspora_send: success');
} catch (Exception $e) {

View File

@ -177,7 +177,7 @@ function fbsync_cron($a,$b) {
}
}
logger('fbsync: cron_end');
logger('fbsync_cron: cron_end');
set_config('fbsync','last_poll', time());
}