2014-01-13 00:30:01 +00:00
< ? php
/**
* Name : Diaspora Post Connector
* Description : Post to Diaspora
2017-01-11 00:34:13 +00:00
* Version : 0.2
2014-01-13 00:30:01 +00:00
* Author : Michael Vogel < heluecht @ pirati . ca >
*/
2018-01-22 19:03:11 +00:00
require_once 'addon/diaspora/Diaspora_Connection.php' ;
2017-01-11 00:34:13 +00:00
2018-07-23 23:04:06 +00:00
use Friendica\App ;
2018-03-05 02:58:58 +00:00
use Friendica\Content\Text\BBCode ;
2018-12-26 07:28:16 +00:00
use Friendica\Core\Hook ;
2018-10-29 23:40:18 +00:00
use Friendica\Core\Logger ;
2020-05-07 04:16:40 +00:00
use Friendica\Core\Renderer ;
2018-07-20 12:20:48 +00:00
use Friendica\Database\DBA ;
2019-04-04 14:14:55 +00:00
use Friendica\Core\Worker ;
2019-12-15 23:47:24 +00:00
use Friendica\DI ;
2021-05-01 08:59:14 +00:00
use Friendica\Model\Post ;
2017-11-06 23:55:24 +00:00
2018-07-23 23:04:06 +00:00
function diaspora_install ()
{
2018-12-26 07:28:16 +00:00
Hook :: register ( 'hook_fork' , 'addon/diaspora/diaspora.php' , 'diaspora_hook_fork' );
Hook :: register ( 'post_local' , 'addon/diaspora/diaspora.php' , 'diaspora_post_local' );
Hook :: register ( 'notifier_normal' , 'addon/diaspora/diaspora.php' , 'diaspora_send' );
Hook :: register ( 'jot_networks' , 'addon/diaspora/diaspora.php' , 'diaspora_jot_nets' );
Hook :: register ( 'connector_settings' , 'addon/diaspora/diaspora.php' , 'diaspora_settings' );
Hook :: register ( 'connector_settings_post' , 'addon/diaspora/diaspora.php' , 'diaspora_settings_post' );
2014-01-13 00:30:01 +00:00
}
2018-07-23 23:04:06 +00:00
2023-01-14 02:16:09 +00:00
function diaspora_jot_nets ( array & $jotnets_fields )
2018-07-23 23:04:06 +00:00
{
2022-10-20 21:51:49 +00:00
if ( ! DI :: userSession () -> getLocalUserId ()) {
2018-07-23 23:04:06 +00:00
return ;
}
2022-10-20 21:51:49 +00:00
if ( DI :: pConfig () -> get ( DI :: userSession () -> getLocalUserId (), 'diaspora' , 'post' )) {
2019-03-25 02:44:50 +00:00
$jotnets_fields [] = [
'type' => 'checkbox' ,
'field' => [
'diaspora_enable' ,
2020-01-18 19:52:33 +00:00
DI :: l10n () -> t ( 'Post to Diaspora' ),
2022-10-20 21:51:49 +00:00
DI :: pConfig () -> get ( DI :: userSession () -> getLocalUserId (), 'diaspora' , 'post_by_default' )
2019-03-25 02:44:50 +00:00
]
];
2018-07-23 23:04:06 +00:00
}
2014-01-13 00:30:01 +00:00
}
2023-01-14 02:16:09 +00:00
function diaspora_settings ( array & $data )
2018-07-23 23:04:06 +00:00
{
2022-10-20 21:51:49 +00:00
if ( ! DI :: userSession () -> getLocalUserId ()) {
2014-01-18 21:06:41 +00:00
return ;
2018-07-23 23:04:06 +00:00
}
2014-01-18 21:06:41 +00:00
2022-10-20 21:51:49 +00:00
$enabled = DI :: pConfig () -> get ( DI :: userSession () -> getLocalUserId (), 'diaspora' , 'post' , false );
$def_enabled = DI :: pConfig () -> get ( DI :: userSession () -> getLocalUserId (), 'diaspora' , 'post_by_default' );
2014-01-13 00:30:01 +00:00
2022-10-20 21:51:49 +00:00
$handle = DI :: pConfig () -> get ( DI :: userSession () -> getLocalUserId (), 'diaspora' , 'handle' );
$password = DI :: pConfig () -> get ( DI :: userSession () -> getLocalUserId (), 'diaspora' , 'password' );
$aspect = DI :: pConfig () -> get ( DI :: userSession () -> getLocalUserId (), 'diaspora' , 'aspect' );
2014-01-13 00:30:01 +00:00
2021-11-21 22:10:13 +00:00
$info = '' ;
2020-05-07 04:16:40 +00:00
$error = '' ;
2022-10-18 19:10:36 +00:00
if ( DI :: session () -> get ( 'my_address' )) {
$info = DI :: l10n () -> t ( 'Please remember: You can always be reached from Diaspora with your Friendica handle <strong>%s</strong>. ' , DI :: session () -> get ( 'my_address' ));
2020-05-07 04:16:40 +00:00
$info .= DI :: l10n () -> t ( 'This connector is only meant if you still want to use your old Diaspora account for some time. ' );
2022-10-18 19:10:36 +00:00
$info .= DI :: l10n () -> t ( 'However, it is preferred that you tell your Diaspora contacts the new handle <strong>%s</strong> instead.' , DI :: session () -> get ( 'my_address' ));
2017-01-11 00:34:13 +00:00
}
2014-01-13 00:30:01 +00:00
2020-05-07 04:16:40 +00:00
$aspect_select = '' ;
2017-06-09 01:20:27 +00:00
if ( $handle && $password ) {
2017-01-11 00:34:13 +00:00
$conn = new Diaspora_Connection ( $handle , $password );
$conn -> logIn ();
2020-05-07 04:16:40 +00:00
$rawAspects = $conn -> getAspects ();
if ( $rawAspects ) {
$availableAspects = [
'all_aspects' => DI :: l10n () -> t ( 'All aspects' ),
2021-11-21 22:10:13 +00:00
'public' => DI :: l10n () -> t ( 'Public' ),
2020-05-07 04:16:40 +00:00
];
foreach ( $rawAspects as $rawAspect ) {
$availableAspects [ $rawAspect -> id ] = $rawAspect -> name ;
}
$aspect_select = [ 'aspect' , DI :: l10n () -> t ( 'Post to aspect:' ), $aspect , '' , $availableAspects ];
2021-11-21 22:10:13 +00:00
$info = DI :: l10n () -> t ( 'Connected with your Diaspora account <strong>%s</strong>' , $handle );
2020-05-07 04:16:40 +00:00
} else {
2021-11-21 22:10:13 +00:00
$info = '' ;
2020-05-07 04:16:40 +00:00
$error = DI :: l10n () -> t ( " Can't login to your Diaspora account. Please check handle (in the format user@domain.tld) and password. " );
2017-01-11 00:34:13 +00:00
}
}
2014-01-13 00:30:01 +00:00
2021-11-21 22:10:13 +00:00
$t = Renderer :: getMarkupTemplate ( 'connector_settings.tpl' , 'addon/diaspora/' );
$html = Renderer :: replaceMacros ( $t , [
'$l10n' => [
'info_header' => DI :: l10n () -> t ( 'Information' ),
'error_header' => DI :: l10n () -> t ( 'Error' ),
],
'$info' => $info ,
'$error' => $error ,
'$enabled' => [ 'enabled' , DI :: l10n () -> t ( 'Enable Diaspora Post Addon' ), $enabled ],
'$handle' => [ 'handle' , DI :: l10n () -> t ( 'Diaspora handle' ), $handle , null , null , 'placeholder="user@domain.tld"' ],
'$password' => [ 'password' , DI :: l10n () -> t ( 'Diaspora password' ), '' , DI :: l10n () -> t ( 'Privacy notice: Your Diaspora password will be stored unencrypted to authenticate you with your Diaspora pod. This means your Friendica node administrator can have access to it.' )],
'$aspect_select' => $aspect_select ,
'$post_by_default' => [ 'post_by_default' , DI :: l10n () -> t ( 'Post to Diaspora by default' ), $def_enabled ],
2020-05-07 04:16:40 +00:00
]);
2021-11-21 22:10:13 +00:00
$data = [
'connector' => 'diaspora' ,
'title' => DI :: l10n () -> t ( 'Diaspora Export' ),
'image' => 'images/diaspora-logo.png' ,
'enabled' => $enabled ,
'html' => $html ,
];
2014-01-13 00:30:01 +00:00
}
2023-01-14 02:16:09 +00:00
function diaspora_settings_post ( array & $b )
2018-07-23 23:04:06 +00:00
{
if ( ! empty ( $_POST [ 'diaspora-submit' ])) {
2022-10-20 21:51:49 +00:00
DI :: pConfig () -> set ( DI :: userSession () -> getLocalUserId (), 'diaspora' , 'post' , intval ( $_POST [ 'enabled' ]));
2020-05-07 04:16:40 +00:00
if ( intval ( $_POST [ 'enabled' ])) {
if ( isset ( $_POST [ 'handle' ])) {
2022-10-20 21:51:49 +00:00
DI :: pConfig () -> set ( DI :: userSession () -> getLocalUserId (), 'diaspora' , 'handle' , trim ( $_POST [ 'handle' ]));
DI :: pConfig () -> set ( DI :: userSession () -> getLocalUserId (), 'diaspora' , 'password' , trim ( $_POST [ 'password' ]));
2020-05-07 04:16:40 +00:00
}
if ( ! empty ( $_POST [ 'aspect' ])) {
2022-10-20 21:51:49 +00:00
DI :: pConfig () -> set ( DI :: userSession () -> getLocalUserId (), 'diaspora' , 'aspect' , trim ( $_POST [ 'aspect' ]));
DI :: pConfig () -> set ( DI :: userSession () -> getLocalUserId (), 'diaspora' , 'post_by_default' , intval ( $_POST [ 'post_by_default' ]));
2020-05-07 04:16:40 +00:00
}
} else {
2022-10-20 21:51:49 +00:00
DI :: pConfig () -> delete ( DI :: userSession () -> getLocalUserId (), 'diaspora' , 'password' );
2020-05-07 04:16:40 +00:00
}
2014-01-13 00:30:01 +00:00
}
}
2023-01-14 02:16:09 +00:00
function diaspora_hook_fork ( array & $b )
2018-11-10 16:20:19 +00:00
{
if ( $b [ 'name' ] != 'notifier_normal' ) {
return ;
}
$post = $b [ 'data' ];
if ( $post [ 'deleted' ] || $post [ 'private' ] || ( $post [ 'created' ] !== $post [ 'edited' ]) ||
2022-11-20 00:19:30 +00:00
! strstr ( $post [ 'postopts' ] ? ? '' , 'diaspora' ) || ( $post [ 'parent' ] != $post [ 'id' ])) {
2018-11-10 16:20:19 +00:00
$b [ 'execute' ] = false ;
return ;
}
}
2023-01-14 02:16:09 +00:00
function diaspora_post_local ( array & $b )
2018-07-23 23:04:06 +00:00
{
2017-09-06 16:16:33 +00:00
if ( $b [ 'edit' ]) {
2014-01-13 00:30:01 +00:00
return ;
2017-09-06 16:16:33 +00:00
}
2014-01-13 00:30:01 +00:00
2022-10-20 21:51:49 +00:00
if ( ! DI :: userSession () -> getLocalUserId () || ( DI :: userSession () -> getLocalUserId () != $b [ 'uid' ])) {
2014-01-13 00:30:01 +00:00
return ;
2017-09-06 16:16:33 +00:00
}
2014-01-13 00:30:01 +00:00
2017-09-06 16:16:33 +00:00
if ( $b [ 'private' ] || $b [ 'parent' ]) {
2014-01-13 00:30:01 +00:00
return ;
2017-09-06 16:16:33 +00:00
}
2014-01-13 00:30:01 +00:00
2022-10-20 21:51:49 +00:00
$diaspora_post = intval ( DI :: pConfig () -> get ( DI :: userSession () -> getLocalUserId (), 'diaspora' , 'post' ));
2014-01-13 00:30:01 +00:00
2018-11-30 14:11:56 +00:00
$diaspora_enable = (( $diaspora_post && ! empty ( $_REQUEST [ 'diaspora_enable' ])) ? intval ( $_REQUEST [ 'diaspora_enable' ]) : 0 );
2014-01-13 00:30:01 +00:00
2022-10-20 21:51:49 +00:00
if ( $b [ 'api_source' ] && intval ( DI :: pConfig () -> get ( DI :: userSession () -> getLocalUserId (), 'diaspora' , 'post_by_default' ))) {
2014-01-13 00:30:01 +00:00
$diaspora_enable = 1 ;
2017-09-06 16:16:33 +00:00
}
2014-01-13 00:30:01 +00:00
2017-09-06 16:16:33 +00:00
if ( ! $diaspora_enable ) {
return ;
}
if ( strlen ( $b [ 'postopts' ])) {
$b [ 'postopts' ] .= ',' ;
}
2014-01-13 00:30:01 +00:00
2017-09-06 16:16:33 +00:00
$b [ 'postopts' ] .= 'diaspora' ;
2014-01-13 00:30:01 +00:00
}
2023-01-14 02:16:09 +00:00
function diaspora_send ( array & $b )
2018-07-23 23:04:06 +00:00
{
2023-02-18 19:57:09 +00:00
$hostname = DI :: baseUrl () -> getHost ();
2014-01-13 00:30:01 +00:00
2021-10-21 06:04:27 +00:00
Logger :: notice ( 'diaspora_send: invoked' );
2014-01-13 00:30:01 +00:00
2018-07-23 23:04:06 +00:00
if ( $b [ 'deleted' ] || $b [ 'private' ] || ( $b [ 'created' ] !== $b [ 'edited' ])) {
2014-01-13 00:30:01 +00:00
return ;
2018-01-10 03:27:40 +00:00
}
2014-01-13 00:30:01 +00:00
2018-07-23 23:04:06 +00:00
if ( ! strstr ( $b [ 'postopts' ], 'diaspora' )) {
2014-01-13 00:30:01 +00:00
return ;
2018-01-10 03:27:40 +00:00
}
2014-01-13 00:30:01 +00:00
2018-07-23 23:04:06 +00:00
if ( $b [ 'parent' ] != $b [ 'id' ]) {
2014-01-13 00:30:01 +00:00
return ;
2018-01-10 03:27:40 +00:00
}
2014-01-13 00:30:01 +00:00
2022-10-29 22:14:12 +00:00
$b [ 'body' ] = Post\Media :: addAttachmentsToBody ( $b [ 'uri-id' ], DI :: contentItem () -> addSharedPost ( $b ));
2021-05-01 08:59:14 +00:00
2017-11-25 23:56:18 +00:00
// Dont't post if the post doesn't belong to us.
2023-06-03 19:55:09 +00:00
// This is a check for group postings
2018-07-20 12:20:48 +00:00
$self = DBA :: selectFirst ( 'contact' , [ 'id' ], [ 'uid' => $b [ 'uid' ], 'self' => true ]);
2018-07-23 23:04:06 +00:00
2017-11-25 23:56:18 +00:00
if ( $b [ 'contact-id' ] != $self [ 'id' ]) {
return ;
}
2021-10-21 06:04:27 +00:00
Logger :: info ( 'diaspora_send: prepare posting' );
2014-01-13 00:30:01 +00:00
2020-01-18 15:50:56 +00:00
$handle = DI :: pConfig () -> get ( $b [ 'uid' ], 'diaspora' , 'handle' );
$password = DI :: pConfig () -> get ( $b [ 'uid' ], 'diaspora' , 'password' );
$aspect = DI :: pConfig () -> get ( $b [ 'uid' ], 'diaspora' , 'aspect' );
2014-01-13 00:30:01 +00:00
2017-01-11 00:34:13 +00:00
if ( $handle && $password ) {
2021-10-21 06:04:27 +00:00
Logger :: info ( 'diaspora_send: all values seem to be okay' );
2014-01-13 00:30:01 +00:00
$title = $b [ 'title' ];
$body = $b [ 'body' ];
// Insert a newline before and after a quote
$body = str_ireplace ( " [quote " , " \n \n [quote " , $body );
$body = str_ireplace ( " [/quote] " , " [/quote] \n \n " , $body );
// Removal of tags and mentions
// #-tags
$body = preg_replace ( '/#\[url\=(\w+.*?)\](\w+.*?)\[\/url\]/i' , '#$2' , $body );
// @-mentions
$body = preg_replace ( '/@\[url\=(\w+.*?)\](\w+.*?)\[\/url\]/i' , '@$2' , $body );
// remove multiple newlines
do {
$oldbody = $body ;
2018-07-23 23:04:06 +00:00
$body = str_replace ( " \n \n \n " , " \n \n " , $body );
} while ( $oldbody != $body );
2014-01-13 00:30:01 +00:00
// convert to markdown
2018-03-05 02:58:58 +00:00
$body = BBCode :: toMarkdown ( $body );
2014-01-13 00:30:01 +00:00
// Adding the title
2018-07-23 23:04:06 +00:00
if ( strlen ( $title )) {
2014-01-13 00:30:01 +00:00
$body = " ## " . html_entity_decode ( $title ) . " \n \n " . $body ;
2018-07-23 23:04:06 +00:00
}
2014-01-13 00:30:01 +00:00
2018-07-23 23:04:06 +00:00
require_once " addon/diaspora/diasphp.php " ;
2014-01-13 00:30:01 +00:00
try {
2021-10-21 06:04:27 +00:00
Logger :: info ( 'diaspora_send: prepare' );
2017-01-11 00:34:13 +00:00
$conn = new Diaspora_Connection ( $handle , $password );
2021-10-21 06:04:27 +00:00
Logger :: info ( 'diaspora_send: try to log in ' . $handle );
2017-01-11 00:34:13 +00:00
$conn -> logIn ();
2021-10-21 06:04:27 +00:00
Logger :: info ( 'diaspora_send: try to send ' . $body );
2014-01-13 00:30:01 +00:00
2017-01-11 00:34:13 +00:00
$conn -> provider = $hostname ;
$conn -> postStatusMessage ( $body , $aspect );
2014-01-13 00:30:01 +00:00
2021-10-21 06:04:27 +00:00
Logger :: notice ( 'diaspora_send: success' );
2014-01-13 00:30:01 +00:00
} catch ( Exception $e ) {
2021-10-21 06:04:27 +00:00
Logger :: notice ( " diaspora_send: Error submitting the post: " . $e -> getMessage ());
2014-01-13 00:30:01 +00:00
2021-10-21 06:04:27 +00:00
Logger :: info ( 'diaspora_send: requeueing ' . $b [ 'uid' ]);
2014-01-13 00:30:01 +00:00
2019-04-04 14:14:55 +00:00
Worker :: defer ();
2014-01-13 00:30:01 +00:00
}
}
}