* Author: Michael Johnston * Author: Cat Gray */ use Friendica\App; use Friendica\Content\Text\BBCode; use Friendica\Core\Hook; use Friendica\Core\Logger; use Friendica\Core\Renderer; use Friendica\DI; use Friendica\Model\Post; use Friendica\Model\Tag; use Friendica\Model\User; use Friendica\Util\DateTimeFormat; use Friendica\Util\XML; function dwpost_install() { Hook::register('post_local', 'addon/dwpost/dwpost.php', 'dwpost_post_local'); Hook::register('notifier_normal', 'addon/dwpost/dwpost.php', 'dwpost_send'); Hook::register('jot_networks', 'addon/dwpost/dwpost.php', 'dwpost_jot_nets'); Hook::register('connector_settings', 'addon/dwpost/dwpost.php', 'dwpost_settings'); Hook::register('connector_settings_post', 'addon/dwpost/dwpost.php', 'dwpost_settings_post'); } function dwpost_jot_nets(App $a, array &$jotnets_fields) { if (!local_user()) { return; } if (DI::pConfig()->get(local_user(), 'dwpost', 'post')) { $jotnets_fields[] = [ 'type' => 'checkbox', 'field' => [ 'dwpost_enable', DI::l10n()->t('Post to Dreamwidth'), DI::pConfig()->get(local_user(), 'dwpost', 'post_by_default') ] ]; } } function dwpost_settings(App $a, array &$data) { if (!local_user()) { return; } $enabled = DI::pConfig()->get(local_user(), 'dwpost', 'post', false); $dw_username = DI::pConfig()->get(local_user(), 'dwpost', 'dw_username'); $def_enabled = DI::pConfig()->get(local_user(), 'dwpost', 'post_by_default'); $t = Renderer::getMarkupTemplate('connector_settings.tpl', 'addon/dwpost/'); $html = Renderer::replaceMacros($t, [ '$enabled' => ['dwpost', DI::l10n()->t('Enable Dreamwidth Post Addon'), $enabled], '$username' => ['dw_username', DI::l10n()->t('Dreamwidth username'), $dw_username], '$password' => ['dw_password', DI::l10n()->t('Dreamwidth password')], '$bydefault' => ['dw_bydefault', DI::l10n()->t('Post to Dreamwidth by default'), $def_enabled], ]); $data = [ 'connector' => 'dwpost', 'title' => DI::l10n()->t('Dreamwidth Export'), 'image' => 'images/dreamwidth.png', 'enabled' => $enabled, 'html' => $html, ]; } function dwpost_settings_post(App $a, array &$b) { if (!empty($_POST['dwpost-submit'])) { DI::pConfig()->set(local_user(), 'dwpost', 'post', intval($_POST['dwpost'])); DI::pConfig()->set(local_user(), 'dwpost', 'post_by_default', intval($_POST['dw_bydefault'])); DI::pConfig()->set(local_user(), 'dwpost', 'dw_username', trim($_POST['dw_username'])); DI::pConfig()->set(local_user(), 'dwpost', 'dw_password', trim($_POST['dw_password'])); } } function dwpost_post_local(App $a, array &$b) { // This can probably be changed to allow editing by pointing to a different API endpoint if ($b['edit']) { return; } if ((!local_user()) || (local_user() != $b['uid'])) { return; } if ($b['private'] || $b['parent']) { return; } $dw_post = intval(DI::pConfig()->get(local_user(),'dwpost','post')); $dw_enable = (($dw_post && !empty($_REQUEST['dwpost_enable'])) ? intval($_REQUEST['dwpost_enable']) : 0); if ($b['api_source'] && intval(DI::pConfig()->get(local_user(),'dwpost','post_by_default'))) { $dw_enable = 1; } if (!$dw_enable) { return; } if (strlen($b['postopts'])) { $b['postopts'] .= ','; } $b['postopts'] .= 'dwpost'; } function dwpost_send(App $a, array &$b) { if ($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited'])) { return; } if (!strstr($b['postopts'],'dwpost')) { return; } if ($b['parent'] != $b['id']) { return; } $b['body'] = Post\Media::addAttachmentsToBody($b['uri-id'], $b['body']); /* * dreamwidth post in the LJ user's timezone. * Hopefully the person's Friendica account * will be set to the same thing. */ $user = User::getById($b['uid']); $tz = $user['timezone'] ?: 'UTC'; $dw_username = DI::pConfig()->get($b['uid'],'dwpost','dw_username'); $dw_password = DI::pConfig()->get($b['uid'],'dwpost','dw_password'); $dw_blog = 'http://www.dreamwidth.org/interface/xmlrpc'; if ($dw_username && $dw_password && $dw_blog) { $title = $b['title']; $post = BBCode::convertForUriId($b['uri-id'], $b['body'], BBCode::CONNECTORS); $post = XML::escape($post); $tags = Tag::getCSVByURIId($b['uri-id'], [Tag::HASHTAG]); $date = DateTimeFormat::convert($b['created'], $tz); $year = intval(substr($date,0,4)); $mon = intval(substr($date,5,2)); $day = intval(substr($date,8,2)); $hour = intval(substr($date,11,2)); $min = intval(substr($date,14,2)); $xml = <<< EOT LJ.XMLRPC.postevent year$year mon$mon day$day hour$hour min$min event$post username$dw_username password$dw_password subject$title lineendingsunix ver1 props useragentFriendica taglist$tags EOT; Logger::debug('dwpost: data: ' . $xml); if ($dw_blog !== 'test') { $x = DI::httpClient()->post($dw_blog, $xml, ['Content-Type' => 'text/xml'])->getBody(); } Logger::info('posted to dreamwidth: ' . ($x) ? $x : ''); } }