]> git.mxchange.org Git - friendica-addons.git/blobdiff - wppost/wppost.php
[various] Rename forum to group
[friendica-addons.git] / wppost / wppost.php
index 9c12bb6ee5e74db22d61d5b2df936cf8e24a4f0e..51ee7247f80b97d5472b108861a7710339d1bb08 100644 (file)
@@ -6,7 +6,6 @@
  * Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
  */
 
-use Friendica\App;
 use Friendica\Content\Text\BBCode;
 use Friendica\Content\Text\HTML;
 use Friendica\Core\Hook;
@@ -14,6 +13,7 @@ use Friendica\Core\Logger;
 use Friendica\Core\Renderer;
 use Friendica\Database\DBA;
 use Friendica\DI;
+use Friendica\Model\Item;
 use Friendica\Model\Post;
 use Friendica\Util\XML;
 
@@ -27,26 +27,26 @@ function wppost_install()
        Hook::register('connector_settings_post', 'addon/wppost/wppost.php', 'wppost_settings_post');
 }
 
-function wppost_jot_nets(App &$a, array &$jotnets_fields)
+function wppost_jot_nets(array &$jotnets_fields)
 {
        if (!DI::userSession()->getLocalUserId()) {
                return;
        }
 
-       if (DI::pConfig()->get(DI::userSession()->getLocalUserId(),'wppost','post')) {
+       if (DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'wppost', 'post')) {
                $jotnets_fields[] = [
                        'type' => 'checkbox',
                        'field' => [
                                'wppost_enable',
                                DI::l10n()->t('Post to Wordpress'),
-                               DI::pConfig()->get(DI::userSession()->getLocalUserId(),'wppost','post_by_default')
+                               DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'wppost', 'post_by_default')
                        ]
                ];
        }
 }
 
 
-function wppost_settings(App &$a, array &$data)
+function wppost_settings(array &$data)
 {
        if (!DI::userSession()->getLocalUserId()) {
                return;
@@ -82,23 +82,23 @@ function wppost_settings(App &$a, array &$data)
 }
 
 
-function wppost_settings_post(App $a, array &$b)
+function wppost_settings_post(array &$b)
 {
-       if(!empty($_POST['wppost-submit'])) {
-               DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'wppost', 'post'           , intval($_POST['wppost']));
+       if (!empty($_POST['wppost-submit'])) {
+               DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'wppost', 'post', intval($_POST['wppost']));
                DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'wppost', 'post_by_default', intval($_POST['wp_bydefault']));
-               DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'wppost', 'wp_username'    ,   trim($_POST['wp_username']));
-               DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'wppost', 'wp_password'    ,   trim($_POST['wp_password']));
-               DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'wppost', 'wp_blog'        ,   trim($_POST['wp_blog']));
-               DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'wppost', 'backlink'       , intval($_POST['wp_backlink']));
-               DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'wppost', 'shortcheck'     , intval($_POST['wp_shortcheck']));
+               DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'wppost', 'wp_username',   trim($_POST['wp_username']));
+               DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'wppost', 'wp_password',   trim($_POST['wp_password']));
+               DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'wppost', 'wp_blog',   trim($_POST['wp_blog']));
+               DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'wppost', 'backlink', intval($_POST['wp_backlink']));
+               DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'wppost', 'shortcheck', intval($_POST['wp_shortcheck']));
                $wp_backlink_text = BBCode::convert(trim($_POST['wp_backlink_text']), false, BBCode::BACKLINK);
                $wp_backlink_text = HTML::toPlaintext($wp_backlink_text, 0, true);
                DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'wppost', 'wp_backlink_text', $wp_backlink_text);
        }
 }
 
-function wppost_hook_fork(App $a, array &$b)
+function wppost_hook_fork(array &$b)
 {
        if ($b['name'] != 'notifier_normal') {
                return;
@@ -106,14 +106,17 @@ function wppost_hook_fork(App $a, array &$b)
 
        $post = $b['data'];
 
-       if ($post['deleted'] || $post['private'] || ($post['created'] !== $post['edited']) ||
-               !strstr($post['postopts'], 'wppost') || ($post['parent'] != $post['id'])) {
+       if (
+               $post['deleted'] || $post['private'] || ($post['created'] !== $post['edited']) ||
+               !strstr($post['postopts'] ?? '', 'wppost') || ($post['parent'] != $post['id'])
+       ) {
                $b['execute'] = false;
                return;
        }
 }
 
-function wppost_post_local(App $a, array &$b) {
+function wppost_post_local(array &$b)
+{
 
        // This can probably be changed to allow editing by pointing to a different API endpoint
 
@@ -151,33 +154,33 @@ function wppost_post_local(App $a, array &$b) {
 
 
 
-function wppost_send(App $a, array &$b)
+function wppost_send(array &$b)
 {
-       if($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited'])) {
+       if ($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited'])) {
                return;
        }
 
-       if(! strstr($b['postopts'],'wppost')) {
+       if (!strstr($b['postopts'], 'wppost')) {
                return;
        }
 
-       if($b['parent'] != $b['id']) {
+       if ($b['gravity'] != Item::GRAVITY_PARENT) {
                return;
        }
 
        // Dont't post if the post doesn't belong to us.
-       // This is a check for forum postings
+       // This is a check for group postings
        $self = DBA::selectFirst('contact', ['id'], ['uid' => $b['uid'], 'self' => true]);
        if ($b['contact-id'] != $self['id']) {
                return;
        }
 
-       $b['body'] = Post\Media::addAttachmentsToBody($b['uri-id'], $b['body']);
+       $b['body'] = Post\Media::addAttachmentsToBody($b['uri-id'], DI::contentItem()->addSharedPost($b));
 
        $wp_username = XML::escape(DI::pConfig()->get($b['uid'], 'wppost', 'wp_username'));
        $wp_password = XML::escape(DI::pConfig()->get($b['uid'], 'wppost', 'wp_password'));
-       $wp_blog = DI::pConfig()->get($b['uid'],'wppost','wp_blog');
-       $wp_backlink_text = DI::pConfig()->get($b['uid'],'wppost','wp_backlink_text');
+       $wp_blog = DI::pConfig()->get($b['uid'], 'wppost', 'wp_blog');
+       $wp_backlink_text = DI::pConfig()->get($b['uid'], 'wppost', 'wp_backlink_text');
        if ($wp_backlink_text == '') {
                $wp_backlink_text = DI::l10n()->t('Read the orig­i­nal post and com­ment stream on Friendica');
        }
@@ -187,15 +190,7 @@ function wppost_send(App $a, array &$b)
 
                if (intval(DI::pConfig()->get($b['uid'], 'wppost', 'shortcheck'))) {
                        // Checking, if its a post that is worth a blog post
-                       $postentry = false;
-                       $siteinfo = BBCode::getAttachedData($b["body"]);
-
-                       // Is it a link to an aricle, a video or a photo?
-                       if (isset($siteinfo["type"])) {
-                               if (in_array($siteinfo["type"], ["link", "audio", "video", "photo"])) {
-                                       $postentry = true;
-                               }
-                       }
+                       $postentry = (bool)Post\Media::getByURIId($b['uri-id'], [Post\Media::HTML, Post\Media::AUDIO, Post\Media::VIDEO, Post\Media::IMAGE]);
 
                        // Does it have a title?
                        if ($wptitle != "") {
@@ -215,9 +210,9 @@ function wppost_send(App $a, array &$b)
                // If the title is empty then try to guess
                if ($wptitle == '') {
                        // Fetch information about the post
-                       $siteinfo = BBCode::getAttachedData($b["body"]);
-                       if (isset($siteinfo["title"])) {
-                               $wptitle = $siteinfo["title"];
+                       $media = Post\Media::getByURIId($b['uri-id'], [Post\Media::HTML]);
+                       if (!empty($media) && !empty($media[0]['name']) && ($media[0]['name'] != $media[0]['url'])) {
+                               $wptitle = $media[0]['name'];
                        }
 
                        // If no bookmark is found then take the first line
@@ -225,7 +220,7 @@ function wppost_send(App $a, array &$b)
                                // Remove the share element before fetching the first line
                                $title = trim(preg_replace("/\[share.*?\](.*?)\[\/share\]/ism", "\n$1\n", $b['body']));
 
-                               $title = BBCode::toPlaintext($title)."\n";
+                               $title = BBCode::toPlaintext($title) . "\n";
                                $pos = strpos($title, "\n");
                                $trailer = "";
                                if (($pos == 0) || ($pos > 100)) {
@@ -233,7 +228,7 @@ function wppost_send(App $a, array &$b)
                                        $trailer = "...";
                                }
 
-                               $wptitle = substr($title, 0, $pos).$trailer;
+                               $wptitle = substr($title, 0, $pos) . $trailer;
                        }
                }
 
@@ -244,10 +239,10 @@ function wppost_send(App $a, array &$b)
                $post = preg_replace('/<a.*?href="(https?:\/\/www.youtube.com\/.*?)".*?>(.*?)<\/a>/ism', "\n$1\n", $post);
                $post = preg_replace('/<a.*?href="(https?:\/\/youtu.be\/.*?)".*?>(.*?)<\/a>/ism', "\n$1\n", $post);
 
-               $post = $title.$post;
+               $post = $title . $post;
 
-               $wp_backlink = intval(DI::pConfig()->get($b['uid'],'wppost','backlink'));
-               if($wp_backlink && $b['plink']) {
+               $wp_backlink = intval(DI::pConfig()->get($b['uid'], 'wppost', 'backlink'));
+               if ($wp_backlink && $b['plink']) {
                        $post .= '<p><a href="' . $b['plink'] . '">' . $wp_backlink_text . '</a></p>';
                }