218f0734be
rename function and update calls.
316 lines
7.6 KiB
PHP
316 lines
7.6 KiB
PHP
<?php
|
|
/**
|
|
* @file include/text.php
|
|
*/
|
|
|
|
use Friendica\App;
|
|
use Friendica\Content\ContactSelector;
|
|
use Friendica\Content\Feature;
|
|
use Friendica\Content\Smilies;
|
|
use Friendica\Content\Text\BBCode;
|
|
use Friendica\Core\Addon;
|
|
use Friendica\Core\Config;
|
|
use Friendica\Core\L10n;
|
|
use Friendica\Core\PConfig;
|
|
use Friendica\Core\Protocol;
|
|
use Friendica\Core\System;
|
|
use Friendica\Database\DBA;
|
|
use Friendica\Model\Contact;
|
|
use Friendica\Model\Event;
|
|
use Friendica\Model\Item;
|
|
use Friendica\Render\FriendicaSmarty;
|
|
use Friendica\Util\DateTimeFormat;
|
|
use Friendica\Util\Map;
|
|
use Friendica\Util\Proxy as ProxyUtils;
|
|
|
|
use Friendica\Core\Logger;
|
|
use Friendica\Core\Renderer;
|
|
use Friendica\Model\FileTag;
|
|
use Friendica\Util\Strings;
|
|
use Friendica\Util\XML;
|
|
use Friendica\Content\Text\HTML;
|
|
|
|
require_once "include/conversation.php";
|
|
|
|
/**
|
|
* Turn user/group ACLs stored as angle bracketed text into arrays
|
|
*
|
|
* @param string $s
|
|
* @return array
|
|
*/
|
|
function expand_acl($s) {
|
|
// turn string array of angle-bracketed elements into numeric array
|
|
// e.g. "<1><2><3>" => array(1,2,3);
|
|
$ret = [];
|
|
|
|
if (strlen($s)) {
|
|
$t = str_replace('<', '', $s);
|
|
$a = explode('>', $t);
|
|
foreach ($a as $aa) {
|
|
if (intval($aa)) {
|
|
$ret[] = intval($aa);
|
|
}
|
|
}
|
|
}
|
|
return $ret;
|
|
}
|
|
|
|
|
|
/**
|
|
* Wrap ACL elements in angle brackets for storage
|
|
* @param string $item
|
|
*/
|
|
function sanitise_acl(&$item) {
|
|
if (intval($item)) {
|
|
$item = '<' . intval(Strings::escapeTags(trim($item))) . '>';
|
|
} else {
|
|
unset($item);
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* Convert an ACL array to a storable string
|
|
*
|
|
* Normally ACL permissions will be an array.
|
|
* We'll also allow a comma-separated string.
|
|
*
|
|
* @param string|array $p
|
|
* @return string
|
|
*/
|
|
function perms2str($p) {
|
|
$ret = '';
|
|
if (is_array($p)) {
|
|
$tmp = $p;
|
|
} else {
|
|
$tmp = explode(',', $p);
|
|
}
|
|
|
|
if (is_array($tmp)) {
|
|
array_walk($tmp, 'sanitise_acl');
|
|
$ret = implode('', $tmp);
|
|
}
|
|
return $ret;
|
|
}
|
|
|
|
/**
|
|
* for html,xml parsing - let's say you've got
|
|
* an attribute foobar="class1 class2 class3"
|
|
* and you want to find out if it contains 'class3'.
|
|
* you can't use a normal sub string search because you
|
|
* might match 'notclass3' and a regex to do the job is
|
|
* possible but a bit complicated.
|
|
* pass the attribute string as $attr and the attribute you
|
|
* are looking for as $s - returns true if found, otherwise false
|
|
*
|
|
* @param string $attr attribute value
|
|
* @param string $s string to search
|
|
* @return boolean True if found, False otherwise
|
|
*/
|
|
function attribute_contains($attr, $s) {
|
|
$a = explode(' ', $attr);
|
|
return (count($a) && in_array($s,$a));
|
|
}
|
|
|
|
/**
|
|
* Compare activity uri. Knows about activity namespace.
|
|
*
|
|
* @param string $haystack
|
|
* @param string $needle
|
|
* @return boolean
|
|
*/
|
|
function activity_match($haystack,$needle) {
|
|
return (($haystack === $needle) || ((basename($needle) === $haystack) && strstr($needle, NAMESPACE_ACTIVITY_SCHEMA)));
|
|
}
|
|
|
|
/**
|
|
* quick and dirty quoted_printable encoding
|
|
*
|
|
* @param string $s
|
|
* @return string
|
|
*/
|
|
function qp($s) {
|
|
return str_replace("%", "=", rawurlencode($s));
|
|
}
|
|
|
|
/**
|
|
* @brief Find any non-embedded images in private items and add redir links to them
|
|
*
|
|
* @param App $a
|
|
* @param array &$item The field array of an item row
|
|
*/
|
|
function redir_private_images($a, &$item)
|
|
{
|
|
$matches = false;
|
|
$cnt = preg_match_all('|\[img\](http[^\[]*?/photo/[a-fA-F0-9]+?(-[0-9]\.[\w]+?)?)\[\/img\]|', $item['body'], $matches, PREG_SET_ORDER);
|
|
if ($cnt) {
|
|
foreach ($matches as $mtch) {
|
|
if (strpos($mtch[1], '/redir') !== false) {
|
|
continue;
|
|
}
|
|
|
|
if ((local_user() == $item['uid']) && ($item['private'] == 1) && ($item['contact-id'] != $a->contact['id']) && ($item['network'] == Protocol::DFRN)) {
|
|
$img_url = 'redir?f=1&quiet=1&url=' . urlencode($mtch[1]) . '&conurl=' . urlencode($item['author-link']);
|
|
$item['body'] = str_replace($mtch[0], '[img]' . $img_url . '[/img]', $item['body']);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @brief Given a text string, convert from bbcode to html and add smilie icons.
|
|
*
|
|
* @param string $text String with bbcode.
|
|
* @return string Formattet HTML.
|
|
*/
|
|
function prepare_text($text) {
|
|
if (stristr($text, '[nosmile]')) {
|
|
$s = BBCode::convert($text);
|
|
} else {
|
|
$s = Smilies::replace(BBCode::convert($text));
|
|
}
|
|
|
|
return trim($s);
|
|
}
|
|
|
|
/**
|
|
* return array with details for categories and folders for an item
|
|
*
|
|
* @param array $item
|
|
* @return array
|
|
*
|
|
* [
|
|
* [ // categories array
|
|
* {
|
|
* 'name': 'category name',
|
|
* 'removeurl': 'url to remove this category',
|
|
* 'first': 'is the first in this array? true/false',
|
|
* 'last': 'is the last in this array? true/false',
|
|
* } ,
|
|
* ....
|
|
* ],
|
|
* [ //folders array
|
|
* {
|
|
* 'name': 'folder name',
|
|
* 'removeurl': 'url to remove this folder',
|
|
* 'first': 'is the first in this array? true/false',
|
|
* 'last': 'is the last in this array? true/false',
|
|
* } ,
|
|
* ....
|
|
* ]
|
|
* ]
|
|
*/
|
|
function get_cats_and_terms($item)
|
|
{
|
|
$categories = [];
|
|
$folders = [];
|
|
|
|
$matches = false;
|
|
$first = true;
|
|
$cnt = preg_match_all('/<(.*?)>/', $item['file'], $matches, PREG_SET_ORDER);
|
|
if ($cnt) {
|
|
foreach ($matches as $mtch) {
|
|
$categories[] = [
|
|
'name' => XML::escape(FileTag::decode($mtch[1])),
|
|
'url' => "#",
|
|
'removeurl' => ((local_user() == $item['uid'])?'filerm/' . $item['id'] . '?f=&cat=' . XML::escape(FileTag::decode($mtch[1])):""),
|
|
'first' => $first,
|
|
'last' => false
|
|
];
|
|
$first = false;
|
|
}
|
|
}
|
|
|
|
if (count($categories)) {
|
|
$categories[count($categories) - 1]['last'] = true;
|
|
}
|
|
|
|
if (local_user() == $item['uid']) {
|
|
$matches = false;
|
|
$first = true;
|
|
$cnt = preg_match_all('/\[(.*?)\]/', $item['file'], $matches, PREG_SET_ORDER);
|
|
if ($cnt) {
|
|
foreach ($matches as $mtch) {
|
|
$folders[] = [
|
|
'name' => XML::escape(FileTag::decode($mtch[1])),
|
|
'url' => "#",
|
|
'removeurl' => ((local_user() == $item['uid']) ? 'filerm/' . $item['id'] . '?f=&term=' . XML::escape(FileTag::decode($mtch[1])) : ""),
|
|
'first' => $first,
|
|
'last' => false
|
|
];
|
|
$first = false;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (count($folders)) {
|
|
$folders[count($folders) - 1]['last'] = true;
|
|
}
|
|
|
|
return [$categories, $folders];
|
|
}
|
|
|
|
/**
|
|
* return number of bytes in size (K, M, G)
|
|
* @param string $size_str
|
|
* @return number
|
|
*/
|
|
function return_bytes($size_str) {
|
|
switch (substr ($size_str, -1)) {
|
|
case 'M': case 'm': return (int)$size_str * 1048576;
|
|
case 'K': case 'k': return (int)$size_str * 1024;
|
|
case 'G': case 'g': return (int)$size_str * 1073741824;
|
|
default: return $size_str;
|
|
}
|
|
}
|
|
|
|
function bb_translate_video($s) {
|
|
|
|
$matches = null;
|
|
$r = preg_match_all("/\[video\](.*?)\[\/video\]/ism",$s,$matches,PREG_SET_ORDER);
|
|
if ($r) {
|
|
foreach ($matches as $mtch) {
|
|
if ((stristr($mtch[1], 'youtube')) || (stristr($mtch[1], 'youtu.be'))) {
|
|
$s = str_replace($mtch[0], '[youtube]' . $mtch[1] . '[/youtube]', $s);
|
|
} elseif (stristr($mtch[1], 'vimeo')) {
|
|
$s = str_replace($mtch[0], '[vimeo]' . $mtch[1] . '[/vimeo]', $s);
|
|
}
|
|
}
|
|
}
|
|
return $s;
|
|
}
|
|
|
|
function undo_post_tagging($s) {
|
|
$matches = null;
|
|
$cnt = preg_match_all('/([!#@])\[url=(.*?)\](.*?)\[\/url\]/ism', $s, $matches, PREG_SET_ORDER);
|
|
if ($cnt) {
|
|
foreach ($matches as $mtch) {
|
|
if (in_array($mtch[1], ['!', '@'])) {
|
|
$contact = Contact::getDetailsByURL($mtch[2]);
|
|
$mtch[3] = empty($contact['addr']) ? $mtch[2] : $contact['addr'];
|
|
}
|
|
$s = str_replace($mtch[0], $mtch[1] . $mtch[3],$s);
|
|
}
|
|
}
|
|
return $s;
|
|
}
|
|
|
|
/// @TODO Rewrite this
|
|
function is_a_date_arg($s) {
|
|
$i = intval($s);
|
|
|
|
if ($i > 1900) {
|
|
$y = date('Y');
|
|
|
|
if ($i <= $y + 1 && strpos($s, '-') == 4) {
|
|
$m = intval(substr($s, 5));
|
|
|
|
if ($m > 0 && $m <= 12) {
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|