2012-03-17 16:40:17 -04:00
|
|
|
<?php
|
|
|
|
/**
|
2012-03-17 17:53:53 -04:00
|
|
|
* Name: Insanejournal Post Connector
|
2012-03-17 18:34:25 -04:00
|
|
|
* Description: Post to Insanejournal
|
2012-03-17 16:40:17 -04:00
|
|
|
* Version: 1.0
|
|
|
|
* Author: Tony Baldwin <https://free-haven.org/profile/tony>
|
2012-03-17 17:30:21 -04:00
|
|
|
* Author: Michael Johnston
|
|
|
|
* Author: Cat Gray <https://free-haven.org/profile/catness>
|
2012-03-17 16:40:17 -04:00
|
|
|
*/
|
2018-01-24 21:29:09 -05:00
|
|
|
|
2018-02-14 21:43:40 -05:00
|
|
|
use Friendica\Content\Text\BBCode;
|
2018-12-26 02:28:16 -05:00
|
|
|
use Friendica\Core\Hook;
|
2018-10-29 19:40:18 -04:00
|
|
|
use Friendica\Core\Logger;
|
2019-12-29 21:55:10 -05:00
|
|
|
use Friendica\DI;
|
2020-05-13 22:38:50 -04:00
|
|
|
use Friendica\Model\Tag;
|
2018-02-14 21:38:37 -05:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2018-11-05 07:47:04 -05:00
|
|
|
use Friendica\Util\XML;
|
2017-11-06 18:55:24 -05:00
|
|
|
|
2018-08-30 15:53:12 -04:00
|
|
|
function ijpost_install()
|
|
|
|
{
|
2018-12-26 02:28:16 -05: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 16:40:17 -04:00
|
|
|
}
|
|
|
|
|
2019-03-24 22:44:50 -04:00
|
|
|
function ijpost_jot_nets(\Friendica\App &$a, array &$jotnets_fields)
|
2018-08-30 15:53:12 -04:00
|
|
|
{
|
|
|
|
if (!local_user()) {
|
|
|
|
return;
|
|
|
|
}
|
2012-03-17 16:40:17 -04:00
|
|
|
|
2020-01-18 10:50:56 -05:00
|
|
|
if (DI::pConfig()->get(local_user(), 'ijpost', 'post')) {
|
2019-03-24 22:44:50 -04:00
|
|
|
$jotnets_fields[] = [
|
|
|
|
'type' => 'checkbox',
|
|
|
|
'field' => [
|
|
|
|
'ijpost_enable',
|
2020-01-18 14:52:33 -05:00
|
|
|
DI::l10n()->t('Post to Insanejournal'),
|
2020-01-18 10:50:56 -05:00
|
|
|
DI::pConfig()->get(local_user(), 'ijpost', 'post_by_default')
|
2019-03-24 22:44:50 -04:00
|
|
|
]
|
|
|
|
];
|
2018-08-30 15:53:12 -04:00
|
|
|
}
|
2012-03-17 16:40:17 -04:00
|
|
|
}
|
|
|
|
|
2018-08-30 15:53:12 -04:00
|
|
|
function ijpost_settings(&$a, &$s)
|
|
|
|
{
|
|
|
|
if (!local_user()) {
|
|
|
|
return;
|
|
|
|
}
|
2012-03-17 16:40:17 -04:00
|
|
|
|
2018-08-30 15:53:12 -04:00
|
|
|
/* Add our stylesheet to the page so we can make our settings look nice */
|
2012-03-17 16:40:17 -04:00
|
|
|
|
2019-12-30 15:53:43 -05:00
|
|
|
DI::page()['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . DI::baseUrl()->get() . '/addon/ijpost/ijpost.css' . '" media="all" />' . "\r\n";
|
2012-03-17 16:40:17 -04:00
|
|
|
|
2018-08-30 15:53:12 -04:00
|
|
|
/* Get the current state of our config variables */
|
2012-03-17 16:40:17 -04:00
|
|
|
|
2020-01-18 10:50:56 -05:00
|
|
|
$enabled = DI::pConfig()->get(local_user(), 'ijpost', 'post');
|
2012-03-17 16:40:17 -04:00
|
|
|
|
2018-08-30 15:53:12 -04:00
|
|
|
$checked = (($enabled) ? ' checked="checked" ' : '');
|
2012-03-17 16:40:17 -04:00
|
|
|
|
2020-01-18 10:50:56 -05:00
|
|
|
$def_enabled = DI::pConfig()->get(local_user(), 'ijpost', 'post_by_default');
|
2012-03-17 16:40:17 -04:00
|
|
|
|
2018-08-30 15:53:12 -04:00
|
|
|
$def_checked = (($def_enabled) ? ' checked="checked" ' : '');
|
2012-03-17 16:40:17 -04:00
|
|
|
|
2020-01-18 10:50:56 -05:00
|
|
|
$ij_username = DI::pConfig()->get(local_user(), 'ijpost', 'ij_username');
|
|
|
|
$ij_password = DI::pConfig()->get(local_user(), 'ijpost', 'ij_password');
|
2012-03-17 16:40:17 -04:00
|
|
|
|
2018-08-30 15:53:12 -04:00
|
|
|
/* Add some HTML to the existing form */
|
|
|
|
$s .= '<span id="settings_ijpost_inflated" class="settings-block fakelink" style="display: block;" onclick="openClose(\'settings_ijpost_expanded\'); openClose(\'settings_ijpost_inflated\');">';
|
2020-01-18 14:52:33 -05:00
|
|
|
$s .= '<img class="connector" src="images/insanejournal.gif" /><h3 class="connector">'. DI::l10n()->t("InsaneJournal Export").'</h3>';
|
2018-08-30 15:53:12 -04:00
|
|
|
$s .= '</span>';
|
|
|
|
$s .= '<div id="settings_ijpost_expanded" class="settings-block" style="display: none;">';
|
|
|
|
$s .= '<span class="fakelink" onclick="openClose(\'settings_ijpost_expanded\'); openClose(\'settings_ijpost_inflated\');">';
|
2020-01-18 14:52:33 -05:00
|
|
|
$s .= '<img class="connector" src="images/insanejournal.gif" /><h3 class="connector">'. DI::l10n()->t("InsaneJournal Export").'</h3>';
|
2018-08-30 15:53:12 -04:00
|
|
|
$s .= '</span>';
|
|
|
|
|
|
|
|
$s .= '<div id="ijpost-enable-wrapper">';
|
2020-01-18 14:52:33 -05:00
|
|
|
$s .= '<label id="ijpost-enable-label" for="ijpost-checkbox">' . DI::l10n()->t('Enable InsaneJournal Post Addon') . '</label>';
|
2018-08-30 15:53:12 -04:00
|
|
|
$s .= '<input id="ijpost-checkbox" type="checkbox" name="ijpost" value="1" ' . $checked . '/>';
|
|
|
|
$s .= '</div><div class="clear"></div>';
|
|
|
|
|
|
|
|
$s .= '<div id="ijpost-username-wrapper">';
|
2020-01-18 14:52:33 -05:00
|
|
|
$s .= '<label id="ijpost-username-label" for="ijpost-username">' . DI::l10n()->t('InsaneJournal username') . '</label>';
|
2018-08-30 15:53:12 -04:00
|
|
|
$s .= '<input id="ijpost-username" type="text" name="ij_username" value="' . $ij_username . '" />';
|
|
|
|
$s .= '</div><div class="clear"></div>';
|
|
|
|
|
|
|
|
$s .= '<div id="ijpost-password-wrapper">';
|
2020-01-18 14:52:33 -05:00
|
|
|
$s .= '<label id="ijpost-password-label" for="ijpost-password">' . DI::l10n()->t('InsaneJournal password') . '</label>';
|
2018-08-30 15:53:12 -04:00
|
|
|
$s .= '<input id="ijpost-password" type="password" name="ij_password" value="' . $ij_password . '" />';
|
|
|
|
$s .= '</div><div class="clear"></div>';
|
|
|
|
|
|
|
|
$s .= '<div id="ijpost-bydefault-wrapper">';
|
2020-01-18 14:52:33 -05:00
|
|
|
$s .= '<label id="ijpost-bydefault-label" for="ijpost-bydefault">' . DI::l10n()->t('Post to InsaneJournal by default') . '</label>';
|
2018-08-30 15:53:12 -04:00
|
|
|
$s .= '<input id="ijpost-bydefault" type="checkbox" name="ij_bydefault" value="1" ' . $def_checked . '/>';
|
|
|
|
$s .= '</div><div class="clear"></div>';
|
|
|
|
|
|
|
|
/* provide a submit button */
|
2020-01-18 14:52:33 -05:00
|
|
|
$s .= '<div class="settings-submit-wrapper" ><input type="submit" id="ijpost-submit" name="ijpost-submit" class="settings-submit" value="' . DI::l10n()->t('Save Settings') . '" /></div></div>';
|
2012-03-17 16:40:17 -04:00
|
|
|
}
|
|
|
|
|
2018-08-30 15:53:12 -04:00
|
|
|
function ijpost_settings_post(&$a, &$b)
|
|
|
|
{
|
2018-11-30 09:11:56 -05:00
|
|
|
if (!empty($_POST['ijpost-submit'])) {
|
2020-01-18 10:54:49 -05:00
|
|
|
DI::pConfig()->set(local_user(), 'ijpost', 'post', intval($_POST['ijpost']));
|
|
|
|
DI::pConfig()->set(local_user(), 'ijpost', 'post_by_default', intval($_POST['ij_bydefault']));
|
|
|
|
DI::pConfig()->set(local_user(), 'ijpost', 'ij_username', trim($_POST['ij_username']));
|
|
|
|
DI::pConfig()->set(local_user(), 'ijpost', 'ij_password', trim($_POST['ij_password']));
|
2012-03-17 16:40:17 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-30 15:53:12 -04:00
|
|
|
function ijpost_post_local(&$a, &$b)
|
|
|
|
{
|
2012-03-17 16:40:17 -04:00
|
|
|
// This can probably be changed to allow editing by pointing to a different API endpoint
|
|
|
|
|
2018-08-30 15:53:12 -04:00
|
|
|
if ($b['edit']) {
|
2012-03-17 16:40:17 -04:00
|
|
|
return;
|
2018-08-30 15:53:12 -04:00
|
|
|
}
|
2012-03-17 16:40:17 -04:00
|
|
|
|
2018-08-30 15:53:12 -04:00
|
|
|
if (!local_user() || (local_user() != $b['uid'])) {
|
2012-03-17 16:40:17 -04:00
|
|
|
return;
|
2018-08-30 15:53:12 -04:00
|
|
|
}
|
2012-03-17 16:40:17 -04:00
|
|
|
|
2018-08-30 15:53:12 -04:00
|
|
|
if ($b['private'] || $b['parent']) {
|
2012-03-17 16:40:17 -04:00
|
|
|
return;
|
2018-08-30 15:53:12 -04:00
|
|
|
}
|
2012-03-17 16:40:17 -04:00
|
|
|
|
2020-01-18 10:50:56 -05:00
|
|
|
$ij_post = intval(DI::pConfig()->get(local_user(), 'ijpost', 'post'));
|
2012-03-17 16:40:17 -04:00
|
|
|
|
2018-11-30 09:11:56 -05:00
|
|
|
$ij_enable = (($ij_post && !empty($_REQUEST['ijpost_enable'])) ? intval($_REQUEST['ijpost_enable']) : 0);
|
2012-03-17 16:40:17 -04:00
|
|
|
|
2020-01-18 10:50:56 -05:00
|
|
|
if ($b['api_source'] && intval(DI::pConfig()->get(local_user(), 'ijpost', 'post_by_default'))) {
|
2012-03-17 16:49:40 -04:00
|
|
|
$ij_enable = 1;
|
2018-08-30 15:53:12 -04:00
|
|
|
}
|
2012-03-17 16:40:17 -04:00
|
|
|
|
2018-08-30 15:53:12 -04:00
|
|
|
if (!$ij_enable) {
|
|
|
|
return;
|
|
|
|
}
|
2012-03-17 16:40:17 -04:00
|
|
|
|
2018-08-30 15:53:12 -04:00
|
|
|
if (strlen($b['postopts'])) {
|
|
|
|
$b['postopts'] .= ',';
|
|
|
|
}
|
2012-03-17 16:40:17 -04:00
|
|
|
|
2018-08-30 15:53:12 -04:00
|
|
|
$b['postopts'] .= 'ijpost';
|
|
|
|
}
|
2012-03-17 16:40:17 -04:00
|
|
|
|
2018-08-30 15:53:12 -04:00
|
|
|
function ijpost_send(&$a, &$b)
|
|
|
|
{
|
|
|
|
if ($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited'])) {
|
|
|
|
return;
|
|
|
|
}
|
2012-03-17 16:40:17 -04:00
|
|
|
|
2018-08-30 15:53:12 -04:00
|
|
|
if (!strstr($b['postopts'], 'ijpost')) {
|
|
|
|
return;
|
|
|
|
}
|
2012-03-17 16:40:17 -04:00
|
|
|
|
2018-08-30 15:53:12 -04:00
|
|
|
if ($b['parent'] != $b['id']) {
|
|
|
|
return;
|
|
|
|
}
|
2012-03-17 16:40:17 -04:00
|
|
|
|
2018-01-15 08:15:33 -05:00
|
|
|
// insanejournal post in the LJ user's timezone.
|
2012-03-17 16:40:17 -04:00
|
|
|
// Hopefully the person's Friendica account
|
|
|
|
// will be set to the same thing.
|
|
|
|
|
|
|
|
$tz = 'UTC';
|
|
|
|
|
|
|
|
$x = q("select timezone from user where uid = %d limit 1",
|
|
|
|
intval($b['uid'])
|
|
|
|
);
|
2018-08-30 15:53:12 -04:00
|
|
|
|
|
|
|
if ($x && strlen($x[0]['timezone'])) {
|
2018-01-15 08:15:33 -05:00
|
|
|
$tz = $x[0]['timezone'];
|
2018-08-30 15:53:12 -04:00
|
|
|
}
|
2012-03-17 16:40:17 -04:00
|
|
|
|
2020-01-18 10:50:56 -05:00
|
|
|
$ij_username = DI::pConfig()->get($b['uid'], 'ijpost', 'ij_username');
|
|
|
|
$ij_password = DI::pConfig()->get($b['uid'], 'ijpost', 'ij_password');
|
2012-03-17 18:34:25 -04:00
|
|
|
$ij_blog = 'http://www.insanejournal.com/interface/xmlrpc';
|
2012-03-17 16:40:17 -04:00
|
|
|
|
2018-08-30 15:53:12 -04:00
|
|
|
if ($ij_username && $ij_password && $ij_blog) {
|
2012-03-17 18:34:25 -04:00
|
|
|
$title = $b['title'];
|
2021-07-10 03:40:39 -04:00
|
|
|
$post = BBCode::convertForUriId($b['uri-id'], $b['body'], BBCode::CONNECTORS);
|
2018-11-05 07:47:04 -05:00
|
|
|
$post = XML::escape($post);
|
2020-05-13 22:38:50 -04:00
|
|
|
$tags = Tag::getCSVByURIId($b['uri-id'], [Tag::HASHTAG]);
|
2012-03-17 16:40:17 -04:00
|
|
|
|
2018-01-26 21:39:02 -05:00
|
|
|
$date = DateTimeFormat::convert($b['created'], $tz);
|
2012-03-17 16:40:17 -04: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 18:34:25 -04: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 16:40:17 -04:00
|
|
|
</methodCall>
|
|
|
|
|
|
|
|
EOT;
|
|
|
|
|
2018-10-30 09:48:09 -04:00
|
|
|
Logger::log('ijpost: data: ' . $xml, Logger::DATA);
|
2012-03-17 16:40:17 -04:00
|
|
|
|
2018-08-30 15:53:12 -04:00
|
|
|
if ($ij_blog !== 'test') {
|
2020-03-04 16:18:27 -05:00
|
|
|
$x = DI::httpRequest()->post($ij_blog, $xml, ["Content-Type: text/xml"])->getBody();
|
2018-01-27 08:52:02 -05:00
|
|
|
}
|
2018-10-30 09:48:09 -04:00
|
|
|
Logger::log('posted to insanejournal: ' . $x ? $x : '', Logger::DEBUG);
|
2012-03-17 16:40:17 -04:00
|
|
|
}
|
|
|
|
}
|