2012-02-28 07:27:12 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2012-03-01 05:25:34 +00:00
|
|
|
* Name: LiveJournal Post Connector
|
|
|
|
* Description: Post to LiveJournal
|
|
|
|
* Version: 1.0
|
2012-03-17 20:40:17 +00:00
|
|
|
* Author: Tony Baldwin <https://free-haven.org/profile/tony>
|
2012-03-01 05:25:34 +00:00
|
|
|
* Author: Michael Johnston
|
2012-03-08 19:57:57 +00:00
|
|
|
* Author: Cat Gray <https://free-haven.org/profile/catness>
|
2012-03-01 05:25:34 +00:00
|
|
|
*/
|
2018-01-25 02:29:09 +00:00
|
|
|
|
2021-11-21 22:10:13 +00:00
|
|
|
use Friendica\App;
|
2018-02-15 02:43:40 +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;
|
2021-11-21 22:10:13 +00:00
|
|
|
use Friendica\Core\Renderer;
|
2019-12-30 02:55:10 +00:00
|
|
|
use Friendica\DI;
|
2021-05-01 08:59:14 +00:00
|
|
|
use Friendica\Model\Post;
|
2020-05-14 02:38:59 +00:00
|
|
|
use Friendica\Model\Tag;
|
2021-10-03 17:35:20 +00:00
|
|
|
use Friendica\Model\User;
|
2018-02-15 02:38:37 +00:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2018-11-05 12:47:04 +00:00
|
|
|
use Friendica\Util\XML;
|
2017-11-06 23:55:24 +00:00
|
|
|
|
2022-06-23 05:27:01 +00:00
|
|
|
function ljpost_install()
|
|
|
|
{
|
|
|
|
Hook::register('post_local', 'addon/ljpost/ljpost.php', 'ljpost_post_local');
|
|
|
|
Hook::register('notifier_normal', 'addon/ljpost/ljpost.php', 'ljpost_send');
|
|
|
|
Hook::register('jot_networks', 'addon/ljpost/ljpost.php', 'ljpost_jot_nets');
|
|
|
|
Hook::register('connector_settings', 'addon/ljpost/ljpost.php', 'ljpost_settings');
|
|
|
|
Hook::register('connector_settings_post', 'addon/ljpost/ljpost.php', 'ljpost_settings_post');
|
2012-02-28 07:27:12 +00:00
|
|
|
}
|
|
|
|
|
2021-11-21 22:10:13 +00:00
|
|
|
function ljpost_jot_nets(App &$a, array &$jotnets_fields)
|
2019-03-25 02:44:50 +00:00
|
|
|
{
|
2022-10-20 21:51:49 +00:00
|
|
|
if (!DI::userSession()->getLocalUserId()) {
|
2022-06-23 05:27:01 +00:00
|
|
|
return;
|
|
|
|
}
|
2012-02-28 07:27:12 +00:00
|
|
|
|
2022-10-20 21:51:49 +00:00
|
|
|
if (DI::pConfig()->get(DI::userSession()->getLocalUserId(),'ljpost','post')) {
|
2022-06-23 05:27:01 +00:00
|
|
|
$jotnets_fields[] = [
|
|
|
|
'type' => 'checkbox',
|
|
|
|
'field' => [
|
|
|
|
'ljpost_enable',
|
|
|
|
DI::l10n()->t('Post to LiveJournal'),
|
2022-10-20 21:51:49 +00:00
|
|
|
DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'ljpost', 'post_by_default'),
|
2022-06-23 05:27:01 +00:00
|
|
|
],
|
|
|
|
];
|
|
|
|
}
|
2022-06-23 05:16:22 +00:00
|
|
|
}
|
2012-02-28 07:27:12 +00:00
|
|
|
|
2021-11-21 22:10:13 +00:00
|
|
|
function ljpost_settings(App &$a, array &$data)
|
|
|
|
{
|
2022-10-20 21:51:49 +00:00
|
|
|
if (!DI::userSession()->getLocalUserId()) {
|
2021-11-21 22:10:13 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-10-20 21:51:49 +00:00
|
|
|
$enabled = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'ljpost', 'post', false);
|
|
|
|
$ij_username = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'ljpost', 'ij_username');
|
|
|
|
$def_enabled = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'ljpost', 'post_by_default');
|
2021-11-21 22:10:13 +00:00
|
|
|
|
2022-06-23 05:16:22 +00:00
|
|
|
$t= Renderer::getMarkupTemplate('connector_settings.tpl', 'addon/ljpost/');
|
2021-11-21 22:10:13 +00:00
|
|
|
$html = Renderer::replaceMacros($t, [
|
|
|
|
'$enabled' => ['ljpost', DI::l10n()->t('Enable LiveJournal Post Addon'), $enabled],
|
|
|
|
'$username' => ['ij_username', DI::l10n()->t('LiveJournal username'), $ij_username],
|
|
|
|
'$password' => ['ij_password', DI::l10n()->t('LiveJournal password')],
|
|
|
|
'$bydefault' => ['ij_bydefault', DI::l10n()->t('Post to LiveJournal by default'), $def_enabled],
|
|
|
|
]);
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'connector' => 'ljpost',
|
2022-06-23 05:16:22 +00:00
|
|
|
'title' => DI::l10n()->t('LiveJournal Export'),
|
|
|
|
'image' => 'addon/ljpost/livejournal.png',
|
2021-11-21 22:10:13 +00:00
|
|
|
'enabled' => $enabled,
|
2022-06-23 05:16:22 +00:00
|
|
|
'html' => $html,
|
2021-11-21 22:10:13 +00:00
|
|
|
];
|
2012-02-28 07:27:12 +00:00
|
|
|
}
|
|
|
|
|
2022-06-23 05:16:22 +00:00
|
|
|
function ljpost_settings_post(App $a, array &$b)
|
|
|
|
{
|
|
|
|
if (!empty($_POST['ljpost-submit'])) {
|
2022-10-20 21:51:49 +00:00
|
|
|
DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'ljpost', 'post', intval($_POST['ljpost']));
|
|
|
|
DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'ljpost', 'post_by_default', intval($_POST['lj_bydefault']));
|
|
|
|
DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'ljpost', 'lj_username', trim($_POST['lj_username']));
|
|
|
|
DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'ljpost', 'lj_password', trim($_POST['lj_password']));
|
2012-03-01 05:25:34 +00:00
|
|
|
}
|
2012-02-28 07:27:12 +00:00
|
|
|
}
|
|
|
|
|
2022-06-23 05:16:22 +00:00
|
|
|
function ljpost_post_local(App $a, array &$b)
|
|
|
|
{
|
2012-03-01 05:25:34 +00:00
|
|
|
// This can probably be changed to allow editing by pointing to a different API endpoint
|
2022-06-23 05:16:22 +00:00
|
|
|
if ($b['edit']) {
|
2012-03-01 05:25:34 +00:00
|
|
|
return;
|
2022-06-23 05:16:22 +00:00
|
|
|
}
|
2012-02-28 07:27:12 +00:00
|
|
|
|
2022-10-20 21:51:49 +00:00
|
|
|
if (!DI::userSession()->getLocalUserId() || (DI::userSession()->getLocalUserId() != $b['uid'])) {
|
2012-03-01 05:25:34 +00:00
|
|
|
return;
|
2022-06-23 05:16:22 +00:00
|
|
|
}
|
2012-02-28 07:27:12 +00:00
|
|
|
|
2022-06-23 05:16:22 +00:00
|
|
|
if ($b['private'] || $b['parent']) {
|
2012-03-01 05:25:34 +00:00
|
|
|
return;
|
2022-06-23 05:16:22 +00:00
|
|
|
}
|
2012-02-28 07:27:12 +00:00
|
|
|
|
2022-10-20 21:51:49 +00:00
|
|
|
$lj_post = intval(DI::pConfig()->get(DI::userSession()->getLocalUserId(),'ljpost','post'));
|
2018-11-30 14:11:56 +00:00
|
|
|
$lj_enable = (($lj_post && !empty($_REQUEST['ljpost_enable'])) ? intval($_REQUEST['ljpost_enable']) : 0);
|
2012-02-28 07:27:12 +00:00
|
|
|
|
2022-10-20 21:51:49 +00:00
|
|
|
if ($b['api_source'] && intval(DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'ljpost', 'post_by_default'))) {
|
2012-03-01 05:25:34 +00:00
|
|
|
$lj_enable = 1;
|
2022-06-23 05:16:22 +00:00
|
|
|
}
|
2012-02-28 07:27:12 +00:00
|
|
|
|
2022-06-23 05:16:22 +00:00
|
|
|
if (!$lj_enable) {
|
|
|
|
return;
|
|
|
|
}
|
2012-02-28 07:27:12 +00:00
|
|
|
|
2022-06-23 05:16:22 +00:00
|
|
|
if (strlen($b['postopts'])) {
|
|
|
|
$b['postopts'] .= ',';
|
|
|
|
}
|
|
|
|
$b['postopts'] .= 'ljpost';
|
2012-02-28 07:27:12 +00:00
|
|
|
}
|
|
|
|
|
2022-06-23 05:16:22 +00:00
|
|
|
function ljpost_send(App $a, array &$b)
|
|
|
|
{
|
|
|
|
if ($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited'])) {
|
|
|
|
return;
|
|
|
|
}
|
2012-02-28 07:27:12 +00:00
|
|
|
|
2022-06-23 05:16:22 +00:00
|
|
|
if (!strstr($b['postopts'],'ljpost')) {
|
|
|
|
return;
|
|
|
|
}
|
2012-02-28 07:27:12 +00:00
|
|
|
|
2022-06-23 05:16:22 +00:00
|
|
|
if ($b['parent'] != $b['id']) {
|
|
|
|
return;
|
|
|
|
}
|
2012-02-28 07:27:12 +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
|
|
|
|
2018-01-15 13:15:33 +00:00
|
|
|
// LiveJournal post in the LJ user's timezone.
|
2012-03-01 05:25:34 +00:00
|
|
|
// Hopefully the person's Friendica account
|
|
|
|
// will be set to the same thing.
|
|
|
|
|
2021-10-03 17:35:20 +00:00
|
|
|
$user = User::getById($b['uid']);
|
|
|
|
$tz = $user['timezone'] ?: 'UTC';
|
2012-03-01 05:25:34 +00:00
|
|
|
|
2020-01-18 15:50:56 +00:00
|
|
|
$lj_username = XML::escape(DI::pConfig()->get($b['uid'],'ljpost','lj_username'));
|
|
|
|
$lj_password = XML::escape(DI::pConfig()->get($b['uid'],'ljpost','lj_password'));
|
|
|
|
$lj_journal = XML::escape(DI::pConfig()->get($b['uid'],'ljpost','lj_journal'));
|
2012-03-17 22:34:25 +00:00
|
|
|
// if(! $lj_journal)
|
|
|
|
// $lj_journal = $lj_username;
|
2012-03-01 08:21:30 +00:00
|
|
|
|
2020-01-18 15:50:56 +00:00
|
|
|
$lj_blog = XML::escape(DI::pConfig()->get($b['uid'],'ljpost','lj_blog'));
|
2022-06-23 05:16:22 +00:00
|
|
|
if (!strlen($lj_blog)) {
|
2018-11-05 12:47:04 +00:00
|
|
|
$lj_blog = XML::escape('http://www.livejournal.com/interface/xmlrpc');
|
2022-06-23 05:16:22 +00:00
|
|
|
}
|
2012-03-01 05:25:34 +00:00
|
|
|
|
2022-06-23 05:16:22 +00:00
|
|
|
if ($lj_username && $lj_password && $lj_blog) {
|
2018-11-05 12:47:04 +00:00
|
|
|
$title = XML::escape($b['title']);
|
2021-07-10 07:40:39 +00:00
|
|
|
$post = BBCode::convertForUriId($b['uri-id'], $b['body'], BBCode::CONNECTORS);
|
2018-11-05 12:47:04 +00:00
|
|
|
$post = XML::escape($post);
|
2020-05-14 02:38:59 +00:00
|
|
|
$tags = Tag::getCSVByURIId($b['uri-id'], [Tag::HASHTAG]);
|
2012-03-01 05:25:34 +00:00
|
|
|
|
2018-01-27 02:39:02 +00:00
|
|
|
$date = DateTimeFormat::convert($b['created'], $tz);
|
2012-03-01 05:25:34 +00:00
|
|
|
$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
|
2012-03-02 00:06:46 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-02-29 04:54:02 +00:00
|
|
|
<methodCall>
|
2022-06-23 05:16:22 +00:00
|
|
|
<methodName>LJ.XMLRPC.postevent</methodName>
|
|
|
|
<params>
|
|
|
|
<param>
|
2012-03-03 00:44:30 +00:00
|
|
|
<value>
|
|
|
|
<struct>
|
2022-06-23 05:16:22 +00:00
|
|
|
<member><name>username</name><value><string>$lj_username</string></value></member>
|
|
|
|
<member><name>password</name><value><string>$lj_password</string></value></member>
|
|
|
|
<member><name>event</name><value><string>$post</string></value></member>
|
|
|
|
<member><name>subject</name><value><string>$title</string></value></member>
|
|
|
|
<member><name>lineendings</name><value><string>unix</string></value></member>
|
|
|
|
<member><name>year</name><value><int>$year</int></value></member>
|
|
|
|
<member><name>mon</name><value><int>$mon</int></value></member>
|
|
|
|
<member><name>day</name><value><int>$day</int></value></member>
|
|
|
|
<member><name>hour</name><value><int>$hour</int></value></member>
|
|
|
|
<member><name>min</name><value><int>$min</int></value></member>
|
|
|
|
<member><name>usejournal</name><value><string>$lj_username</string></value></member>
|
2012-03-03 00:44:30 +00:00
|
|
|
<member>
|
2022-06-23 05:16:22 +00:00
|
|
|
<name>props</name>
|
|
|
|
<value>
|
|
|
|
<struct>
|
|
|
|
<member>
|
|
|
|
<name>useragent</name>
|
|
|
|
<value><string>Friendica</string></value>
|
|
|
|
</member>
|
|
|
|
<member>
|
|
|
|
<name>taglist</name>
|
|
|
|
<value><string>$tags</string></value>
|
|
|
|
</member>
|
|
|
|
</struct>
|
|
|
|
</value>
|
2012-03-08 19:57:57 +00:00
|
|
|
</member>
|
2012-03-03 00:44:30 +00:00
|
|
|
</struct>
|
|
|
|
</value>
|
2022-06-23 05:16:22 +00:00
|
|
|
</param>
|
|
|
|
</params>
|
2012-02-28 07:27:12 +00:00
|
|
|
</methodCall>
|
|
|
|
EOT;
|
|
|
|
|
2021-10-03 17:35:20 +00:00
|
|
|
Logger::debug('ljpost: data: ' . $xml);
|
2012-02-28 07:27:12 +00:00
|
|
|
|
2018-01-27 13:52:02 +00:00
|
|
|
if ($lj_blog !== 'test') {
|
2021-08-25 19:54:54 +00:00
|
|
|
$x = DI::httpClient()->post($lj_blog, $xml, ['Content-Type' => 'text/xml'])->getBody();
|
2018-01-27 13:52:02 +00:00
|
|
|
}
|
2022-06-23 05:16:22 +00:00
|
|
|
|
2021-10-03 17:35:20 +00:00
|
|
|
Logger::info('posted to livejournal: ' . ($x) ? $x : '');
|
2012-02-28 07:27:12 +00:00
|
|
|
}
|
|
|
|
}
|