Plaintext was renamed to BBCode

update class name
This commit is contained in:
Adam Magness 2018-01-26 20:04:00 -05:00
parent 7b95efedd1
commit 9c9088069a
5 changed files with 19 additions and 19 deletions

View File

@ -8,7 +8,7 @@
require 'addon/buffer/bufferapp.php'; require 'addon/buffer/bufferapp.php';
use Friendica\App; use Friendica\App;
use Friendica\Content\Text\Plaintext; use Friendica\Content\Text\BBCode;
use Friendica\Core\Addon; use Friendica\Core\Addon;
use Friendica\Core\Config; use Friendica\Core\Config;
use Friendica\Core\L10n; use Friendica\Core\L10n;
@ -339,7 +339,7 @@ function buffer_send(App $a, &$b)
$item["body"] = preg_replace("(\[s\](.*?)\[\/s\])ism",'-$1-',$item["body"]); $item["body"] = preg_replace("(\[s\](.*?)\[\/s\])ism",'-$1-',$item["body"]);
} }
$post = Plaintext::toPlaintext($item, $limit, $includedlinks, $htmlmode); $post = BBCode::toPlaintext($item, $limit, $includedlinks, $htmlmode);
logger("buffer_send: converted message ".$b["id"]." result: ".print_r($post, true), LOGGER_DEBUG); logger("buffer_send: converted message ".$b["id"]." result: ".print_r($post, true), LOGGER_DEBUG);
// The image proxy is used as a sanitizer. Buffer seems to be really picky about pictures // The image proxy is used as a sanitizer. Buffer seems to be really picky about pictures
@ -365,8 +365,8 @@ function buffer_send(App $a, &$b)
if (($profile->service == "twitter") && isset($post["url"]) && ($post["type"] != "photo")) if (($profile->service == "twitter") && isset($post["url"]) && ($post["type"] != "photo"))
$post["text"] .= " ".$post["url"]; $post["text"] .= " ".$post["url"];
elseif (($profile->service == "appdotnet") && isset($post["url"]) && isset($post["title"]) && ($post["type"] != "photo")) { elseif (($profile->service == "appdotnet") && isset($post["url"]) && isset($post["title"]) && ($post["type"] != "photo")) {
$post["title"] = Plaintext::shortenMsg($post["title"], 90); $post["title"] = BBCode::shortenMsg($post["title"], 90);
$post["text"] = Plaintext::shortenMsg($post["text"], $limit - (24 + strlen($post["title"]))); $post["text"] = BBCode::shortenMsg($post["text"], $limit - (24 + strlen($post["title"])));
$post["text"] .= "\n[".$post["title"]."](".$post["url"].")"; $post["text"] .= "\n[".$post["title"]."](".$post["url"].")";
} elseif (($profile->service == "appdotnet") && isset($post["url"]) && ($post["type"] != "photo")) } elseif (($profile->service == "appdotnet") && isset($post["url"]) && ($post["type"] != "photo"))
$post["text"] .= " ".$post["url"]; $post["text"] .= " ".$post["url"];

View File

@ -47,7 +47,7 @@ require_once 'include/enotify.php';
use Friendica\App; use Friendica\App;
use Friendica\Content\OEmbed; use Friendica\Content\OEmbed;
use Friendica\Content\Text\Plaintext; use Friendica\Content\Text\BBCode;
use Friendica\Core\Addon; use Friendica\Core\Addon;
use Friendica\Core\Config; use Friendica\Core\Config;
use Friendica\Core\L10n; use Friendica\Core\L10n;
@ -641,11 +641,11 @@ function statusnet_post_hook(App $a, &$b)
$tempfile = ""; $tempfile = "";
require_once "include/network.php"; require_once "include/network.php";
$msgarr = Plaintext::toPlaintext($b, $max_char, true, 7); $msgarr = BBCode::toPlaintext($b, $max_char, true, 7);
$msg = $msgarr["text"]; $msg = $msgarr["text"];
if (($msg == "") && isset($msgarr["title"])) if (($msg == "") && isset($msgarr["title"]))
$msg = Plaintext::shortenMsg($msgarr["title"], $max_char - 50); $msg = BBCode::shortenMsg($msgarr["title"], $max_char - 50);
$image = ""; $image = "";
@ -809,7 +809,7 @@ function statusnet_prepare_body(App $a, &$b)
} }
} }
$msgarr = Plaintext::toPlaintext($item, $max_char, true, 7); $msgarr = BBCode::toPlaintext($item, $max_char, true, 7);
$msg = $msgarr["text"]; $msg = $msgarr["text"];
if (isset($msgarr["url"]) && ($msgarr["type"] != "photo")) { if (isset($msgarr["url"]) && ($msgarr["type"] != "photo")) {

View File

@ -10,7 +10,7 @@
require_once 'library/OAuth1.php'; require_once 'library/OAuth1.php';
require_once 'addon/tumblr/tumblroauth/tumblroauth.php'; require_once 'addon/tumblr/tumblroauth/tumblroauth.php';
use Friendica\Content\Text\Plaintext; use Friendica\Content\Text\BBCode;
use Friendica\Core\Addon; use Friendica\Core\Addon;
use Friendica\Core\Config; use Friendica\Core\Config;
use Friendica\Core\L10n; use Friendica\Core\L10n;
@ -360,7 +360,7 @@ function tumblr_send(&$a,&$b) {
$title = trim($b['title']); $title = trim($b['title']);
$siteinfo = Plaintext::getAttachedData($b["body"]); $siteinfo = BBCode::getAttachedData($b["body"]);
$params = [ $params = [
'state' => 'published', 'state' => 'published',

View File

@ -61,7 +61,7 @@
use Friendica\App; use Friendica\App;
use Friendica\Content\OEmbed; use Friendica\Content\OEmbed;
use Friendica\Content\Text\Plaintext; use Friendica\Content\Text\BBCode;
use Friendica\Core\Addon; use Friendica\Core\Addon;
use Friendica\Core\Config; use Friendica\Core\Config;
use Friendica\Core\L10n; use Friendica\Core\L10n;
@ -525,11 +525,11 @@ function twitter_post_hook(App $a, &$b)
$tweet = new TwitterOAuth($ckey, $csecret, $otoken, $osecret); $tweet = new TwitterOAuth($ckey, $csecret, $otoken, $osecret);
$max_char = 280; $max_char = 280;
$msgarr = Plaintext::toPlaintext($b, $max_char, true, 8); $msgarr = BBCode::toPlaintext($b, $max_char, true, 8);
$msg = $msgarr["text"]; $msg = $msgarr["text"];
if (($msg == "") && isset($msgarr["title"])) { if (($msg == "") && isset($msgarr["title"])) {
$msg = Plaintext::shortenMsg($msgarr["title"], $max_char - 50); $msg = BBCode::shortenMsg($msgarr["title"], $max_char - 50);
} }
$image = ""; $image = "";
@ -593,11 +593,11 @@ function twitter_post_hook(App $a, &$b)
if (strlen($msg) && ($image == "")) { if (strlen($msg) && ($image == "")) {
// ----------------- // -----------------
$max_char = 280; $max_char = 280;
$msgarr = Plaintext::toPlaintext($b, $max_char, true, 8); $msgarr = BBCode::toPlaintext($b, $max_char, true, 8);
$msg = $msgarr["text"]; $msg = $msgarr["text"];
if (($msg == "") && isset($msgarr["title"])) { if (($msg == "") && isset($msgarr["title"])) {
$msg = Plaintext::shortenMsg($msgarr["title"], $max_char - 50); $msg = BBCode::shortenMsg($msgarr["title"], $max_char - 50);
} }
if (isset($msgarr["url"])) { if (isset($msgarr["url"])) {
@ -789,7 +789,7 @@ function twitter_prepare_body(App $a, &$b)
} }
} }
$msgarr = Plaintext::toPlaintext($item, $max_char, true, 8); $msgarr = BBCode::toPlaintext($item, $max_char, true, 8);
$msg = $msgarr["text"]; $msg = $msgarr["text"];
if (isset($msgarr["url"]) && ($msgarr["type"] != "photo")) { if (isset($msgarr["url"]) && ($msgarr["type"] != "photo")) {

View File

@ -5,7 +5,7 @@
* Version: 1.1 * Version: 1.1
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike> * Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
*/ */
use Friendica\Content\Text\Plaintext; use Friendica\Content\Text\BBCode;
use Friendica\Core\Addon; use Friendica\Core\Addon;
use Friendica\Core\L10n; use Friendica\Core\L10n;
use Friendica\Core\PConfig; use Friendica\Core\PConfig;
@ -228,7 +228,7 @@ function wppost_send(&$a,&$b) {
if (intval(PConfig::get($b['uid'], 'wppost', 'shortcheck'))) { if (intval(PConfig::get($b['uid'], 'wppost', 'shortcheck'))) {
// Checking, if its a post that is worth a blog post // Checking, if its a post that is worth a blog post
$postentry = false; $postentry = false;
$siteinfo = Plaintext::getAttachedData($b["body"]); $siteinfo = BBCode::getAttachedData($b["body"]);
// Is it a link to an aricle, a video or a photo? // Is it a link to an aricle, a video or a photo?
if (isset($siteinfo["type"])) { if (isset($siteinfo["type"])) {
@ -255,7 +255,7 @@ function wppost_send(&$a,&$b) {
// If the title is empty then try to guess // If the title is empty then try to guess
if ($wptitle == '') { if ($wptitle == '') {
// Fetch information about the post // Fetch information about the post
$siteinfo = Plaintext::getAttachedData($b["body"]); $siteinfo = BBCode::getAttachedData($b["body"]);
if (isset($siteinfo["title"])) { if (isset($siteinfo["title"])) {
$wptitle = $siteinfo["title"]; $wptitle = $siteinfo["title"];
} }