2012-03-17 20:40:17 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2012-03-17 21:53:53 +00:00
|
|
|
* Name: Insanejournal Post Connector
|
2012-03-17 22:34:25 +00:00
|
|
|
* Description: Post to Insanejournal
|
2012-03-17 20:40:17 +00:00
|
|
|
* Version: 1.0
|
|
|
|
* Author: Tony Baldwin <https://free-haven.org/profile/tony>
|
2012-03-17 21:30:21 +00:00
|
|
|
* Author: Michael Johnston
|
|
|
|
* Author: Cat Gray <https://free-haven.org/profile/catness>
|
2012-03-17 20:40:17 +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;
|
2020-05-14 02:38:50 +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
|
|
|
|
2018-08-30 19:53:12 +00:00
|
|
|
function ijpost_install()
|
|
|
|
{
|
2018-12-26 07:28:16 +00:00
|
|
|
Hook::register('post_local', 'addon/ijpost/ijpost.php', 'ijpost_post_local');
|
|
|
|
Hook::register('notifier_normal', 'addon/ijpost/ijpost.php', 'ijpost_send');
|
|
|
|
Hook::register('jot_networks', 'addon/ijpost/ijpost.php', 'ijpost_jot_nets');
|
|
|
|
Hook::register('connector_settings', 'addon/ijpost/ijpost.php', 'ijpost_settings');
|
|
|
|
Hook::register('connector_settings_post', 'addon/ijpost/ijpost.php', 'ijpost_settings_post');
|
2012-03-17 20:40:17 +00:00
|
|
|
}
|
|
|
|
|
2023-01-14 02:16:09 +00:00
|
|
|
function ijpost_jot_nets(array &$jotnets_fields)
|
2018-08-30 19:53:12 +00:00
|
|
|
{
|
2022-10-20 21:51:49 +00:00
|
|
|
if (!DI::userSession()->getLocalUserId()) {
|
2018-08-30 19:53:12 +00:00
|
|
|
return;
|
|
|
|
}
|
2012-03-17 20:40:17 +00:00
|
|
|
|
2022-10-20 21:51:49 +00:00
|
|
|
if (DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'ijpost', 'post')) {
|
2019-03-25 02:44:50 +00:00
|
|
|
$jotnets_fields[] = [
|
|
|
|
'type' => 'checkbox',
|
|
|
|
'field' => [
|
|
|
|
'ijpost_enable',
|
2020-01-18 19:52:33 +00:00
|
|
|
DI::l10n()->t('Post to Insanejournal'),
|
2022-10-20 21:51:49 +00:00
|
|
|
DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'ijpost', 'post_by_default')
|
2019-03-25 02:44:50 +00:00
|
|
|
]
|
|
|
|
];
|
2018-08-30 19:53:12 +00:00
|
|
|
}
|
2012-03-17 20:40:17 +00:00
|
|
|
}
|
|
|
|
|
2023-01-14 02:16:09 +00:00
|
|
|
function ijpost_settings(array &$data)
|
2018-08-30 19:53:12 +00:00
|
|
|
{
|
2022-10-20 21:51:49 +00:00
|
|
|
if (!DI::userSession()->getLocalUserId()) {
|
2018-08-30 19:53:12 +00:00
|
|
|
return;
|
|
|
|
}
|
2012-03-17 20:40:17 +00:00
|
|
|
|
2022-10-20 21:51:49 +00:00
|
|
|
$enabled = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'ijpost', 'post', false);
|
|
|
|
$ij_username = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'ijpost', 'ij_username');
|
|
|
|
$def_enabled = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'ijpost', 'post_by_default');
|
2018-08-30 19:53:12 +00:00
|
|
|
|
2021-11-21 22:10:13 +00:00
|
|
|
$t = Renderer::getMarkupTemplate('connector_settings.tpl', 'addon/ijpost/');
|
|
|
|
$html = Renderer::replaceMacros($t, [
|
|
|
|
'$enabled' => ['ijpost', DI::l10n()->t('Enable InsaneJournal Post Addon'), $enabled],
|
|
|
|
'$username' => ['ij_username', DI::l10n()->t('InsaneJournal username'), $ij_username],
|
|
|
|
'$password' => ['ij_password', DI::l10n()->t('InsaneJournal password')],
|
|
|
|
'$bydefault' => ['ij_bydefault', DI::l10n()->t('Post to InsaneJournal by default'), $def_enabled],
|
|
|
|
]);
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'connector' => 'ijpost',
|
|
|
|
'title' => DI::l10n()->t('InsaneJournal Export'),
|
|
|
|
'image' => 'images/insanejournal.gif',
|
|
|
|
'enabled' => $enabled,
|
|
|
|
'html' => $html,
|
|
|
|
];
|
2012-03-17 20:40:17 +00:00
|
|
|
}
|
|
|
|
|
2023-01-14 02:16:09 +00:00
|
|
|
function ijpost_settings_post(array &$b)
|
2018-08-30 19:53:12 +00:00
|
|
|
{
|
2018-11-30 14:11:56 +00:00
|
|
|
if (!empty($_POST['ijpost-submit'])) {
|
2022-10-20 21:51:49 +00:00
|
|
|
DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'ijpost', 'post', intval($_POST['ijpost']));
|
|
|
|
DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'ijpost', 'post_by_default', intval($_POST['ij_bydefault']));
|
|
|
|
DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'ijpost', 'ij_username', trim($_POST['ij_username']));
|
|
|
|
DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'ijpost', 'ij_password', trim($_POST['ij_password']));
|
2012-03-17 20:40:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-14 02:16:09 +00:00
|
|
|
function ijpost_post_local(array &$b)
|
2018-08-30 19:53:12 +00:00
|
|
|
{
|
2012-03-17 20:40:17 +00:00
|
|
|
// This can probably be changed to allow editing by pointing to a different API endpoint
|
|
|
|
|
2018-08-30 19:53:12 +00:00
|
|
|
if ($b['edit']) {
|
2012-03-17 20:40:17 +00:00
|
|
|
return;
|
2018-08-30 19:53:12 +00:00
|
|
|
}
|
2012-03-17 20:40:17 +00:00
|
|
|
|
2022-10-20 21:51:49 +00:00
|
|
|
if (!DI::userSession()->getLocalUserId() || (DI::userSession()->getLocalUserId() != $b['uid'])) {
|
2012-03-17 20:40:17 +00:00
|
|
|
return;
|
2018-08-30 19:53:12 +00:00
|
|
|
}
|
2012-03-17 20:40:17 +00:00
|
|
|
|
2018-08-30 19:53:12 +00:00
|
|
|
if ($b['private'] || $b['parent']) {
|
2012-03-17 20:40:17 +00:00
|
|
|
return;
|
2018-08-30 19:53:12 +00:00
|
|
|
}
|
2012-03-17 20:40:17 +00:00
|
|
|
|
2022-10-20 21:51:49 +00:00
|
|
|
$ij_post = intval(DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'ijpost', 'post'));
|
2012-03-17 20:40:17 +00:00
|
|
|
|
2018-11-30 14:11:56 +00:00
|
|
|
$ij_enable = (($ij_post && !empty($_REQUEST['ijpost_enable'])) ? intval($_REQUEST['ijpost_enable']) : 0);
|
2012-03-17 20:40:17 +00:00
|
|
|
|
2022-10-20 21:51:49 +00:00
|
|
|
if ($b['api_source'] && intval(DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'ijpost', 'post_by_default'))) {
|
2012-03-17 20:49:40 +00:00
|
|
|
$ij_enable = 1;
|
2018-08-30 19:53:12 +00:00
|
|
|
}
|
2012-03-17 20:40:17 +00:00
|
|
|
|
2018-08-30 19:53:12 +00:00
|
|
|
if (!$ij_enable) {
|
|
|
|
return;
|
|
|
|
}
|
2012-03-17 20:40:17 +00:00
|
|
|
|
2018-08-30 19:53:12 +00:00
|
|
|
if (strlen($b['postopts'])) {
|
|
|
|
$b['postopts'] .= ',';
|
|
|
|
}
|
2012-03-17 20:40:17 +00:00
|
|
|
|
2018-08-30 19:53:12 +00:00
|
|
|
$b['postopts'] .= 'ijpost';
|
|
|
|
}
|
2012-03-17 20:40:17 +00:00
|
|
|
|
2023-01-14 02:16:09 +00:00
|
|
|
function ijpost_send(array &$b)
|
2018-08-30 19:53:12 +00:00
|
|
|
{
|
|
|
|
if ($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited'])) {
|
|
|
|
return;
|
|
|
|
}
|
2012-03-17 20:40:17 +00:00
|
|
|
|
2018-08-30 19:53:12 +00:00
|
|
|
if (!strstr($b['postopts'], 'ijpost')) {
|
|
|
|
return;
|
|
|
|
}
|
2012-03-17 20:40:17 +00:00
|
|
|
|
2018-08-30 19:53:12 +00:00
|
|
|
if ($b['parent'] != $b['id']) {
|
|
|
|
return;
|
|
|
|
}
|
2012-03-17 20:40:17 +00:00
|
|
|
|
2018-01-15 13:15:33 +00:00
|
|
|
// insanejournal post in the LJ user's timezone.
|
2012-03-17 20:40:17 +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-17 20:40:17 +00:00
|
|
|
|
2020-01-18 15:50:56 +00:00
|
|
|
$ij_username = DI::pConfig()->get($b['uid'], 'ijpost', 'ij_username');
|
|
|
|
$ij_password = DI::pConfig()->get($b['uid'], 'ijpost', 'ij_password');
|
2012-03-17 22:34:25 +00:00
|
|
|
$ij_blog = 'http://www.insanejournal.com/interface/xmlrpc';
|
2012-03-17 20:40:17 +00:00
|
|
|
|
2018-08-30 19:53:12 +00:00
|
|
|
if ($ij_username && $ij_password && $ij_blog) {
|
2012-03-17 22:34:25 +00:00
|
|
|
$title = $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:50 +00:00
|
|
|
$tags = Tag::getCSVByURIId($b['uri-id'], [Tag::HASHTAG]);
|
2012-03-17 20:40:17 +00:00
|
|
|
|
2018-01-27 02:39:02 +00:00
|
|
|
$date = DateTimeFormat::convert($b['created'], $tz);
|
2012-03-17 20:40:17 +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
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-03-17 22:34:25 +00:00
|
|
|
<methodCall><methodName>LJ.XMLRPC.postevent</methodName>
|
|
|
|
<params><param>
|
|
|
|
<value><struct>
|
|
|
|
<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>event</name><value><string>$post</string></value></member>
|
|
|
|
<member><name>username</name><value><string>$ij_username</string></value></member>
|
|
|
|
<member><name>password</name><value><string>$ij_password</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>ver</name><value><int>1</int></value></member>
|
|
|
|
<member><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></member>
|
|
|
|
</struct></value>
|
|
|
|
</param></params>
|
2012-03-17 20:40:17 +00:00
|
|
|
</methodCall>
|
|
|
|
|
|
|
|
EOT;
|
|
|
|
|
2021-10-03 17:35:20 +00:00
|
|
|
Logger::debug('ijpost: data: ' . $xml);
|
2012-03-17 20:40:17 +00:00
|
|
|
|
2018-08-30 19:53:12 +00:00
|
|
|
if ($ij_blog !== 'test') {
|
2024-01-12 06:16:01 +00:00
|
|
|
$x = DI::httpClient()->post($ij_blog, $xml, ['Content-Type' => 'text/xml'])->getBodyString();
|
2018-01-27 13:52:02 +00:00
|
|
|
}
|
2021-10-03 17:35:20 +00:00
|
|
|
Logger::info('posted to insanejournal: ' . $x ? $x : '');
|
2012-03-17 20:40:17 +00:00
|
|
|
}
|
|
|
|
}
|