streams/include/misc.php

4183 lines
124 KiB
PHP
Raw Normal View History

<?php
2021-12-03 03:01:39 +00:00
/**
2022-06-17 23:59:11 +00:00
* @file include/misc.php
* This file started as some additional text handling functions but has grown to include
2021-12-03 03:01:39 +00:00
* a number of miscellaneous functions that didn't really fit anywhere else. Perhaps it should be named "misc.php" instead.
*/
2022-02-16 04:08:28 +00:00
use Code\Lib\MarkdownSoap;
use Code\Lib\AccessList;
use Code\Lib\Libzot;
use Code\Lib\SvgSanitizer;
use Code\Lib\Img_cache;
use Code\Lib\PConfig;
use Code\Lib\Config;
use Code\Lib\Channel;
use Code\Lib\Features;
use Code\Extend\Hook;
use Code\Render\Theme;
2022-02-12 20:43:29 +00:00
2018-07-03 23:40:54 +00:00
use Michelf\MarkdownExtra;
2022-01-10 08:05:05 +00:00
use Symfony\Component\Uid\Uuid;
require_once('include/bbcode.php');
/**
* @brief This is our template processor.
*
2022-10-24 07:37:30 +00:00
* @param string $s the string requiring macro substitution,
2016-05-21 02:11:14 +00:00
* or an instance of SmartyEngine
* @param array $r key value pairs (search => replace)
*
* @return string substituted string
*/
2022-11-20 06:44:13 +00:00
function replace_macros($template, $map)
2021-12-03 03:01:39 +00:00
{
$arr = [
2022-11-20 06:51:07 +00:00
'template' => $template,
'params' => $map,
2021-12-03 03:01:39 +00:00
];
/**
* @hooks replace_macros
* * \e string \b template
* * \e array \b params
*/
Hook::call('replace_macros', $arr);
2021-12-03 03:01:39 +00:00
$t = App::template_engine();
try {
$output = $t->replace_macros($arr['template'], $arr['params']);
} catch (Exception $e) {
btlogger("Unable to render template: " . $e->getMessage());
$output = "<h3>ERROR: there was an error creating the output.</h3>";
}
2021-12-03 03:01:39 +00:00
return $output;
2013-02-27 02:26:33 +00:00
}
/**
* @brief Generates a random string.
*
* @param number $size
* @param int $type
*
* @return string
*
* There are 86 characters max in text mode, 128 for hex. output is urlsafe.
*/
2022-10-24 07:37:30 +00:00
const RANDOM_STRING_HEX = 0x00;
const RANDOM_STRING_TEXT = 0x01;
2021-12-03 03:01:39 +00:00
function random_string($size = 64, $type = RANDOM_STRING_HEX)
{
// generate a bit of entropy and run it through the whirlpool
2022-10-24 07:37:30 +00:00
$s = hash('whirlpool', rand() . uniqid(rand(), true) . rand(), $type == RANDOM_STRING_TEXT);
2021-12-03 03:01:39 +00:00
$s = (($type == RANDOM_STRING_TEXT) ? str_replace("\n", "", base64url_encode($s, true)) : $s);
2021-12-03 03:01:39 +00:00
return(substr($s, 0, $size));
2013-02-27 02:26:33 +00:00
}
/**
* @brief Input filter to replace HTML tag characters with something safe - without changing the string length.
*
* @param string $string Input string
*
* @return string Filtered string
*
*/
2021-12-03 03:01:39 +00:00
function notags($string)
{
2022-10-23 09:51:54 +00:00
return(str_replace(["<",">"], ['[',']'], $string));
2013-02-27 02:26:33 +00:00
}
2022-10-26 22:18:41 +00:00
// Basically explode(), but entries are trimmed and empty entries discarded.
2022-10-29 20:17:46 +00:00
function strtoarr($separator, $string) {
2022-10-26 22:18:41 +00:00
$array = [];
if ($string) {
$tmp = explode($separator, $string);
foreach ($tmp as $t) {
$t = trim($t);
if ($t) {
$array[] = $t;
}
}
}
return $array;
}
/**
2018-09-05 03:59:11 +00:00
* use this on input where angle chars shouldn't be removed,
* and allow them to be safely used in HTML.
*
* @param string $string
*
* @return string
*/
2021-12-03 03:01:39 +00:00
function escape_tags($string)
{
return(htmlspecialchars($string, ENT_COMPAT, 'UTF-8', false));
2013-02-27 02:26:33 +00:00
}
2022-12-21 20:20:55 +00:00
function z_input_filter($s, $type = 'text/x-multicode')
2021-12-03 03:01:39 +00:00
{
if ($type === 'text/x-multicode') {
2021-12-03 03:01:39 +00:00
return (multicode_purify($s));
}
2023-04-20 09:47:04 +00:00
if (in_array($type, ['text/plain', 'text/bbcode', 'application/x-pdl'])) {
2021-12-03 03:01:39 +00:00
return escape_tags($s);
}
if (App::$is_sys) {
return $s;
}
2021-12-03 03:01:39 +00:00
if ($type === 'text/markdown') {
$x = new MarkdownSoap($s);
return $x->clean();
}
2017-03-15 00:07:29 +00:00
2021-12-03 03:01:39 +00:00
if ($type === 'text/html') {
return purify_html($s);
}
2021-12-03 03:01:39 +00:00
return escape_tags($s);
}
/**
* @brief Use HTMLPurifier to get standards compliant HTML.
*
* Use the <a href="http://htmlpurifier.org/" target="_blank">HTMLPurifier</a>
* library to get filtered and standards compliant HTML.
*
* @see HTMLPurifier
*
* @param string $s raw HTML
2022-11-21 10:00:36 +00:00
* @param array $opts
* @return string standards compliant filtered HTML
*/
2021-12-03 03:01:39 +00:00
function purify_html($s, $opts = [])
{
2021-12-03 03:01:39 +00:00
$config = HTMLPurifier_Config::createDefault();
$config->set('Cache.DefinitionImpl', null);
$config->set('Attr.EnableID', true);
2021-12-03 03:01:39 +00:00
// disable Unicode version of RTL over-ride
$s = str_replace([ '&#x202e;', '&#x202E;', html_entity_decode('&#x202e;', ENT_QUOTES, 'UTF-8') ], [ '','','' ], $s);
2021-12-03 03:01:39 +00:00
// This will escape invalid tags in the output instead of removing.
// This is necessary for mixed format (text+bbcode+html+markdown) messages or
// some angle brackets in plaintext may get stripped if they look like an HTML tag
2021-02-04 22:45:07 +00:00
2021-12-03 03:01:39 +00:00
if (in_array('escape', $opts)) {
$config->set('Core.EscapeInvalidChildren', true);
$config->set('Core.EscapeInvalidTags', true);
}
// If enabled, target=blank attributes are added to all links.
//$config->set('HTML.TargetBlank', true);
//$config->set('Attr.AllowedFrameTargets', ['_blank', '_self', '_parent', '_top']);
// restore old behavior of HTMLPurifier < 4.8, only used when targets allowed at all
// do not add rel="noreferrer" to all links with target attributes
//$config->set('HTML.TargetNoreferrer', false);
// do not add noopener rel attributes to links which have a target attribute associated with them
//$config->set('HTML.TargetNoopener', false);
//Allow some custom data- attributes used by built-in libs.
//In this way members which do not have allowcode set can still use the built-in js libs in webpages to some extent.
$def = $config->getHTMLDefinition(true);
//data- attributes used by the foundation library
// f6 navigation
//dropdown menu
$def->info_global_attr['data-dropdown-menu'] = new HTMLPurifier_AttrDef_Text();
//drilldown menu
$def->info_global_attr['data-drilldown'] = new HTMLPurifier_AttrDef_Text();
//accordion menu
$def->info_global_attr['data-accordion-menu'] = new HTMLPurifier_AttrDef_Text();
//responsive navigation
$def->info_global_attr['data-responsive-menu'] = new HTMLPurifier_AttrDef_Text();
$def->info_global_attr['data-responsive-toggle'] = new HTMLPurifier_AttrDef_Text();
//magellan
$def->info_global_attr['data-magellan'] = new HTMLPurifier_AttrDef_Text();
$def->info_global_attr['data-magellan-target'] = new HTMLPurifier_AttrDef_Text();
// f6 containers
//accordion
$def->info_global_attr['data-accordion'] = new HTMLPurifier_AttrDef_Text();
$def->info_global_attr['data-accordion-item'] = new HTMLPurifier_AttrDef_Text();
$def->info_global_attr['data-tab-content'] = new HTMLPurifier_AttrDef_Text();
//dropdown
$def->info_global_attr['data-dropdown'] = new HTMLPurifier_AttrDef_Text();
//off-canvas
$def->info_global_attr['data-off-canvas-wrapper'] = new HTMLPurifier_AttrDef_Text();
$def->info_global_attr['data-off-canvas'] = new HTMLPurifier_AttrDef_Text();
$def->info_global_attr['data-off-canvas-content'] = new HTMLPurifier_AttrDef_Text();
//reveal
$def->info_global_attr['data-reveal'] = new HTMLPurifier_AttrDef_Text();
//tabs
$def->info_global_attr['data-tabs'] = new HTMLPurifier_AttrDef_Text();
$def->info_global_attr['data-tabs-content'] = new HTMLPurifier_AttrDef_Text();
// f6 media
//orbit
$def->info_global_attr['data-orbit'] = new HTMLPurifier_AttrDef_Text();
$def->info_global_attr['data-slide'] = new HTMLPurifier_AttrDef_Text();
//tooltip
$def->info_global_attr['data-tooltip'] = new HTMLPurifier_AttrDef_Text();
// f6 plugins
//abide - the use is pointless since we can't do anything with forms
//equalizer
$def->info_global_attr['data-equalizer'] = new HTMLPurifier_AttrDef_Text();
$def->info_global_attr['data-equalizer-watch'] = new HTMLPurifier_AttrDef_Text();
//interchange - potentially dangerous since it can load content
//toggler
$def->info_global_attr['data-bs-toggler'] = new HTMLPurifier_AttrDef_Text();
2021-12-03 03:01:39 +00:00
//sticky
$def->info_global_attr['data-sticky'] = new HTMLPurifier_AttrDef_Text();
$def->info_global_attr['data-sticky-container'] = new HTMLPurifier_AttrDef_Text();
// f6 common
$def->info_global_attr['data-options'] = new HTMLPurifier_AttrDef_Text();
$def->info_global_attr['data-bs-toggle'] = new HTMLPurifier_AttrDef_Text();
2021-12-03 03:01:39 +00:00
$def->info_global_attr['data-close'] = new HTMLPurifier_AttrDef_Text();
$def->info_global_attr['data-open'] = new HTMLPurifier_AttrDef_Text();
$def->info_global_attr['data-position'] = new HTMLPurifier_AttrDef_Text();
//data- attributes used by the bootstrap library
$def->info_global_attr['data-dismiss'] = new HTMLPurifier_AttrDef_Text();
$def->info_global_attr['data-bs-target'] = new HTMLPurifier_AttrDef_Text();
$def->info_global_attr['data-bs-toggle'] = new HTMLPurifier_AttrDef_Text();
2021-12-03 03:01:39 +00:00
$def->info_global_attr['data-backdrop'] = new HTMLPurifier_AttrDef_Text();
$def->info_global_attr['data-keyboard'] = new HTMLPurifier_AttrDef_Text();
$def->info_global_attr['data-show'] = new HTMLPurifier_AttrDef_Text();
$def->info_global_attr['data-spy'] = new HTMLPurifier_AttrDef_Text();
$def->info_global_attr['data-offset'] = new HTMLPurifier_AttrDef_Text();
$def->info_global_attr['data-animation'] = new HTMLPurifier_AttrDef_Text();
$def->info_global_attr['data-container'] = new HTMLPurifier_AttrDef_Text();
$def->info_global_attr['data-delay'] = new HTMLPurifier_AttrDef_Text();
$def->info_global_attr['data-placement'] = new HTMLPurifier_AttrDef_Text();
$def->info_global_attr['data-title'] = new HTMLPurifier_AttrDef_Text();
$def->info_global_attr['data-trigger'] = new HTMLPurifier_AttrDef_Text();
$def->info_global_attr['data-content'] = new HTMLPurifier_AttrDef_Text();
$def->info_global_attr['data-trigger'] = new HTMLPurifier_AttrDef_Text();
$def->info_global_attr['data-parent'] = new HTMLPurifier_AttrDef_Text();
$def->info_global_attr['data-ride'] = new HTMLPurifier_AttrDef_Text();
$def->info_global_attr['data-slide-to'] = new HTMLPurifier_AttrDef_Text();
$def->info_global_attr['data-slide'] = new HTMLPurifier_AttrDef_Text();
$def->info_global_attr['data-interval'] = new HTMLPurifier_AttrDef_Text();
$def->info_global_attr['data-pause'] = new HTMLPurifier_AttrDef_Text();
$def->info_global_attr['data-wrap'] = new HTMLPurifier_AttrDef_Text();
$def->info_global_attr['data-offset-top'] = new HTMLPurifier_AttrDef_Text();
$def->info_global_attr['data-offset-bottom'] = new HTMLPurifier_AttrDef_Text();
//some html5 elements
//Block
$def->addElement('section', 'Block', 'Flow', 'Common');
$def->addElement('nav', 'Block', 'Flow', 'Common');
$def->addElement('article', 'Block', 'Flow', 'Common');
$def->addElement('aside', 'Block', 'Flow', 'Common');
$def->addElement('header', 'Block', 'Flow', 'Common');
$def->addElement('footer', 'Block', 'Flow', 'Common');
//Inline
$def->addElement('button', 'Inline', 'Inline', 'Common');
$def->addElement('mark', 'Inline', 'Inline', 'Common');
if (in_array('allow_position', $opts)) {
$cssDefinition = $config->getCSSDefinition();
2022-10-23 09:51:54 +00:00
$cssDefinition->info['position'] = new HTMLPurifier_AttrDef_Enum(['absolute', 'fixed', 'relative', 'static', 'inherit'], false);
2021-12-03 03:01:39 +00:00
2022-10-23 09:51:54 +00:00
$cssDefinition->info['left'] = new HTMLPurifier_AttrDef_CSS_Composite([
2021-12-03 03:01:39 +00:00
new HTMLPurifier_AttrDef_CSS_Length(),
new HTMLPurifier_AttrDef_CSS_Percentage()
2022-10-23 09:51:54 +00:00
]);
2021-12-03 03:01:39 +00:00
2022-10-23 09:51:54 +00:00
$cssDefinition->info['right'] = new HTMLPurifier_AttrDef_CSS_Composite([
2021-12-03 03:01:39 +00:00
new HTMLPurifier_AttrDef_CSS_Length(),
new HTMLPurifier_AttrDef_CSS_Percentage()
2022-10-23 09:51:54 +00:00
]);
2021-12-03 03:01:39 +00:00
2022-10-23 09:51:54 +00:00
$cssDefinition->info['top'] = new HTMLPurifier_AttrDef_CSS_Composite([
2021-12-03 03:01:39 +00:00
new HTMLPurifier_AttrDef_CSS_Length(),
new HTMLPurifier_AttrDef_CSS_Percentage()
2022-10-23 09:51:54 +00:00
]);
2021-12-03 03:01:39 +00:00
2022-10-23 09:51:54 +00:00
$cssDefinition->info['bottom'] = new HTMLPurifier_AttrDef_CSS_Composite([
2021-12-03 03:01:39 +00:00
new HTMLPurifier_AttrDef_CSS_Length(),
new HTMLPurifier_AttrDef_CSS_Percentage()
2022-10-23 09:51:54 +00:00
]);
2021-12-03 03:01:39 +00:00
}
2021-12-03 03:01:39 +00:00
$purifier = new HTMLPurifier($config);
2021-12-03 03:01:39 +00:00
return $purifier->purify($s);
}
/**
* @brief Generate a string that's random, but usually pronounceable.
*
* Used to generate initial passwords.
*
* @note In order to create "pronounceable" strings some consonant pairs or
* letters that does not make a very good word ending are chopped off, so that
* the returned string length can be lower than $len.
*
* @param int $len max length of generated string
* @return string Genereated random, but usually pronounceable string
*/
2021-12-03 03:01:39 +00:00
function autoname($len)
{
2021-12-03 03:01:39 +00:00
if ($len <= 0) {
return '';
}
2022-10-23 09:51:54 +00:00
$vowels = ['a','a','ai','au','e','e','e','ee','ea','i','ie','o','ou','u'];
2021-12-03 03:01:39 +00:00
if (mt_rand(0, 5) == 4) {
$vowels[] = 'y';
}
2022-10-23 09:51:54 +00:00
$cons = [
2021-12-03 03:01:39 +00:00
'b','bl','br',
'c','ch','cl','cr',
'd','dr',
'f','fl','fr',
'g','gh','gl','gr',
'h',
'j',
'k','kh','kl','kr',
'l',
'm',
'n',
'p','ph','pl','pr',
'qu',
'r','rh',
's','sc','sh','sm','sp','st',
't','th','tr',
'v',
'w','wh',
'x',
'z','zh'
2022-10-23 09:51:54 +00:00
];
2021-12-03 03:01:39 +00:00
2022-10-23 09:51:54 +00:00
$midcons = ['ck','ct','gn','ld','lf','lm','lt','mb','mm', 'mn','mp',
'nd','ng','nk','nt','rn','rp','rt'];
2021-12-03 03:01:39 +00:00
// avoid these consonant pairs at the end of the string
2022-10-23 09:51:54 +00:00
$noend = ['bl', 'br', 'cl','cr','dr','fl','fr','gl','gr',
'kh', 'kl','kr','mn','pl','pr','rh','tr','qu','wh'];
2021-12-03 03:01:39 +00:00
$start = mt_rand(0, 2);
if ($start == 0) {
$table = $vowels;
} else {
$table = $cons;
}
$word = '';
for ($x = 0; $x < $len; $x++) {
$r = mt_rand(0, count($table) - 1);
$word .= $table[$r];
if ($table == $vowels) {
$table = array_merge($cons, $midcons);
} else {
$table = $vowels;
}
}
$word = substr($word, 0, $len);
foreach ($noend as $noe) {
if ((strlen($word) > 2) && (substr($word, -2) == $noe)) {
$word = substr($word, 0, -1);
break;
}
}
// avoid the letter 'q' as it does not make a very good word ending
2022-10-23 09:51:54 +00:00
if (str_ends_with($word, 'q')) {
2021-12-03 03:01:39 +00:00
$word = substr($word, 0, -1);
}
2021-12-03 03:01:39 +00:00
return $word;
2013-02-27 02:26:33 +00:00
}
/**
* @brief escape text ($str) for XML transport
*
* @param string $str
* @return string Escaped text.
*/
2021-12-03 03:01:39 +00:00
function xmlify($str)
{
$buffer = '';
2021-12-03 03:01:39 +00:00
if (is_array($str)) {
// allow to fall through so we ge a PHP error, as the log statement will
// probably get lost in the noise unless we're specifically looking for it.
2021-12-03 03:01:39 +00:00
btlogger('xmlify called with array: ' . print_r($str, true), LOGGER_NORMAL, LOG_WARNING);
}
2021-12-03 03:01:39 +00:00
$len = mb_strlen($str);
for ($x = 0; $x < $len; $x++) {
$char = mb_substr($str, $x, 1);
switch ($char) {
case "\r":
break;
case "&":
$buffer .= '&amp;';
break;
case "'":
$buffer .= '&apos;';
break;
case "\"":
$buffer .= '&quot;';
break;
case '<':
$buffer .= '&lt;';
break;
case '>':
$buffer .= '&gt;';
break;
case "\n":
$buffer .= "\n";
break;
default:
$buffer .= $char;
break;
}
}
$buffer = trim($buffer);
2021-12-03 03:01:39 +00:00
return($buffer);
2013-02-27 02:26:33 +00:00
}
/**
* @brief Undo an xmlify.
*
* Pass xml escaped text ($s), returns unescaped text.
*
* @param string $s
*
* @return string
*/
2021-12-03 03:01:39 +00:00
function unxmlify($s)
{
$ret = str_replace('&amp;', '&', $s);
2022-10-23 09:51:54 +00:00
$ret = str_replace(['&lt;', '&gt;', '&quot;', '&apos;'], ['<', '>', '"', "'"], $ret);
2021-12-03 03:01:39 +00:00
return $ret;
2013-02-27 02:26:33 +00:00
}
/**
* @brief Automatic pagination.
*
* To use, get the count of total items.
* Then call App::set_pager_total($number_items);
* Optionally call App::set_pager_itemspage($n) to the number of items to display on each page
* Then call paginate($a) after the end of the display loop to insert the pager block on the page
* (assuming there are enough items to paginate).
* When using with SQL, the setting LIMIT %d, %d => App::$pager['start'],App::$pager['itemspage']
* will limit the results to the correct items for the current page.
* The actual page handling is then accomplished at the application layer.
*
* @param App &$a
*/
2021-12-03 03:01:39 +00:00
function paginate(&$a)
{
$o = '';
$stripped = preg_replace('/(&page=[0-9]*)/', '', App::$query_string);
2022-08-03 09:52:05 +00:00
// $stripped = preg_replace('/&zid=(.*?)([\?&]|$)/ism','',$stripped);
2021-12-03 03:01:39 +00:00
$stripped = str_replace('q=', '', $stripped);
$stripped = trim($stripped, '/');
$pagenum = App::$pager['page'];
$url = z_root() . '/' . $stripped;
if (App::$pager['total'] > App::$pager['itemspage']) {
$o .= '<div class="pager">';
if (App::$pager['page'] != 1) {
$o .= '<span class="pager_prev">' . "<a href=\"$url" . '&page=' . (App::$pager['page'] - 1) . '">' . t('prev') . '</a></span> ';
}
2021-12-03 03:01:39 +00:00
$o .= "<span class=\"pager_first\"><a href=\"$url" . "&page=1\">" . t('first') . "</a></span> ";
2021-12-03 03:01:39 +00:00
$numpages = App::$pager['total'] / App::$pager['itemspage'];
2021-12-03 03:01:39 +00:00
$numstart = 1;
$numstop = $numpages;
2021-12-03 03:01:39 +00:00
if ($numpages > 14) {
$numstart = (($pagenum > 7) ? ($pagenum - 7) : 1);
$numstop = (($pagenum > ($numpages - 7)) ? $numpages : ($numstart + 14));
}
2021-12-03 03:01:39 +00:00
for ($i = $numstart; $i <= $numstop; $i++) {
if ($i == App::$pager['page']) {
$o .= '<span class="pager_current">' . (($i < 10) ? '&nbsp;' . $i : $i);
} else {
$o .= "<span class=\"pager_n\"><a href=\"$url" . "&page=$i\">" . (($i < 10) ? '&nbsp;' . $i : $i) . "</a>";
}
$o .= '</span> ';
}
2021-12-03 03:01:39 +00:00
if ((App::$pager['total'] % App::$pager['itemspage']) != 0) {
if ($i == App::$pager['page']) {
$o .= '<span class="pager_current">' . (($i < 10) ? '&nbsp;' . $i : $i);
} else {
$o .= "<span class=\"pager_n\"><a href=\"$url" . "&page=$i\">" . (($i < 10) ? '&nbsp;' . $i : $i) . "</a>";
}
$o .= '</span> ';
}
2021-12-03 03:01:39 +00:00
$lastpage = (($numpages > intval($numpages)) ? intval($numpages) + 1 : $numpages);
$o .= "<span class=\"pager_last\"><a href=\"$url" . "&page=$lastpage\">" . t('last') . "</a></span> ";
2021-12-03 03:01:39 +00:00
if ((App::$pager['total'] - (App::$pager['itemspage'] * App::$pager['page'])) > 0) {
$o .= '<span class="pager_next">' . "<a href=\"$url" . "&page=" . (App::$pager['page'] + 1) . '">' . t('next') . '</a></span>';
}
$o .= '</div>' . "\r\n";
}
2013-02-27 02:26:33 +00:00
2021-12-03 03:01:39 +00:00
return $o;
2013-02-27 02:26:33 +00:00
}
2021-12-03 03:01:39 +00:00
function alt_pager($i, $more = '', $less = '')
{
2021-12-03 03:01:39 +00:00
if (! $more) {
$more = t('older');
}
if (! $less) {
$less = t('newer');
}
2012-07-15 03:39:46 +00:00
2021-12-03 03:01:39 +00:00
$stripped = preg_replace('/(&page=[0-9]*)/', '', App::$query_string);
$stripped = str_replace('q=', '', $stripped);
$stripped = trim($stripped, '/');
//$pagenum = App::$pager['page'];
$url = z_root() . '/' . $stripped;
2022-01-04 10:37:31 +00:00
// the template adds params with '&' so we need to supply a query param
// with '?'. Use a dummy argument f= if there are no other query params.
2022-08-03 09:52:05 +00:00
2022-01-04 10:37:31 +00:00
if (! strpos($url,'?')) {
$url = $url . '?f=';
}
2012-07-15 03:39:46 +00:00
2022-10-23 09:51:54 +00:00
return replace_macros(Theme::get_template('alt_pager.tpl'), [
2022-10-24 07:37:30 +00:00
'$has_less' => App::$pager['page'] > 1,
'$has_more' => $i > 0 && $i >= App::$pager['itemspage'],
2021-12-03 03:01:39 +00:00
'$less' => $less,
'$more' => $more,
'$url' => $url,
'$prevpage' => App::$pager['page'] - 1,
'$nextpage' => App::$pager['page'] + 1,
2022-10-23 09:51:54 +00:00
]);
2013-02-27 02:26:33 +00:00
}
2012-07-15 03:39:46 +00:00
/**
* @brief Generate a guaranteed unique (for this domain) item ID for ATOM.
*
* Safe from birthday paradox.
*
* @return string a unique id
*/
2021-12-03 03:01:39 +00:00
function item_message_id()
{
2018-09-05 03:59:11 +00:00
2022-10-23 09:51:54 +00:00
$hash = (string) Uuid::v4();
2021-12-03 03:01:39 +00:00
$mid = z_root() . '/item/' . $hash;
2021-12-03 03:01:39 +00:00
return $mid;
2013-02-27 02:26:33 +00:00
}
/**
* @brief Generate a guaranteed unique photo ID.
*
* Safe from birthday paradox.
*
2018-05-18 10:09:38 +00:00
* @return string a unique hash
*/
2021-12-03 03:01:39 +00:00
function photo_new_resource()
{
2022-10-23 09:51:54 +00:00
$hash = (string) Uuid::v4();
2021-12-03 03:01:39 +00:00
return $hash;
2013-02-27 02:26:33 +00:00
}
2019-10-01 02:25:48 +00:00
// provide psuedo random token (string) consisting entirely of US-ASCII letters/numbers
// and with possibly variable length
2021-12-03 03:01:39 +00:00
function new_token($minlen = 36, $maxlen = 48)
{
2019-10-01 02:25:48 +00:00
2021-12-03 03:01:39 +00:00
$chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890';
$str = EMPTY_STR;
2019-10-01 02:25:48 +00:00
2021-12-03 03:01:39 +00:00
$len = (($minlen === $maxlen) ? $minlen : mt_rand($minlen, $maxlen));
2019-10-01 02:25:48 +00:00
2021-12-03 03:01:39 +00:00
for ($a = 0; $a < $len; $a++) {
$str .= $chars[mt_rand(0, 62)];
}
return $str;
2019-09-27 03:58:29 +00:00
}
/**
* @brief Generate a unique ID.
*
* @return string
*/
2021-12-03 03:01:39 +00:00
function new_uuid()
{
2022-10-23 09:51:54 +00:00
$hash = (string) Uuid::v4();
2021-12-03 03:01:39 +00:00
return $hash;
}
/**
* @brief
*
* 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 string
* @param string $s attribute you are looking for
2021-12-02 23:02:31 +00:00
* @return bool true if found
*/
2021-12-03 03:01:39 +00:00
function attribute_contains($attr, $s)
{
// remove quotes
$attr = str_replace([ '"',"'" ], ['',''], $attr);
$a = explode(' ', $attr);
if ($a && in_array($s, $a)) {
return true;
}
2021-12-03 03:01:39 +00:00
return false;
2013-02-27 02:26:33 +00:00
}
/**
2023-02-17 18:48:02 +00:00
* @brief Create a log message.
*
2023-02-17 18:48:02 +00:00
* Logging is configured through the site config. The log file
* is set in system.logfile, log level in system.loglevel and to enable logging
* set system.debugging.
*
* Available constants for log level are LOGGER_NORMAL, LOGGER_TRACE, LOGGER_DEBUG,
* LOGGER_DATA and LOGGER_ALL.
*
*
* @param string $msg Message to log
* @param int $level A log level
2015-12-31 21:25:23 +00:00
* @param int $priority - compatible with syslog
*/
2021-12-03 03:01:39 +00:00
function logger($msg, $level = LOGGER_NORMAL, $priority = LOG_INFO)
{
if (App::$module == 'setup' && is_writable('install.log')) {
$debugging = true;
$logfile = 'install.log';
$loglevel = LOGGER_ALL;
} else {
$debugging = get_config('system', 'debugging');
$loglevel = intval(get_config('system', 'loglevel'));
$logfile = get_config('system', 'logfile');
}
2021-12-03 03:01:39 +00:00
if ((! $debugging) || (! $logfile) || ($level > $loglevel)) {
return;
}
2023-02-17 18:55:07 +00:00
// Get a backtrace to report the calling function.
2021-12-03 03:01:39 +00:00
$stack = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 2);
$where = basename($stack[0]['file']) . ':' . $stack[0]['line'] . ':' . $stack[1]['function'] . ': ';
2021-12-03 03:01:39 +00:00
$s = datetime_convert('UTC', 'UTC', 'now', ATOM_TIME) . ':' . log_priority_str($priority) . ':' . logid() . ':' . $where . $msg . PHP_EOL;
2022-10-23 09:51:54 +00:00
$pluginfo = ['filename' => $logfile, 'loglevel' => $level, 'message' => $s,'priority' => $priority, 'logged' => false];
2021-12-03 03:01:39 +00:00
if (! (App::$module == 'setup')) {
Hook::call('logger', $pluginfo);
2021-12-03 03:01:39 +00:00
}
2021-12-03 03:01:39 +00:00
if (! $pluginfo['logged']) {
@file_put_contents($pluginfo['filename'], $pluginfo['message'], FILE_APPEND);
}
2013-02-27 02:26:33 +00:00
}
2021-12-03 03:01:39 +00:00
function logid()
{
$x = session_id();
if (! $x) {
$x = getmypid();
}
return substr(hash('whirlpool', $x), 0, 10);
}
/**
* @brief like logger() but with a function backtrace to pinpoint certain classes
* of problems which show up deep in the calling stack.
*
* @param string $msg Message to log
* @param int $level A log level
* @param int $priority - compatible with syslog
*/
2021-12-03 03:01:39 +00:00
function btlogger($msg, $level = LOGGER_NORMAL, $priority = LOG_INFO)
{
2021-12-03 03:01:39 +00:00
if (! defined('BTLOGGER_DEBUG_FILE')) {
define('BTLOGGER_DEBUG_FILE', 'btlogger.out');
}
2021-12-03 03:01:39 +00:00
logger($msg, $level, $priority);
2021-12-03 03:01:39 +00:00
if (file_exists(BTLOGGER_DEBUG_FILE) && is_writable(BTLOGGER_DEBUG_FILE)) {
$stack = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 2);
$where = basename($stack[0]['file']) . ':' . $stack[0]['line'] . ':' . $stack[1]['function'] . ': ';
$s = datetime_convert('UTC', 'UTC', 'now', ATOM_TIME) . ':' . log_priority_str($priority) . ':' . logid() . ':' . $where . $msg . PHP_EOL;
@file_put_contents(BTLOGGER_DEBUG_FILE, $s, FILE_APPEND);
}
2021-12-03 03:01:39 +00:00
$stack = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
if ($stack) {
for ($x = 1; $x < count($stack); $x++) {
$s = 'stack: ' . basename($stack[$x]['file']) . ':' . $stack[$x]['line'] . ':' . $stack[$x]['function'] . '()';
logger($s, $level, $priority);
2021-12-03 03:01:39 +00:00
if (file_exists(BTLOGGER_DEBUG_FILE) && is_writable(BTLOGGER_DEBUG_FILE)) {
@file_put_contents(BTLOGGER_DEBUG_FILE, $s . PHP_EOL, FILE_APPEND);
}
}
}
}
2021-12-03 03:01:39 +00:00
function log_priority_str($priority)
{
2022-10-23 09:51:54 +00:00
$parr = [
2021-12-03 03:01:39 +00:00
LOG_EMERG => 'LOG_EMERG',
LOG_ALERT => 'LOG_ALERT',
LOG_CRIT => 'LOG_CRIT',
LOG_ERR => 'LOG_ERR',
LOG_WARNING => 'LOG_WARNING',
LOG_NOTICE => 'LOG_NOTICE',
LOG_INFO => 'LOG_INFO',
LOG_DEBUG => 'LOG_DEBUG'
2022-10-23 09:51:54 +00:00
];
2021-12-03 03:01:39 +00:00
if ($parr[$priority]) {
return $parr[$priority];
}
return 'LOG_UNDEFINED';
}
/**
* @brief This is a special logging facility for developers.
*
* It allows one to target specific things to trace/debug and is identical to
* logger() with the exception of the log filename. This allows one to isolate
* specific calls while allowing logger() to paint a bigger picture of overall
* activity and capture more detail.
*
* If you find dlogger() calls in checked in code, you are free to remove them -
* so as to provide a noise-free development environment which responds to events
* you are targetting personally.
*
* @param string $msg Message to log
* @param int $level A log level.
*/
2021-12-03 03:01:39 +00:00
function dlogger($msg, $level = 0)
{
2016-05-25 03:49:23 +00:00
2021-12-03 03:01:39 +00:00
// turn off logger in install mode
2021-12-03 03:01:39 +00:00
if (App::$module == 'setup') {
return;
}
2021-12-03 03:01:39 +00:00
$debugging = get_config('system', 'debugging');
$loglevel = intval(get_config('system', 'loglevel'));
$logfile = get_config('system', 'dlogfile');
2021-12-03 03:01:39 +00:00
if ((! $debugging) || (! $logfile) || ($level > $loglevel)) {
return;
}
2021-12-03 03:01:39 +00:00
$stack = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 2);
$where = basename($stack[0]['file']) . ':' . $stack[0]['line'] . ':' . $stack[1]['function'] . ': ';
2021-12-03 03:01:39 +00:00
@file_put_contents($logfile, datetime_convert('UTC', 'UTC', 'now', ATOM_TIME) . ':' . logid() . ' ' . $where . $msg . PHP_EOL, FILE_APPEND);
2013-02-27 02:26:33 +00:00
}
2021-12-03 03:01:39 +00:00
function profiler($t1, $t2, $label)
{
2022-09-02 20:22:59 +00:00
if (file_exists('profiler.out') && $t1 && $t2) {
2021-12-03 03:01:39 +00:00
@file_put_contents('profiler.out', sprintf('%01.4f %s', $t2 - $t1, $label) . PHP_EOL, FILE_APPEND);
}
}
2021-12-03 03:01:39 +00:00
function activity_match($haystack, $needle)
{
2021-12-03 03:01:39 +00:00
if (! is_array($needle)) {
$needle = [ $needle ];
}
2021-12-03 03:01:39 +00:00
if ($needle) {
foreach ($needle as $n) {
if (($haystack === $n) || (strtolower(basename($n)) === strtolower(basename($haystack)))) {
return true;
}
}
}
return false;
2013-02-27 02:26:33 +00:00
}
/**
* @brief Pull out all \#hashtags and \@person tags from $s.
*
* We also get \@person\@domain.com - which would make
* the regex quite complicated as tags can also
* end a sentence. So we'll run through our results
* and strip the period from any tags which end with one.
*
* @param string $s
2022-10-23 09:51:54 +00:00
* @return array
*/
2023-08-24 08:24:29 +00:00
function get_tags($s = '')
2021-12-03 03:01:39 +00:00
{
$ret = [];
$match = [];
2021-12-03 03:01:39 +00:00
// ignore anything in a code or svg block or HTML tag
2023-01-22 21:06:58 +00:00
$s = preg_replace('/\[code(.*?)](.*?)\[\/code]/sm', '', $s);
$s = preg_replace('/<(.*?)>/sm', '', $s);
$s = preg_replace('/\[svg(.*?)](.*?)\[\/svg]/sm', '', $s);
2021-12-03 03:01:39 +00:00
// ignore anything in [style= ]
2023-01-22 21:06:58 +00:00
$s = preg_replace('/\[style=(.*?)]/sm', '', $s);
2014-02-05 13:34:25 +00:00
2021-12-03 03:01:39 +00:00
// ignore anything in [color= ], because it may contain color codes which are mistaken for tags
2023-01-22 21:06:58 +00:00
$s = preg_replace('/\[color=(.*?)]/sm', '', $s);
2015-01-16 18:10:34 +00:00
2021-12-03 03:01:39 +00:00
// skip anchors in URL
2023-01-22 21:06:58 +00:00
$s = preg_replace('/\[url=(.*?)]/sm', '', $s);
2019-01-23 03:11:53 +00:00
2021-12-03 03:01:39 +00:00
// match any double quoted tags
2023-01-22 21:06:58 +00:00
if (preg_match_all('/([@#!]&quot;.*?&quot;)/', $s, $match)) {
2021-12-03 03:01:39 +00:00
foreach ($match[1] as $mtch) {
$ret[] = $mtch;
}
}
2021-12-03 03:01:39 +00:00
// match any unescaped double quoted tags (rare)
2023-01-22 21:06:58 +00:00
if (preg_match_all('/([@#!]\".*?\")/', $s, $match)) {
2021-12-03 03:01:39 +00:00
foreach ($match[1] as $mtch) {
$ret[] = $mtch;
}
}
2021-12-03 03:01:39 +00:00
// match bracket mentions
2023-01-22 21:06:58 +00:00
if (preg_match_all('/([@!]!?\{.*?})/', $s, $match)) {
2021-12-03 03:01:39 +00:00
foreach ($match[1] as $mtch) {
$ret[] = $mtch;
}
}
2021-12-03 03:01:39 +00:00
// Pull out single word tags. These can be @nickname, @first_last
// and #hash tags.
2018-05-15 00:20:25 +00:00
2023-01-22 21:06:58 +00:00
if (preg_match_all('/(?<![a-zA-Z0-9=\pL\/?;#])([@#!]!?[^ \x0D\x0A,;:?\[{&]+)/u', $s, $match)) {
2021-12-03 03:01:39 +00:00
foreach ($match[1] as $mtch) {
// Cleanup/ignore false positives
2018-05-15 00:20:25 +00:00
2021-12-03 03:01:39 +00:00
// Just ignore these rather than try and adjust the regex to deal with them
if (in_array($mtch, [ '@!', '!!' ])) {
continue;
}
// likewise for trailing period. Strip it off rather than complicate the regex further.
2022-10-23 09:51:54 +00:00
if (str_ends_with($mtch, '.')) {
2021-12-03 03:01:39 +00:00
$mtch = substr($mtch, 0, -1);
}
// ignore strictly numeric tags like #1 or #^ bookmarks or ## double hash
2022-10-23 09:51:54 +00:00
if ((str_starts_with($mtch, '#')) && ( ctype_digit(substr($mtch, 1)) || in_array(substr($mtch, 1, 1), [ '^', '#' ]))) {
2021-12-03 03:01:39 +00:00
continue;
}
// or quote remnants from the quoted strings we already picked out earlier
if ((strpos($mtch, '&quot')) || strpos($mtch, "\"")) {
continue;
}
2014-02-04 03:38:15 +00:00
2021-12-03 03:01:39 +00:00
$ret[] = $mtch;
}
}
2021-12-03 03:01:39 +00:00
// make sure the longer tags are returned first so that if two or more have common substrings
// we'll replace the longest ones first. Otherwise the common substring would be found in
// both strings and the string replacement would link both to the shorter strings and
// fail to link the longer string. Hubzilla github issue #378
2014-02-04 03:38:15 +00:00
2021-12-03 03:01:39 +00:00
usort($ret, 'tag_sort_length');
2014-02-04 03:38:15 +00:00
2021-12-03 03:01:39 +00:00
// logger('get_tags: ' . print_r($ret,true));
2014-02-04 03:38:15 +00:00
2021-12-03 03:01:39 +00:00
return $ret;
2013-02-27 02:26:33 +00:00
}
2021-12-03 03:01:39 +00:00
function tag_sort_length($a, $b)
{
if (mb_strlen($a) == mb_strlen($b)) {
return 0;
}
2021-12-03 03:01:39 +00:00
return((mb_strlen($b) < mb_strlen($a)) ? (-1) : 1);
}
2021-12-03 03:01:39 +00:00
function total_sort($a, $b)
{
if ($a['total'] == $b['total']) {
return 0;
}
return(($b['total'] > $a['total']) ? 1 : (-1));
}
/**
* @brief Quick and dirty quoted_printable encoding.
*
* @param string $s
* @return string
*/
2021-12-03 03:01:39 +00:00
function qp($s)
{
return str_replace("%", "=", rawurlencode($s));
}
2013-02-27 02:26:33 +00:00
2021-12-03 03:01:39 +00:00
function chanlink_hash($s)
{
return z_root() . '/chanview?f=&hash=' . urlencode($s);
2012-12-07 02:17:43 +00:00
}
2021-12-03 03:01:39 +00:00
function chanlink_url($s)
{
return z_root() . '/chanview?f=&url=' . urlencode($s);
2012-12-07 02:17:43 +00:00
}
2021-12-03 03:01:39 +00:00
function chanlink_cid($d)
{
return z_root() . '/chanview?f=&cid=' . intval($d);
2012-12-07 02:17:43 +00:00
}
2021-12-03 03:01:39 +00:00
function search($s, $id = 'search-box', $url = '/search', $save = false)
{
2022-10-23 09:51:54 +00:00
return replace_macros(Theme::get_template('searchbox.tpl'), [
2021-12-03 03:01:39 +00:00
'$s' => $s,
'$id' => $id,
'$action_url' => z_root() . $url,
'$search_label' => t('Search'),
'$save_label' => t('Save'),
2022-01-25 23:20:02 +00:00
'$savedsearch' => Features::enabled(local_channel(), 'savedsearch')
2022-10-23 09:51:54 +00:00
]);
2013-02-27 02:26:33 +00:00
}
2021-12-03 03:01:39 +00:00
function searchbox($s, $id = 'search-box', $url = '/search', $save = false)
{
2022-10-23 09:51:54 +00:00
return replace_macros(Theme::get_template('searchbox.tpl'), [
2021-12-03 03:01:39 +00:00
'$s' => $s,
'$id' => $id,
'$action_url' => z_root() . '/' . $url,
'$search_label' => t('Search'),
'$save_label' => t('Save'),
2022-01-25 23:20:02 +00:00
'$savedsearch' => ($save && Features::enabled(local_channel(), 'savedsearch'))
2022-10-23 09:51:54 +00:00
]);
2013-12-10 05:20:55 +00:00
}
/**
* @brief Replace naked text hyperlink with HTML formatted hyperlink.
*
* @param string $s
2021-12-02 23:02:31 +00:00
* @param bool $me (optional) default false
* @return string
*/
2021-12-03 03:01:39 +00:00
function linkify($s, $me = false)
{
$rel = 'nofollow noopener';
if ($me) {
$rel .= ' me';
}
2023-01-22 21:06:58 +00:00
$s = preg_replace("/(https?:\/\/[a-zA-Z0-9\pL:\/\-?&;.=_@~#'%\$!+,]*)/u", '<a href="$1" rel="' . $rel . '" >$1</a>', $s);
$s = preg_replace("/<(.*?)(src|href)=(.*?)&amp;(.*?)>/ism", '<$1$2=$3&$4>', $s);
2021-12-03 03:01:39 +00:00
return($s);
2013-02-27 02:26:33 +00:00
}
/**
2020-03-05 04:07:26 +00:00
* @brief implement image caching
*
2020-03-05 04:51:20 +00:00
* Note: This is named sslify because the original behaviour was only to proxy image fetches to
* non-SSL resources. Now all images can be cached. If this is disabled, we'll fall back to only caching
* the http: images
*
* @param string $s
* @returns string
*/
2021-12-03 03:01:39 +00:00
function sslify($s, $cache_enable = true)
{
2021-12-03 03:01:39 +00:00
if (! $cache_enable) {
// we're fetching an old item and we are no longer
// caching photos for it. Remove any existing cached photos.
// Cron_weekly tasks will also remove these, but if the cache
// entry was updated recently they might not get removed for
// another couple of months.
2021-12-03 03:01:39 +00:00
uncache($s);
}
2020-08-17 04:55:59 +00:00
2021-12-03 03:01:39 +00:00
if ((! $cache_enable) || (! intval(get_config('system', 'cache_images', 1)))) {
// if caching is prevented for whatever reason, proxy any non-SSL photos
2020-03-05 04:07:26 +00:00
2022-10-23 09:51:54 +00:00
if (!str_contains(z_root(), 'https:')) {
2021-12-03 03:01:39 +00:00
return $s;
}
2020-03-05 04:07:26 +00:00
2021-12-03 03:01:39 +00:00
// we'll only sslify img tags because media files will probably choke.
2020-03-05 04:07:26 +00:00
2023-01-22 21:06:58 +00:00
$pattern = "/<img(.*?)src=\"(http:.*?)\"(.*?)>/";
2020-03-05 04:07:26 +00:00
2021-12-03 03:01:39 +00:00
$matches = null;
$cnt = preg_match_all($pattern, $s, $matches, PREG_SET_ORDER);
if ($cnt) {
foreach ($matches as $match) {
$filename = basename(parse_url($match[2], PHP_URL_PATH));
$s = str_replace($match[2], z_root() . '/sslify/' . $filename . '?f=&url=' . urlencode($match[2]), $s);
}
}
return $s;
}
2020-03-05 04:07:26 +00:00
2023-01-22 21:06:58 +00:00
$pattern = "/<img(.*?)src=\"(https?:.*?)\"(.*?)>/ism";
2021-12-03 03:01:39 +00:00
$matches = null;
$cnt = preg_match_all($pattern, $s, $matches, PREG_SET_ORDER);
if ($cnt) {
foreach ($matches as $match) {
// For access controlled photos using OpenWebAuth, remove any zid attributes.
// This will cache a publicly available image but will not cache a protected one.
$clean = strip_zids(strip_query_param($match[2], 'f'));
$cached = Img_cache::check($clean, 'cache/img');
if ($cached) {
2023-07-04 21:57:56 +00:00
// $file = Img_cache::get_filename($clean,'cache/img');
// $imageSize = getimagesize($cached);
// $height = preg_match('/height=\"(.*?)\"/ism', $match[1],$h);
// $width = preg_match('/width=\"(.*?)\"/ism', $match[1], $w);
// $alt = preg_match('/alt=\"(.*?)\"/ism', $match[1], $a);
2021-12-03 03:01:39 +00:00
// @fixme getimagesize and replace height/width/alt in image tag
$s = str_replace($match[2], z_root() . '/ca/' . basename(Img_cache::get_filename($clean, 'cache/img')) . '?url=' . urlencode($clean), $s);
}
}
}
2021-12-03 03:01:39 +00:00
return $s;
}
// clean out the image cache
2021-12-03 03:01:39 +00:00
function uncache($s)
{
2023-01-22 21:06:58 +00:00
$pattern = "/<img(.*?)src=\"(https?:.*?)\"(.*?)>/ism";
2021-12-03 03:01:39 +00:00
$matches = null;
$cnt = preg_match_all($pattern, $s, $matches, PREG_SET_ORDER);
if ($cnt) {
foreach ($matches as $match) {
// repeat the filename generation procedure we used when creating the cache entry
$clean = strip_zids(strip_query_param($match[2], 'f'));
$file = Img_cache::get_filename($clean, 'cache/img');
if (file_exists($file)) {
unlink($file);
}
}
}
2021-12-03 03:01:39 +00:00
return $s;
}
/**
* @brief Get an array of poke verbs.
*
* @return array
* * \e index is present tense verb
* * \e value is array containing past tense verb, translation of present, translation of past
*/
2021-12-03 03:01:39 +00:00
function get_poke_verbs()
{
if (get_config('system', 'poke_basic')) {
2022-10-23 09:51:54 +00:00
$arr = [
'poke' => ['poked', t('poke'), t('poked')],
];
2021-12-03 03:01:39 +00:00
} else {
2022-10-23 09:51:54 +00:00
$arr = [
'poke' => ['poked', t('poke'), t('poked')],
'ping' => ['pinged', t('ping'), t('pinged')],
'prod' => ['prodded', t('prod'), t('prodded')],
'slap' => ['slapped', t('slap'), t('slapped')],
'finger' => ['fingered', t('finger'), t('fingered')],
'rebuff' => ['rebuffed', t('rebuff'), t('rebuffed')],
];
2021-12-03 03:01:39 +00:00
/**
* @hooks poke_verbs
* * \e array associative array with another array as value
*/
Hook::call('poke_verbs', $arr);
2021-12-03 03:01:39 +00:00
}
2021-12-03 03:01:39 +00:00
return $arr;
2012-07-20 01:53:26 +00:00
}
/**
* @brief Get an array of mood verbs.
*
* @return array
* * \e index is the verb
* * \e value is the translated verb
*/
2021-12-03 03:01:39 +00:00
function get_mood_verbs()
{
$arr = [
'happy' => t('happy'),
'sad' => t('sad'),
'mellow' => t('mellow'),
'tired' => t('tired'),
'perky' => t('perky'),
'angry' => t('angry'),
'stupefied' => t('stupefied'),
'puzzled' => t('puzzled'),
'interested' => t('interested'),
'bitter' => t('bitter'),
'cheerful' => t('cheerful'),
'alive' => t('alive'),
'annoyed' => t('annoyed'),
'anxious' => t('anxious'),
'cranky' => t('cranky'),
'disturbed' => t('disturbed'),
'frustrated' => t('frustrated'),
'depressed' => t('depressed'),
'motivated' => t('motivated'),
'relaxed' => t('relaxed'),
'surprised' => t('surprised'),
];
/**
* @hooks mood_verbs
* * \e array associative array with mood verbs
*/
Hook::call('mood_verbs', $arr);
2021-12-03 03:01:39 +00:00
return $arr;
2012-08-24 03:00:10 +00:00
}
/**
* @brief Function to list all smilies, both internal and from addons.
*
2022-10-23 09:51:54 +00:00
* @return array
*/
2021-12-03 03:01:39 +00:00
function list_smilies($default_only = false)
{
2022-10-23 09:51:54 +00:00
$texts = [
2021-12-03 03:01:39 +00:00
'&lt;3',
'&lt;/3',
':-)',
';-)',
':-(',
':-P',
':-p',
':-"',
':-&quot;',
':-x',
':-X',
':-D',
'8-|',
'8-O',
':-O',
'\\o/',
'o.O',
'O.o',
'o_O',
'O_o',
":'(",
":-!",
":-/",
":-[",
"8-)",
':beer',
':homebrew',
':coffee',
':facepalm',
':like',
':dislike'
2022-10-23 09:51:54 +00:00
];
2021-12-03 03:01:39 +00:00
2022-10-23 09:51:54 +00:00
$icons = [
2021-12-03 03:01:39 +00:00
'<img class="smiley" src="' . z_root() . '/images/emoticons/smiley-heart.gif" alt="&lt;3" />',
'<img class="smiley" src="' . z_root() . '/images/emoticons/smiley-brokenheart.gif" alt="&lt;/3" />',
'<img class="smiley" src="' . z_root() . '/images/emoticons/smiley-smile.gif" alt=":-)" />',
'<img class="smiley" src="' . z_root() . '/images/emoticons/smiley-wink.gif" alt=";-)" />',
'<img class="smiley" src="' . z_root() . '/images/emoticons/smiley-frown.gif" alt=":-(" />',
'<img class="smiley" src="' . z_root() . '/images/emoticons/smiley-tongue-out.gif" alt=":-P" />',
'<img class="smiley" src="' . z_root() . '/images/emoticons/smiley-tongue-out.gif" alt=":-p" />',
'<img class="smiley" src="' . z_root() . '/images/emoticons/smiley-kiss.gif" alt=":-\"" />',
'<img class="smiley" src="' . z_root() . '/images/emoticons/smiley-kiss.gif" alt=":-\"" />',
'<img class="smiley" src="' . z_root() . '/images/emoticons/smiley-kiss.gif" alt=":-x" />',
'<img class="smiley" src="' . z_root() . '/images/emoticons/smiley-kiss.gif" alt=":-X" />',
'<img class="smiley" src="' . z_root() . '/images/emoticons/smiley-laughing.gif" alt=":-D" />',
'<img class="smiley" src="' . z_root() . '/images/emoticons/smiley-surprised.gif" alt="8-|" />',
'<img class="smiley" src="' . z_root() . '/images/emoticons/smiley-surprised.gif" alt="8-O" />',
'<img class="smiley" src="' . z_root() . '/images/emoticons/smiley-surprised.gif" alt=":-O" />',
'<img class="smiley" src="' . z_root() . '/images/emoticons/smiley-thumbsup.gif" alt="\\o/" />',
'<img class="smiley" src="' . z_root() . '/images/emoticons/smiley-Oo.gif" alt="o.O" />',
'<img class="smiley" src="' . z_root() . '/images/emoticons/smiley-Oo.gif" alt="O.o" />',
'<img class="smiley" src="' . z_root() . '/images/emoticons/smiley-Oo.gif" alt="o_O" />',
'<img class="smiley" src="' . z_root() . '/images/emoticons/smiley-Oo.gif" alt="O_o" />',
'<img class="smiley" src="' . z_root() . '/images/emoticons/smiley-cry.gif" alt=":\'(" />',
'<img class="smiley" src="' . z_root() . '/images/emoticons/smiley-foot-in-mouth.gif" alt=":-!" />',
'<img class="smiley" src="' . z_root() . '/images/emoticons/smiley-undecided.gif" alt=":-/" />',
'<img class="smiley" src="' . z_root() . '/images/emoticons/smiley-embarassed.gif" alt=":-[" />',
'<img class="smiley" src="' . z_root() . '/images/emoticons/smiley-cool.gif" alt="8-)" />',
'<img class="smiley" src="' . z_root() . '/images/emoticons/beer_mug.gif" alt=":beer" />',
'<img class="smiley" src="' . z_root() . '/images/emoticons/beer_mug.gif" alt=":homebrew" />',
'<img class="smiley" src="' . z_root() . '/images/emoticons/coffee.gif" alt=":coffee" />',
'<img class="smiley" src="' . z_root() . '/images/emoticons/smiley-facepalm.gif" alt=":facepalm" />',
'<img class="smiley" src="' . z_root() . '/images/emoticons/like.gif" alt=":like" />',
'<img class="smiley" src="' . z_root() . '/images/emoticons/dislike.gif" alt=":dislike" />'
2022-10-23 09:51:54 +00:00
];
2021-12-03 03:01:39 +00:00
2022-10-23 09:51:54 +00:00
$params = ['texts' => $texts, 'icons' => $icons];
2021-12-03 03:01:39 +00:00
if ($default_only) {
return $params;
}
Hook::call('smilie', $params);
2021-12-03 03:01:39 +00:00
return $params;
2014-12-20 16:33:35 +00:00
}
2014-12-20 16:33:35 +00:00
/**
* @brief Replaces text emoticons with graphical images.
2014-12-20 16:33:35 +00:00
*
* It is expected that this function will be called using HTML text.
* We will escape text between HTML pre and code blocks, and HTML attributes
* (such as urls) from being processed.
*
* At a higher level, the bbcode [nosmile] tag can be used to prevent this
2014-12-20 16:33:35 +00:00
* function from being executed by the prepare_text() routine when preparing
* bbcode source for HTML display.
2014-12-20 16:33:35 +00:00
*
* @param string $s
2021-12-02 23:02:31 +00:00
* @param bool $sample (optional) default false
* @return string
2014-12-20 16:33:35 +00:00
*/
2021-12-03 03:01:39 +00:00
function smilies($s, $sample = false)
{
if (
intval(get_config('system', 'no_smilies'))
|| (local_channel() && intval(get_pconfig(local_channel(), 'system', 'no_smilies')))
) {
return $s;
}
2014-12-20 16:33:35 +00:00
2021-12-03 03:01:39 +00:00
$s = preg_replace_callback('{<(pre|code)>.*?</\1>}ism', 'smile_shield', $s);
$s = preg_replace_callback('/<[a-z]+ .*?>/ism', 'smile_shield', $s);
2014-12-20 16:33:35 +00:00
2016-08-09 23:59:35 +00:00
2021-12-03 03:01:39 +00:00
$params = list_smilies();
$params['string'] = $s;
2011-09-12 10:21:39 +00:00
2021-12-03 03:01:39 +00:00
if ($sample) {
$s = '<div class="smiley-sample">';
for ($x = 0; $x < count($params['texts']); $x++) {
$s .= '<dl><dt>' . $params['texts'][$x] . '</dt><dd>' . $params['icons'][$x] . '</dd></dl>';
}
} else {
$params['string'] = preg_replace_callback('/&lt;(3+)/', 'preg_heart', $params['string']);
$s = str_replace($params['texts'], $params['icons'], $params['string']);
}
2016-08-09 23:59:35 +00:00
2021-12-03 03:01:39 +00:00
$s = preg_replace_callback('/<!--base64:(.*?)-->/ism', 'smile_unshield', $s);
2021-12-03 03:01:39 +00:00
return $s;
2013-02-27 02:26:33 +00:00
}
/**
* @brief
*
* @param array $m
* @return string
*/
2021-12-03 03:01:39 +00:00
function smile_shield($m)
{
return '<!--base64:' . base64special_encode($m[0]) . '-->';
2014-02-02 13:52:00 +00:00
}
2021-12-03 03:01:39 +00:00
function smile_unshield($m)
{
return base64special_decode($m[1]);
}
/**
* @brief Expand <3333 to the correct number of hearts.
*
* @param array $x
*/
2021-12-03 03:01:39 +00:00
function preg_heart($x)
{
2016-05-25 03:49:23 +00:00
2021-12-03 03:01:39 +00:00
if (strlen($x[1]) == 1) {
return $x[0];
}
2021-12-03 03:01:39 +00:00
$t = '';
for ($cnt = 0; $cnt < strlen($x[1]); $cnt++) {
$t .= '<img class="smiley" src="' . z_root() . '/images/emoticons/smiley-heart.gif" alt="&lt;&#8203;3" />';
}
2021-12-03 03:01:39 +00:00
$r = str_replace($x[0], $t, $x[0]);
2021-12-03 03:01:39 +00:00
return $r;
}
2013-02-27 02:26:33 +00:00
2021-12-03 03:01:39 +00:00
function day_translate($s)
{
$ret = str_replace(
2022-10-23 09:51:54 +00:00
['Monday','Tuesday','Wednesday','Thursday','Friday','Saturday','Sunday'],
[t('Monday'), t('Tuesday'), t('Wednesday'), t('Thursday'), t('Friday'), t('Saturday'), t('Sunday')],
2021-12-03 03:01:39 +00:00
$s
);
2021-12-03 03:01:39 +00:00
$ret = str_replace(
2022-10-23 09:51:54 +00:00
['January','February','March','April','May','June','July','August','September','October','November','December'],
[t('January'), t('February'), t('March'), t('April'), t('May'), t('June'), t('July'), t('August'), t('September'), t('October'), t('November'), t('December')],
2021-12-03 03:01:39 +00:00
$ret
);
2021-12-03 03:01:39 +00:00
return $ret;
2013-02-27 02:26:33 +00:00
}
/**
* @brief normalises a string.
*
* @param string $url
* @return string
*/
2021-12-03 03:01:39 +00:00
function normalise_link($url)
{
2022-10-23 09:51:54 +00:00
$ret = str_replace(['https:', '//www.'], ['http:', '//'], $url);
2021-12-03 03:01:39 +00:00
return(rtrim($ret, '/'));
2013-02-27 02:26:33 +00:00
}
/**
* @brief Compare two URLs to see if they are the same.
*
* But ignore slight but hopefully insignificant differences such as if one
* is https and the other isn't, or if one is www.something and the other
* isn't - and also ignore case differences.
*
2016-06-23 12:18:58 +00:00
* @see normalise_link()
*
* @param string $a
* @param string $b
2022-10-24 07:37:30 +00:00
* @return bool
*/
2021-12-03 03:01:39 +00:00
function link_compare($a, $b)
{
if (strcasecmp(normalise_link($a), normalise_link($b)) === 0) {
return true;
}
2021-12-03 03:01:39 +00:00
return false;
2013-02-27 02:26:33 +00:00
}
2022-10-24 07:37:30 +00:00
function unobscure($item)
2021-12-03 03:01:39 +00:00
{
return;
2015-04-19 20:41:12 +00:00
}
2021-12-03 03:01:39 +00:00
function unobscure_mail(&$item)
{
if (array_key_exists('mail_obscured', $item) && intval($item['mail_obscured'])) {
if ($item['title']) {
$item['title'] = base64url_decode(str_rot47($item['title']));
}
if ($item['body']) {
$item['body'] = base64url_decode(str_rot47($item['body']));
}
}
2013-10-14 04:14:04 +00:00
}
2022-10-24 07:37:30 +00:00
function theme_attachments($item)
2021-12-03 03:01:39 +00:00
{
2021-03-12 00:03:45 +00:00
2021-12-03 03:01:39 +00:00
$s = EMPTY_STR;
2021-12-03 03:01:39 +00:00
$arr = json_decode($item['attach'], true);
2021-12-03 03:01:39 +00:00
if (is_array($arr) && count($arr)) {
$attaches = [];
foreach ($arr as $r) {
$label = EMPTY_STR;
2022-10-24 07:37:30 +00:00
$icon = getIconFromType($r['type'] ?? 'application/octet-stream');
2022-03-18 19:38:08 +00:00
2021-12-03 03:01:39 +00:00
if (isset($r['title']) && $r['title']) {
$label = urldecode(htmlspecialchars($r['title'], ENT_COMPAT, 'UTF-8'));
}
2021-03-11 23:05:16 +00:00
2021-12-03 03:01:39 +00:00
if (isset($r['name']) && $r['name']) {
$label = urldecode(htmlspecialchars($r['name'], ENT_COMPAT, 'UTF-8'));
}
2021-12-03 03:01:39 +00:00
if (isset($r['href']) && $r['href']) {
$m = parse_url($r['href']);
}
if (! $label) {
if (isset($r['href']) && $r['href']) {
if (isset($m) && $m && $m['path']) {
$label = basename($m['path']);
}
}
}
2021-12-03 03:01:39 +00:00
// some feeds provide an attachment where title is an empty space
if (! trim($label)) {
$label = t('Unknown Attachment');
}
2021-12-03 03:01:39 +00:00
$title = t('Size') . ' ' . ((isset($r['length']) && $r['length']) ? userReadableSize($r['length']) : t('unknown'));
2021-12-03 03:01:39 +00:00
if (! (isset($r['href']))) {
continue;
}
2021-12-03 03:01:39 +00:00
if (isset($m) && $m && $m['scheme'] === 'data') {
continue;
}
2022-01-25 01:26:12 +00:00
if (Channel::is_foreigner($item['author_xchan'])) {
2021-12-03 03:01:39 +00:00
$url = $r['href'];
} else {
2023-08-17 21:08:13 +00:00
$url = z_root() . '/magic?f=&owa=1&hash=' . $item['author_xchan'] . '&bdest=' . bin2hex($r['href'] . (($r['revision']) ? '/' . $r['revision'] : ''));
2021-12-03 03:01:39 +00:00
}
$attaches[] = [
'label' => $label,
'url' => $url,
'icon' => $icon,
'title' => $title
];
}
2022-02-12 20:43:29 +00:00
$s = replace_macros(Theme::get_template('item_attach.tpl'), [
2021-12-03 03:01:39 +00:00
'$attaches' => $attaches
]);
}
2021-12-03 03:01:39 +00:00
return $s;
2013-10-14 04:14:04 +00:00
}
2022-10-24 07:37:30 +00:00
function format_categories($item, $writeable)
2021-12-03 03:01:39 +00:00
{
2021-12-03 03:01:39 +00:00
$s = EMPTY_STR;
2021-12-03 03:01:39 +00:00
if (! (isset($item['term']) && $item['term'])) {
return $s;
}
2021-03-12 00:03:45 +00:00
2021-12-03 03:01:39 +00:00
$terms = get_terms_oftype($item['term'], TERM_CATEGORY);
if ($terms) {
$categories = [];
foreach ($terms as $t) {
$term = htmlspecialchars($t['term'], ENT_COMPAT, 'UTF-8', false) ;
if (! trim($term)) {
continue;
}
$removelink = (($writeable) ? z_root() . '/filerm/' . $item['id'] . '?f=&cat=' . urlencode($t['term']) : '');
2022-10-23 09:51:54 +00:00
$categories[] = ['term' => $term, 'writeable' => $writeable, 'removelink' => $removelink, 'url' => zid($t['url'])];
2021-12-03 03:01:39 +00:00
}
2022-10-23 09:51:54 +00:00
$s = replace_macros(Theme::get_template('item_categories.tpl'), [
2021-12-03 03:01:39 +00:00
'$remove' => t('remove category'),
'$categories' => $categories
2022-10-23 09:51:54 +00:00
]);
2021-12-03 03:01:39 +00:00
}
2021-12-03 03:01:39 +00:00
return $s;
}
/**
* @brief Add any hashtags which weren't mentioned in the message body, e.g. community tags
*
* @param[in] array &$item
* @return string HTML link of hashtag
*/
2022-10-24 07:37:30 +00:00
function format_hashtags($item)
2021-12-03 03:01:39 +00:00
{
$s = '';
2021-12-03 03:01:39 +00:00
if (! isset($item['term'])) {
return $s;
}
2021-04-01 21:39:18 +00:00
2022-10-23 09:51:54 +00:00
$terms = get_terms_oftype($item['term'], [TERM_HASHTAG,TERM_COMMUNITYTAG]);
2021-12-03 03:01:39 +00:00
if ($terms) {
foreach ($terms as $t) {
$term = htmlspecialchars($t['term'], ENT_COMPAT, 'UTF-8', false) ;
if (! trim($term)) {
continue;
}
2021-04-01 21:39:18 +00:00
2021-12-03 03:01:39 +00:00
// Pleroma uses example.com/tags/xxx in the taglist but example.com/tag/xxx in the body. Possibly a bug because one of these leads to
// an error page, but it messes up our detection of whether the tag was already present in the body.
2021-12-03 03:01:39 +00:00
if ($t['url'] && ((stripos($item['body'], $t['url']) !== false) || (stripos($item['body'], str_replace('/tags/', '/tag/', $t['url']))))) {
continue;
}
if ($s) {
$s .= ' ';
}
$s .= '<span class="badge badge-pill badge-info"><i class="fa fa-hashtag"></i>&nbsp;<a href="' . zid($t['url']) . '" >' . $term . '</a></span>';
2021-12-03 03:01:39 +00:00
}
}
2021-12-03 03:01:39 +00:00
return $s;
}
2022-10-24 07:37:30 +00:00
function format_mentions($item)
2021-12-03 03:01:39 +00:00
{
$s = EMPTY_STR;
2021-12-03 03:01:39 +00:00
$pref = intval(PConfig::Get($item['uid'], 'system', 'tag_username', Config::Get('system', 'tag_username', false)));
2013-10-14 04:14:04 +00:00
2021-12-03 03:01:39 +00:00
// hide "auto mentions" by default - this hidden pref let's you display them.
2013-10-14 04:14:04 +00:00
2021-12-03 03:01:39 +00:00
$show = intval(PConfig::Get($item['uid'], 'system', 'show_auto_mentions', false));
if ((! $show) && (! $item['resource_type'])) {
return $s;
}
2021-12-03 03:01:39 +00:00
if ($pref === 127) {
return $s;
}
2021-12-03 03:01:39 +00:00
if (! (isset($item['term']) && is_array($item['term']) && $item['term'])) {
return $s;
}
$terms = get_terms_oftype($item['term'], TERM_MENTION);
if ($terms) {
foreach ($terms as $t) {
$term = htmlspecialchars($t['term'], ENT_COMPAT, 'UTF-8', false) ;
if (! trim($term)) {
continue;
}
2019-07-31 00:56:35 +00:00
2021-12-03 03:01:39 +00:00
if ($t['url'] && stripos($item['body'], $t['url']) !== false) {
continue;
}
2021-12-03 03:01:39 +00:00
// some platforms put the identity url into href rather than the profile url. Accept either form.
$x = q(
"select * from xchan where xchan_url = '%s' or xchan_hash = '%s' limit 1",
dbesc($t['url']),
dbesc($t['url'])
);
if ($x) {
switch ($pref) {
case 0:
$txt = $x[0]['xchan_name'];
break;
case 1:
2022-10-24 07:37:30 +00:00
$txt = (($x[0]['xchan_addr']) ?: $x[0]['xchan_name']);
2021-12-03 03:01:39 +00:00
break;
case 2:
default;
if ($x[0]['xchan_addr']) {
$txt = sprintf(t('%1$s (%2$s)'), $x[0]['xchan_name'], $x[0]['xchan_addr']);
} else {
$txt = $x[0]['xchan_name'];
}
break;
}
}
2015-11-26 11:26:27 +00:00
2021-12-03 03:01:39 +00:00
if ($s) {
$s .= ' ';
}
$s .= '<span class="badge badge-pill badge-success"><i class="fa fa-at"></i>&nbsp;<a href="' . zid(chanlink_url($t['url'])) . '" >' . $txt . '</a></span>';
2021-12-03 03:01:39 +00:00
}
}
2019-06-13 03:57:28 +00:00
2021-12-03 03:01:39 +00:00
return $s;
}
2019-06-12 05:12:25 +00:00
2021-12-03 03:01:39 +00:00
function format_filer(&$item)
{
$s = EMPTY_STR;
2021-12-03 03:01:39 +00:00
if (! (isset($item['term']) && $item['term'])) {
return $s;
}
2013-10-14 04:14:04 +00:00
2021-12-03 03:01:39 +00:00
$terms = get_terms_oftype($item['term'], TERM_FILE);
if ($terms) {
$categories = [];
foreach ($terms as $t) {
$term = htmlspecialchars($t['term'], ENT_COMPAT, 'UTF-8', false) ;
if (! trim($term)) {
continue;
}
$removelink = z_root() . '/filerm/' . $item['id'] . '?f=&term=' . urlencode($t['term']);
2022-10-23 09:51:54 +00:00
$categories[] = ['term' => $term, 'removelink' => $removelink];
2021-12-03 03:01:39 +00:00
}
2012-07-10 05:08:25 +00:00
2022-10-23 09:51:54 +00:00
$s = replace_macros(Theme::get_template('item_filer.tpl'), [
2021-12-03 03:01:39 +00:00
'$remove' => t('remove from file'),
'$categories' => $categories
2022-10-23 09:51:54 +00:00
]);
2021-12-03 03:01:39 +00:00
}
2021-12-03 03:01:39 +00:00
return $s;
}
2013-10-14 04:14:04 +00:00
2022-09-16 10:57:04 +00:00
function generate_map($lat, $lon, $zoom = 16)
2021-12-03 03:01:39 +00:00
{
2021-12-03 03:01:39 +00:00
$arr = [
2022-09-16 10:57:04 +00:00
'lat' => $lat,
'lon' => $lon,
2021-12-03 03:01:39 +00:00
'zoom' => $zoom,
'html' => ''
];
2020-08-17 04:55:59 +00:00
2021-12-03 03:01:39 +00:00
/**
* @hooks generate_map
* * \e string \b lat
* * \e string \b lon
* * \e string \b html the parsed HTML to return
*/
Hook::call('generate_map', $arr);
return (strlen($arr['html'])) ? $arr['html'] : 'geo:' . $lat . ',' . $lon . '&z=' . $zoom;
2021-12-03 03:01:39 +00:00
}
2021-12-03 03:01:39 +00:00
function generate_named_map($location)
{
$arr = [
'location' => $location,
'html' => ''
];
2021-12-03 03:01:39 +00:00
/**
* @hooks generate_named_map
* * \e string \b location
* * \e string \b html the parsed HTML to return
*/
Hook::call('generate_named_map', $arr);
2022-10-24 07:37:30 +00:00
return (($arr['html']) ?: $location);
2013-02-27 02:26:33 +00:00
}
function item_is_censored($item, $observer) {
2019-09-21 01:00:29 +00:00
// Don't censor your own posts.
if ($observer && $item['author_xchan'] === $observer) {
return false;
}
2020-01-22 04:54:05 +00:00
2022-10-24 07:37:30 +00:00
$censored = ($item['author']['abook_censor']
2022-08-03 09:52:05 +00:00
|| $item['owner']['abook_censor']
|| $item['author']['xchan_selfcensored']
|| $item['owner']['xchan_selfcensored']
|| $item['author']['xchan_censored']
|| $item['owner']['xchan_censored']
2022-10-24 07:37:30 +00:00
|| intval($item['item_nsfw'])) && (get_safemode());
2022-08-03 09:52:05 +00:00
return $censored;
}
function prepare_body(&$item, $attach = false, $opts = false)
{
Hook::call('prepare_body_init', $item);
2020-01-22 04:54:05 +00:00
if (item_is_censored($item, get_observer_hash())) {
2021-12-03 03:01:39 +00:00
if (! $opts) {
$opts = [];
}
$opts['censored'] = true;
}
2020-01-29 04:13:08 +00:00
2021-12-03 03:01:39 +00:00
$s = '';
$photo = '';
2020-01-22 04:54:05 +00:00
2022-10-24 07:37:30 +00:00
$is_photo = ($item['verb'] === ACTIVITY_POST) && ($item['obj_type'] === ACTIVITY_OBJ_PHOTO);
2020-01-22 04:54:05 +00:00
if ($is_photo) {
2022-09-05 21:44:16 +00:00
$object = is_array($item['obj']) ? $item['obj'] : json_decode($item['obj'], true);
2021-12-03 03:01:39 +00:00
$ptr = null;
2020-02-10 05:39:26 +00:00
2021-12-03 03:01:39 +00:00
if (is_array($object) && array_key_exists('url', $object) && is_array($object['url'])) {
if (array_key_exists(0, $object['url'])) {
foreach ($object['url'] as $link) {
if (array_key_exists('width', $link) && $link['width'] >= 640 && $link['width'] <= 1024) {
$ptr = $link;
}
}
if (! $ptr) {
$ptr = $object['url'][0];
}
} else {
$ptr = $object['url'];
}
2020-02-10 05:39:26 +00:00
2021-12-03 03:01:39 +00:00
if ($ptr) {
$alt_text = ' alt="' . ((isset($ptr['summary']) && $ptr['summary']) ? htmlspecialchars($ptr['summary'], ENT_QUOTES, 'UTF-8') : t('Image/photo')) . '"';
$item['body'] = '[zmg' . $alt_text . ']' . $ptr['href'] . '[/zmg]' . "\n\n" . $item['body'];
2021-12-03 03:01:39 +00:00
}
}
}
if ($item['item_obscured']) {
$s .= prepare_binary($item);
} else {
if ($item['summary']) {
// 8203 is a zero-width space so as not to trigger a markdown link if the summary starts with parentheses
$s .= prepare_text('[summary]&#8203;' . $item['summary'] . '[/summary]&#8203;' . $item['body'], $item['mimetype'], $opts);
} else {
if ($item['html']) {
$s .= smilies($item['html']);
} else {
$s .= prepare_text($item['body'], $item['mimetype'], $opts);
}
}
}
$poll = (($item['obj_type'] === 'Question' && in_array($item['verb'], [ 'Create','Update' ])) ? format_poll($item, $s, $opts) : false);
if ($poll) {
$s = $poll;
}
$e = trim($item['body']);
$em = Emoji\is_single_emoji($e) || mb_strlen($e) === 1;
if ($em) {
$s = '<span style="font-size: 2rem;">' . trim($item['body']) . '</span>';
}
2020-01-22 04:54:05 +00:00
2021-12-03 03:01:39 +00:00
$event = (($item['obj_type'] === ACTIVITY_OBJ_EVENT) ? format_event_obj($item['obj']) : false);
2020-01-22 04:54:05 +00:00
2021-12-03 03:01:39 +00:00
// This is not the most pleasant UI element possible, but this is difficult to add to one of the templates.
// Eventually we may wish to add/remove to/from calendar in the message title area but it will take a chunk
// of code re-factoring to make that happen.
2021-12-03 03:01:39 +00:00
if (is_array($event) && $event['header'] && $item['resource_id']) {
$event['header'] .= '<i class="fa fa-asterisk" title="' . t('Added to your calendar') . '"></i>' . '&nbsp;' . t('Added to your calendar');
}
2022-10-23 09:51:54 +00:00
$prep_arr = [
2021-12-03 03:01:39 +00:00
'item' => $item,
'html' => $event ? $event['content'] : $s,
'event' => ((is_array($event)) ? $event['header'] : EMPTY_STR),
'photo' => $photo
2022-10-23 09:51:54 +00:00
];
2021-12-03 03:01:39 +00:00
Hook::call('prepare_body', $prep_arr);
2021-12-03 03:01:39 +00:00
$s = $prep_arr['html'];
$photo = $prep_arr['photo'];
$event = $prep_arr['event'];
if (! $attach) {
return $s;
}
2022-10-23 09:51:54 +00:00
if (str_contains($s, '<div class="map">')) {
2022-09-16 10:57:04 +00:00
if ($item['lat'] || $item['lon']) {
$lat = $item['lat'];
$lon = $item['lon'];
}
elseif ($item['coord']) {
$tmp = explode(' ', $item['coord']);
if (count($tmp) > 1) {
$lat = $tmp[0];
$lon = $tmp[1];
}
}
$x = generate_map($lat, $lon);
2021-12-03 03:01:39 +00:00
if ($x) {
$s = preg_replace('/\<div class\=\"map\"\>/', '$0' . $x, $s);
}
}
$attachments = theme_attachments($item);
2022-10-24 07:37:30 +00:00
$writeable = get_observer_hash() == $item['owner_xchan'];
2021-12-03 03:01:39 +00:00
$tags = format_hashtags($item);
$mentions = format_mentions($item);
$categories = format_categories($item, $writeable);
if (local_channel() == $item['uid']) {
$filer = format_filer($item);
}
// Caching photos can use absurd amounts of space.
// Don't cache photos if somebody is just browsing the stream to the
// beginning of time. This optimises performance for viewing things created
// recently. Also catch an explicit expiration of 0 or "no cache".
$cache_expire = intval(get_config('system', 'default_expire_days'));
if ($cache_expire <= 0) {
$cache_expire = 60;
}
2022-10-24 07:37:30 +00:00
$cache_enable = !((($cache_expire) && ($item['created'] < datetime_convert('UTC', 'UTC', 'now - ' . $cache_expire . ' days'))));
2021-12-03 03:01:39 +00:00
// disable Unicode RTL over-ride since it can destroy presentation in some cases, use HTML or CSS instead
$s = str_replace([ '&#x202e;', '&#x202E;', html_entity_decode('&#x202e;', ENT_QUOTES, 'UTF-8') ], [ '','','' ], $s);
2021-12-03 03:01:39 +00:00
if ($s) {
$s = sslify($s, $cache_enable);
}
if ($photo) {
$photo = sslify($photo, $cache_enable);
}
if ($event) {
$event = sslify($event, $cache_enable);
}
2022-10-23 09:51:54 +00:00
$prep_arr = [
2021-12-03 03:01:39 +00:00
'item' => $item,
'photo' => $photo,
'html' => $s,
'event' => $event,
'categories' => $categories,
'folders' => $filer,
'tags' => $tags,
'mentions' => $mentions,
'attachments' => $attachments
2022-10-23 09:51:54 +00:00
];
2021-12-03 03:01:39 +00:00
Hook::call('prepare_body_final', $prep_arr);
2021-12-03 03:01:39 +00:00
unset($prep_arr['item']);
return $prep_arr;
}
2021-12-03 03:01:39 +00:00
function separate_img_links($s)
{
2022-10-24 07:37:30 +00:00
/** @noinspection HtmlRequiredAltAttribute */
/** @noinspection HtmlUnknownAttribute */
2021-12-03 03:01:39 +00:00
$x = preg_replace(
'/\<a (.*?)\>\<img(.*?)\>\<\/a\>/ism',
'<img$2><br><a $1>' . t('Link') . '</a><br>',
$s
);
2021-12-03 03:01:39 +00:00
return $x;
}
2021-12-03 03:01:39 +00:00
function format_poll($item, $s, $opts)
{
2021-12-03 03:01:39 +00:00
if (! is_array($item['obj'])) {
$act = json_decode($item['obj'], true);
} else {
$act = $item['obj'];
}
2021-12-03 03:01:39 +00:00
if (! is_array($act)) {
return EMPTY_STR;
}
2021-12-03 03:01:39 +00:00
$commentable = can_comment_on_post(((local_channel()) ? get_observer_hash() : EMPTY_STR), $item);
2023-08-11 05:03:43 +00:00
if (!$commentable) {
$commentable = local_channel() && local_channel() == $item['uid'];
}
2021-12-03 03:01:39 +00:00
//logger('format_poll: ' . print_r($item,true));
2023-08-11 05:03:43 +00:00
$activated = local_channel() && local_channel() == $item['uid'];
2021-12-03 03:01:39 +00:00
$output = $s . EOL . EOL;
2021-12-03 03:01:39 +00:00
$closed = false;
$closing = false;
2021-12-03 03:01:39 +00:00
if ($item['comments_closed'] > NULL_DATE) {
$closing = true;
$t = datetime_convert('UTC', date_default_timezone_get(), $item['comments_closed'], 'Y-m-d H:i');
2022-10-24 07:37:30 +00:00
$closed = datetime_convert() > $item['comments_closed'];
2021-12-03 03:01:39 +00:00
if ($closed) {
$commentable = false;
}
}
2021-12-03 03:01:39 +00:00
if ($act['type'] === 'Question') {
if ($activated and $commentable) {
$output .= '<form id="question-form-' . $item['id'] . '" >';
}
if (array_key_exists('anyOf', $act) && is_array($act['anyOf'])) {
2023-01-03 19:43:39 +00:00
$totalResponses = 0;
foreach ($act['anyOf'] as $poll) {
if (array_path_exists('replies/totalItems', $poll) && $poll['replies']['totalItems'] > $totalResponses) {
$totalResponses = $poll['replies']['totalItems'];
}
}
2021-12-03 03:01:39 +00:00
foreach ($act['anyOf'] as $poll) {
if (array_key_exists('name', $poll) && $poll['name']) {
$text = html2plain(purify_html($poll['name']), 256);
if (array_path_exists('replies/totalItems', $poll)) {
$total = $poll['replies']['totalItems'];
} else {
$total = 0;
}
2023-04-18 10:54:05 +00:00
$disabled = !($activated && $commentable);
$output .= '<input type="checkbox" name="answer[]" value="' . htmlspecialchars($text) . '" ' .
(($disabled) ? ' disabled="disabled" ' : '') . '>&nbsp;&nbsp;<strong>' . $text . '</strong>'
. EOL;
$output .= '<div class="progress bg-opacity-25" style="height: 3px; max-width: 75%;">';
$output .= '<div class="progress-bar bg-default" role="progressbar" style="width: ' .
(($totalResponses) ? round($total / $totalResponses * 100) : 0) .
'%;" aria-valuenow="" aria-valuemin="0" aria-valuemax="100"></div>';
$output .= '</div>';
$output .= '<div class="text-muted"><small>'
. sprintf(tt('%d Vote', '%d Votes', $total, 'noun'), $total)
. '</small></div>' . EOL;
2021-12-03 03:01:39 +00:00
}
}
}
if (array_key_exists('oneOf', $act) && is_array($act['oneOf'])) {
$totalResponses = 0;
foreach ($act['oneOf'] as $poll) {
if (array_path_exists('replies/totalItems', $poll)) {
$totalResponses += intval($poll['replies']['totalItems']);
}
}
foreach ($act['oneOf'] as $poll) {
if (is_array($poll) && array_key_exists('name', $poll) && $poll['name']) {
$text = html2plain(purify_html($poll['name']), 256);
if (array_path_exists('replies/totalItems', $poll)) {
$total = $poll['replies']['totalItems'];
} else {
$total = 0;
}
2023-04-18 10:54:05 +00:00
$disabled = !($activated && $commentable);
$output .= '<input type="radio" name="answer" value="' . htmlspecialchars($text) . '" ' .
(($disabled) ? ' disabled="disabled" ' : '') . '>&nbsp;&nbsp;<strong>' . $text . '</strong>' . EOL;
$output .= '<div class="progress bg-opacity-25" style="height: 3px; max-width: 75%;">';
$output .= '<div class="progress-bar bg-default" role="progressbar" style="width: ' . (($totalResponses) ? round($total / $totalResponses * 100) : 0). '%;" aria-valuenow="" aria-valuemin="0" aria-valuemax="100"></div>';
$output .= '</div>';
$output .= '<div class="text-muted"><small>' . sprintf(tt('%d Vote', '%d Votes', $total, 'noun'), $total) . '&nbsp;|&nbsp;' . (($totalResponses) ? round($total / $totalResponses * 100) . '%' : '0%') . '</small></div>';
$output .= EOL;
2022-03-21 21:29:13 +00:00
2021-12-03 03:01:39 +00:00
}
}
}
2022-03-21 21:29:13 +00:00
$message = (($totalResponses) ? sprintf(tt('%d Vote in total', '%d Votes in total', $totalResponses, 'noun'), $totalResponses) . EOL : '');
2021-12-03 03:01:39 +00:00
if ($closed) {
$message = t('Poll has ended.');
} elseif ($closing) {
$message = sprintf(t('Poll ends: %1$s (%2$s)'), relative_date($t), $t);
}
2022-03-21 21:29:13 +00:00
$output .= EOL . '<div class="mb-3">' . $message . '</div>';
2022-03-21 21:29:13 +00:00
if ($activated and $commentable && !$closed) {
$output .= EOL . '<input type="button" class="btn btn-std btn-success" name="vote" value="' . t('Vote') . '" onclick="submitPoll(' . $item['id'] . '); return false;">' . '</form>';
2021-12-03 03:01:39 +00:00
}
}
return $output;
}
2016-08-09 23:59:35 +00:00
2021-12-03 03:01:39 +00:00
function prepare_binary($item)
{
2022-02-12 20:43:29 +00:00
return replace_macros(Theme::get_template('item_binary.tpl'), [
2021-12-03 03:01:39 +00:00
'$download' => t('Download binary/encrypted content'),
'$url' => z_root() . '/viewsrc/' . $item['id'] . '/download'
]);
}
/**
* @brief Given a text string, convert from bbcode to html and add smilie icons.
*
* @param string $text
* @param string $content_type (optional) default text/bbcode
2021-12-02 23:02:31 +00:00
* @param bool $cache (optional) default false
*
* @return string
*/
function prepare_text($text, $content_type = 'text/x-multicode', $opts = [])
2021-12-03 03:01:39 +00:00
{
switch ($content_type) {
case 'text/plain':
2022-10-24 07:37:30 +00:00
case 'application/x-pdl';
2021-12-03 03:01:39 +00:00
$s = escape_tags($text);
break;
case 'text/html':
$s = $text;
break;
case 'text/markdown':
$text = MarkdownSoap::unescape($text);
$s = MarkdownExtra::defaultTransform($text);
break;
case 'text/bbcode':
$opts['bbonly'] = true;
2021-12-03 03:01:39 +00:00
case 'text/x-multicode':
case '':
default:
if (stristr($text, '[nosmile]')) {
$s = bbcode($text, $opts);
2021-12-03 03:01:39 +00:00
} else {
$s = smilies(bbcode($text, $opts));
2021-12-03 03:01:39 +00:00
}
2016-08-09 23:59:35 +00:00
2021-12-03 03:01:39 +00:00
$s = zidify_links($s);
break;
}
2013-09-02 23:37:54 +00:00
2021-12-03 03:01:39 +00:00
return $s;
2013-02-27 02:26:33 +00:00
}
2021-12-03 03:01:39 +00:00
function create_export_photo_body(&$item)
{
if (($item['verb'] === ACTIVITY_POST) && ($item['obj_type'] === ACTIVITY_OBJ_PHOTO)) {
$j = json_decode($item['obj'], true);
if ($j) {
2022-10-24 07:37:30 +00:00
$item['body'] .= "\n\n" . (($j['source']['content']) ?: $item['content']);
2021-12-03 03:01:39 +00:00
$item['sig'] = '';
}
}
}
2021-12-03 03:01:39 +00:00
function get_plink($item, $conversation_mode = true)
{
if ($conversation_mode) {
$key = 'plink';
} else {
$key = 'llink';
}
2021-12-03 03:01:39 +00:00
$zidify = true;
if (array_key_exists('author', $item) && ! in_array($item['author']['xchan_network'], [ 'nomad', 'zot6' ])) {
$zidify = false;
}
2021-12-03 03:01:39 +00:00
if (x($item, $key)) {
return [
'href' => (($zidify) ? zid($item[$key]) : $item[$key]),
2023-10-09 06:11:45 +00:00
'title' => t('Link to source'),
2021-12-03 03:01:39 +00:00
];
} else {
return false;
}
2013-02-27 02:26:33 +00:00
}
2021-12-03 03:01:39 +00:00
function layout_select($channel_id, $current = '')
{
2023-01-22 21:06:58 +00:00
$options = '';
2021-12-03 03:01:39 +00:00
$r = q(
"select mid, v from item left join iconfig on iconfig.iid = item.id
2016-06-14 04:16:36 +00:00
where iconfig.cat = 'system' and iconfig.k = 'PDL' and item.uid = %d and item_type = %d ",
2021-12-03 03:01:39 +00:00
intval($channel_id),
intval(ITEM_TYPE_PDL)
);
if ($r) {
$empty_selected = (($current === false) ? ' selected="selected" ' : '');
$options .= '<option value="" ' . $empty_selected . '>' . t('default') . '</option>';
foreach ($r as $rr) {
$selected = (($rr['mid'] == $current) ? ' selected="selected" ' : '');
$options .= '<option value="' . $rr['mid'] . '"' . $selected . '>' . $rr['v'] . '</option>';
}
}
2013-09-03 03:25:33 +00:00
2022-10-23 09:51:54 +00:00
$o = replace_macros(Theme::get_template('field_select_raw.tpl'), [
'$field' => ['layout_mid', t('Page layout'), $selected, t('You can create your own with the layouts tool'), $options]
]);
2015-04-14 09:50:21 +00:00
2021-12-03 03:01:39 +00:00
return $o;
2013-09-03 03:25:33 +00:00
}
function mimetype_select($channel_id, $current = 'text/x-multicode', $choices = null, $element = 'mimetype')
2021-12-03 03:01:39 +00:00
{
2021-12-03 03:01:39 +00:00
$x = (($choices) ? $choices : [
'text/bbcode' => t('BBcode'),
2021-03-22 04:56:18 +00:00
'text/x-multicode' => t('Multicode'),
2021-12-03 03:01:39 +00:00
'text/html' => t('HTML'),
'text/markdown' => t('Markdown'),
'text/plain' => t('Text'),
'application/x-pdl' => t('Comanche Layout')
]);
2022-01-25 01:26:12 +00:00
if ((App::$is_sys) || (Channel::codeallowed($channel_id) && $channel_id == local_channel())) {
2021-12-03 03:01:39 +00:00
$x['application/x-php'] = t('PHP');
}
2021-12-03 03:01:39 +00:00
foreach ($x as $y => $z) {
$selected = (($y == $current) ? ' selected="selected" ' : '');
$options .= '<option value="' . $y . '"' . $selected . '>' . $z . '</option>';
}
2015-04-14 09:50:21 +00:00
2022-10-23 09:51:54 +00:00
$o = replace_macros(Theme::get_template('field_select_raw.tpl'), [
'$field' => [$element, t('Page content type'), $selected, '', $options]
]);
2021-12-03 03:01:39 +00:00
return $o;
}
2021-12-03 03:01:39 +00:00
function engr_units_to_bytes($size_str)
{
if (! $size_str) {
return $size_str;
}
2022-10-24 07:37:30 +00:00
return match (substr(trim($size_str), -1)) {
'M', 'm' => (int)$size_str * 1048576,
'K', 'k' => (int)$size_str * 1024,
'G', 'g' => (int)$size_str * 1073741824,
default => $size_str,
};
2013-02-27 02:26:33 +00:00
}
2021-12-03 03:01:39 +00:00
function base64url_encode($s, $strip_padding = true)
{
2021-12-03 03:01:39 +00:00
$s = strtr(base64_encode($s), '+/', '-_');
2021-12-03 03:01:39 +00:00
if ($strip_padding) {
$s = str_replace('=', '', $s);
}
2021-12-03 03:01:39 +00:00
return $s;
}
2021-12-03 03:01:39 +00:00
function base64url_decode($s)
{
if (is_array($s)) {
logger('base64url_decode: illegal input: ' . print_r(debug_backtrace(), true));
return $s;
}
return base64_decode(strtr($s, '-_', '+/'));
}
2011-08-17 03:05:02 +00:00
2016-08-09 23:59:35 +00:00
2021-12-03 03:01:39 +00:00
function base64special_encode($s, $strip_padding = true)
{
2016-08-09 23:59:35 +00:00
2021-12-03 03:01:39 +00:00
$s = strtr(base64_encode($s), '+/', ',.');
2016-08-09 23:59:35 +00:00
2021-12-03 03:01:39 +00:00
if ($strip_padding) {
$s = str_replace('=', '', $s);
}
2016-08-09 23:59:35 +00:00
2021-12-03 03:01:39 +00:00
return $s;
2016-08-09 23:59:35 +00:00
}
2021-12-03 03:01:39 +00:00
function base64special_decode($s)
{
if (is_array($s)) {
logger('base64url_decode: illegal input: ' . print_r(debug_backtrace(), true));
return $s;
}
return base64_decode(strtr($s, ',.', '+/'));
2016-08-09 23:59:35 +00:00
}
/**
* @brief Return a div to clear floats.
*
* @return string
*/
2021-12-03 03:01:39 +00:00
function cleardiv()
{
return '<div class="clear"></div>';
}
2021-12-03 03:01:39 +00:00
function bb_translate_video($s)
{
2022-10-23 09:51:54 +00:00
$arr = ['string' => $s];
Hook::call('bb_translate_video', $arr);
2021-12-03 03:01:39 +00:00
return $arr['string'];
}
2021-12-03 03:01:39 +00:00
function html2bb_video($s)
{
2022-10-23 09:51:54 +00:00
$arr = ['string' => $s];
Hook::call('html2bb_video', $arr);
2021-12-03 03:01:39 +00:00
return $arr['string'];
2011-10-27 08:54:52 +00:00
}
/**
* apply xmlify() to all values of array $val, recursively
*/
2021-12-03 03:01:39 +00:00
function array_xmlify($val)
{
if (is_bool($val)) {
return $val ? "true" : "false";
}
if (is_array($val)) {
return array_map('array_xmlify', $val);
}
return xmlify((string) $val);
2011-10-27 08:54:52 +00:00
}
2021-12-03 03:01:39 +00:00
function reltoabs($text, $base)
{
if (empty($base)) {
return $text;
}
2021-12-03 03:01:39 +00:00
$base = rtrim($base, '/');
$base2 = $base . "/";
// Replace links
$pattern = "/<a([^>]*) href=\"(?!http|https|\/)([^\"]*)\"/";
$replace = "<a\${1} href=\"" . $base2 . "\${2}\"";
$text = preg_replace($pattern, $replace, $text);
$pattern = "/<a([^>]*) href=\"(?!http|https)([^\"]*)\"/";
$replace = "<a\${1} href=\"" . $base . "\${2}\"";
$text = preg_replace($pattern, $replace, $text);
// Replace images
$pattern = "/<img([^>]*) src=\"(?!http|https|\/)([^\"]*)\"/";
$replace = "<img\${1} src=\"" . $base2 . "\${2}\"";
$text = preg_replace($pattern, $replace, $text);
$pattern = "/<img([^>]*) src=\"(?!http|https)([^\"]*)\"/";
$replace = "<img\${1} src=\"" . $base . "\${2}\"";
$text = preg_replace($pattern, $replace, $text);
// Done
return $text;
}
function item_post_type($item)
{
switch ($item['resource_type']) {
case 'photo':
$post_type = t('photo');
break;
case 'event':
$post_type = t('event');
break;
default:
$post_type = t('post');
if ($item['mid'] !== $item['parent_mid']) {
$post_type = t('comment');
}
break;
}
2012-07-10 05:08:25 +00:00
2021-12-03 03:01:39 +00:00
if (strlen($item['verb']) && (! activity_match($item['verb'], ACTIVITY_POST))) {
$post_type = t('activity');
}
2012-07-10 05:08:25 +00:00
2021-12-03 03:01:39 +00:00
return $post_type;
2012-03-12 04:32:11 +00:00
}
// This needs to be fixed to use quoted tag strings
2021-12-03 03:01:39 +00:00
function undo_post_tagging($s)
{
$matches = null;
// undo tags and mentions
$cnt = preg_match_all('/([@#])(\!*)\[zrl=(.*?)\](.*?)\[\/zrl\]/ism', $s, $matches, PREG_SET_ORDER);
if ($cnt) {
foreach ($matches as $mtch) {
$x = false;
if ($mtch[1] === '@') {
$x = q(
"select xchan_addr, xchan_url from xchan where xchan_url = '%s' limit 1",
dbesc($mtch[3])
);
}
if ($x) {
2022-10-24 07:37:30 +00:00
$s = str_replace($mtch[0], $mtch[1] . $mtch[2] . '{' . (($x[0]['xchan_addr']) ?: $x[0]['xchan_url']) . '}', $s);
2021-12-03 03:01:39 +00:00
} else {
$s = str_replace($mtch[0], $mtch[1] . $mtch[2] . quote_tag($mtch[4]), $s);
}
}
}
$matches = null;
$x = null;
$cnt = preg_match_all('/([@#])(\!*)\[url=(.*?)\](.*?)\[\/url\]/ism', $s, $matches, PREG_SET_ORDER);
if ($cnt) {
foreach ($matches as $mtch) {
$x = false;
if ($mtch[1] === '@') {
$x = q(
"select xchan_addr, xchan_url from xchan where xchan_url = '%s' limit 1",
dbesc($mtch[3])
);
}
if ($x) {
2022-10-24 07:37:30 +00:00
$s = str_replace($mtch[0], $mtch[1] . $mtch[2] . '{' . (($x[0]['xchan_addr']) ?: $x[0]['xchan_url']) . '}', $s);
2021-12-03 03:01:39 +00:00
} else {
$s = str_replace($mtch[0], $mtch[1] . $mtch[2] . quote_tag($mtch[4]), $s);
}
}
}
return $s;
2012-03-22 23:17:10 +00:00
}
2021-12-03 03:01:39 +00:00
function quote_tag($s)
{
2022-10-23 09:51:54 +00:00
if (str_contains($s, ' ')) {
2021-12-03 03:01:39 +00:00
return '&quot;' . $s . '&quot;';
}
return $s;
}
2021-12-03 03:01:39 +00:00
function fix_mce_lf($s)
{
$s = str_replace("\r\n", "\n", $s);
// $s = str_replace("\n\n","\n",$s);
return $s;
}
2021-12-03 03:01:39 +00:00
function protect_sprintf($s)
{
return(str_replace('%', '%%', $s));
}
2021-12-03 03:01:39 +00:00
function is_a_date_arg($s)
{
$i = intval($s);
if ($i > 1900) {
2022-10-23 10:03:10 +00:00
$y = intval(date('Y'));
2021-12-03 03:01:39 +00:00
if ($i <= $y + 1 && strpos($s, '-') == 4) {
$m = intval(substr($s, 5));
if ($m > 0 && $m <= 12) {
return true;
}
}
}
2021-12-03 03:01:39 +00:00
return false;
}
2021-12-03 03:01:39 +00:00
function legal_webbie($s)
{
if (! $s) {
return '';
}
2021-12-03 03:01:39 +00:00
// WARNING: This regex may not work in a federated environment.
// You will probably want something like
// preg_replace('/([^a-z0-9\_])/','',strtolower($s));
2021-12-03 03:01:39 +00:00
$r = preg_replace('/([^a-z0-9\-\_])/', '', strtolower($s));
2021-12-03 03:01:39 +00:00
$x = [ 'input' => $s, 'output' => $r ];
Hook::call('legal_webbie', $x);
2021-12-03 03:01:39 +00:00
return $x['output'];
}
2021-12-03 03:01:39 +00:00
function legal_webbie_text()
{
2021-12-03 03:01:39 +00:00
// WARNING: This will not work in a federated environment.
2021-12-03 03:01:39 +00:00
$s = t('a-z, 0-9, -, and _ only');
2021-12-03 03:01:39 +00:00
$x = [ 'text' => $s ];
Hook::call('legal_webbie_text', $x);
2021-12-03 03:01:39 +00:00
return $x['text'];
}
2021-12-03 03:01:39 +00:00
function check_webbie($arr)
{
2021-12-03 03:01:39 +00:00
// These names conflict with the CalDAV server
$taken = [ 'principals', 'addressbooks', 'calendars' ];
2021-12-03 03:01:39 +00:00
$reservechan = get_config('system', 'reserved_channels');
if (strlen($reservechan)) {
$taken = array_merge($taken, explode(',', $reservechan));
}
2021-12-03 03:01:39 +00:00
$str = '';
if (count($arr)) {
foreach ($arr as $x) {
$y = legal_webbie($x);
if (strlen($y)) {
if ($str) {
$str .= ',';
}
$str .= "'" . dbesc($y) . "'";
}
}
2021-12-03 03:01:39 +00:00
if (strlen($str)) {
$r = q("select channel_address from channel where channel_address in ( $str ) ");
if (count($r)) {
foreach ($r as $rr) {
$taken[] = $rr['channel_address'];
}
}
foreach ($arr as $x) {
$y = legal_webbie($x);
$found = false;
foreach ($taken as $took) {
if (fnmatch($took,$y)) {
$found = true;
}
}
if (! $found) {
2021-12-03 03:01:39 +00:00
return $y;
}
}
}
}
2021-12-03 03:01:39 +00:00
return '';
}
2021-12-03 03:01:39 +00:00
function ids_to_array($arr, $idx = 'id')
{
$t = [];
if ($arr) {
foreach ($arr as $x) {
if (array_key_exists($idx, $x) && strlen($x[$idx]) && (! in_array($x[$idx], $t))) {
$t[] = $x[$idx];
}
}
}
return($t);
}
2012-08-30 06:03:03 +00:00
2021-12-03 03:01:39 +00:00
function ids_to_querystr($arr, $idx = 'id', $quote = false)
{
$t = [];
if ($arr) {
foreach ($arr as $x) {
if (! in_array($x[$idx], $t)) {
if ($quote) {
$t[] = "'" . dbesc($x[$idx]) . "'";
} else {
$t[] = $x[$idx];
}
}
}
}
return(implode(',', $t));
2012-10-08 04:44:11 +00:00
}
/**
* @brief array_elm_to_str($arr,$elm,$delim = ',') extract unique individual elements from an array of arrays and return them as a string separated by a delimiter
2021-12-03 03:01:39 +00:00
* similar to ids_to_querystr, but allows a different delimiter instead of a db-quote option
* empty elements (evaluated after trim()) are ignored.
* @param $arr array
2022-10-24 07:37:30 +00:00
* @param $elm string // to extract from sub-array
* @param $delim string // default ','
* @param $each // filter function to apply to each element before evaluation, default is 'trim'.
* @returns string
*/
2021-12-03 03:01:39 +00:00
function array_elm_to_str($arr, $elm, $delim = ',', $each = 'trim')
{
2021-12-03 03:01:39 +00:00
$tmp = [];
if ($arr && is_array($arr)) {
foreach ($arr as $x) {
if (is_array($x) && array_key_exists($elm, $x)) {
$z = $each($x[$elm]);
if (($z) && (! in_array($z, $tmp))) {
$tmp[] = $z;
}
}
}
}
return implode($delim, $tmp);
}
2021-12-03 03:01:39 +00:00
function trim_and_unpunify($s)
{
return unpunify(trim($s));
}
/**
* @brief Fetches xchan and hubloc data for an array of items with only an
* author_xchan and owner_xchan.
*
* If $abook is true also include the abook info. This is needed in the API to
* save extra per item lookups there.
*
* @param[in,out] array &$items
2021-12-02 23:02:31 +00:00
* @param bool $abook If true also include the abook info
* @param number $effective_uid
*/
2021-12-03 03:01:39 +00:00
function xchan_query(&$items, $abook = true, $effective_uid = 0)
{
$arr = [];
if ($items && count($items)) {
if ($effective_uid) {
for ($x = 0; $x < count($items); $x++) {
$items[$x]['real_uid'] = $items[$x]['uid'];
$items[$x]['uid'] = $effective_uid;
}
}
foreach ($items as $item) {
if ($item['owner_xchan'] && (! in_array("'" . dbesc($item['owner_xchan']) . "'", $arr))) {
$arr[] = "'" . dbesc($item['owner_xchan']) . "'";
}
if ($item['author_xchan'] && (! in_array("'" . dbesc($item['author_xchan']) . "'", $arr))) {
$arr[] = "'" . dbesc($item['author_xchan']) . "'";
}
}
}
if (count($arr)) {
if ($abook) {
$chans = q(
"select * from xchan left join hubloc on hubloc_hash = xchan_hash left join abook on abook_xchan = xchan_hash and abook_channel = %d
2022-06-17 02:46:54 +00:00
where xchan_hash in (" . protect_sprintf(implode(',', $arr)) . ") and hubloc_deleted = 0 order by hubloc_primary desc",
2021-12-03 03:01:39 +00:00
intval($item['uid'])
);
} else {
$chans = q("select xchan.*,hubloc.* from xchan left join hubloc on hubloc_hash = xchan_hash
2022-06-17 02:46:54 +00:00
where xchan_hash in (" . protect_sprintf(implode(',', $arr)) . ") and hubloc_deleted = 0 order by hubloc_primary desc");
2021-12-03 03:01:39 +00:00
}
$xchans = q("select * from xchan where xchan_hash in (" . protect_sprintf(implode(',', $arr)) . ") and xchan_network in ('rss','unknown', 'anon')");
if (! $chans) {
$chans = $xchans;
} else {
$chans = array_merge($xchans, $chans);
}
}
2019-08-05 00:30:07 +00:00
2021-12-03 03:01:39 +00:00
if ($items && count($items) && $chans && count($chans)) {
for ($x = 0; $x < count($items); $x++) {
$items[$x]['owner'] = find_xchan_in_array($items[$x]['owner_xchan'], $chans);
$items[$x]['author'] = find_xchan_in_array($items[$x]['author_xchan'], $chans);
}
}
2012-10-08 04:44:11 +00:00
}
2021-12-03 03:01:39 +00:00
function xchan_mail_query(&$item)
{
$arr = [];
$chans = null;
if ($item) {
if ($item['from_xchan'] && (! in_array("'" . dbesc($item['from_xchan']) . "'", $arr))) {
$arr[] = "'" . dbesc($item['from_xchan']) . "'";
}
if ($item['to_xchan'] && (! in_array("'" . dbesc($item['to_xchan']) . "'", $arr))) {
$arr[] = "'" . dbesc($item['to_xchan']) . "'";
}
}
2012-12-06 00:44:07 +00:00
2021-12-03 03:01:39 +00:00
if (count($arr)) {
$chans = q("select xchan.*,hubloc.* from xchan left join hubloc on hubloc_hash = xchan_hash
2022-06-17 02:46:54 +00:00
where xchan_hash in (" . protect_sprintf(implode(',', $arr)) . ") and hubloc_primary = 1 and hubloc_deleted = 0");
2021-12-03 03:01:39 +00:00
}
if ($chans) {
$item['from'] = find_xchan_in_array($item['from_xchan'], $chans);
$item['to'] = find_xchan_in_array($item['to_xchan'], $chans);
}
2012-12-06 00:44:07 +00:00
}
2021-12-03 03:01:39 +00:00
function find_xchan_in_array($xchan, $arr)
{
if (count($arr)) {
foreach ($arr as $x) {
if ($x['xchan_hash'] === $xchan) {
return $x;
}
}
}
return [];
}
2021-12-03 03:01:39 +00:00
function get_rel_link($j, $rel)
{
if (is_array($j) && ($j)) {
foreach ($j as $l) {
if (is_array($l) && array_key_exists('rel', $l) && $l['rel'] === $rel && array_key_exists('href', $l)) {
return $l['href'];
}
}
}
2021-12-03 03:01:39 +00:00
return '';
}
// Lots of code to write here
2021-12-03 03:01:39 +00:00
function magic_link($s)
{
return $s;
}
/**
* @brief If $escape is true, dbesc() each element before adding quotes.
*
* @param[in,out] array &$arr
2021-12-02 23:02:31 +00:00
* @param bool $escape (optional) default false
*/
2021-12-03 03:01:39 +00:00
function stringify_array_elms(&$arr, $escape = false)
{
for ($x = 0; $x < count($arr); $x++) {
$arr[$x] = "'" . (($escape) ? dbesc($arr[$x]) : $arr[$x]) . "'";
}
2012-11-15 01:02:30 +00:00
}
2018-04-18 05:23:28 +00:00
/**
* @brief Similar to stringify_array_elms but returns a string. If $escape is true, dbesc() each element before adding quotes.
*
* @param array $arr
2021-12-02 23:02:31 +00:00
* @param bool $escape (optional) default false
2018-04-18 05:23:28 +00:00
* @return string
*/
2021-12-03 03:01:39 +00:00
function stringify_array($arr, $escape = false)
{
if ($arr) {
stringify_array_elms($arr, $escape);
return(implode(',', $arr));
}
return EMPTY_STR;
2018-04-18 05:23:28 +00:00
}
/**
* @brief Indents a flat JSON string to make it more human-readable.
*
* @param string $json The original JSON string to process.
* @return string Indented version of the original JSON string.
*/
2021-12-03 03:01:39 +00:00
function jindent($json)
{
$result = '';
$pos = 0;
$strLen = strlen($json);
$indentStr = ' ';
$newLine = "\n";
$prevChar = '';
$outOfQuotes = true;
if (is_array($json)) {
btlogger('is an array', LOGGER_DATA);
$json = json_encode($json, JSON_UNESCAPED_SLASHES);
}
2021-12-03 03:01:39 +00:00
for ($i = 0; $i <= $strLen; $i++) {
// Grab the next character in the string.
$char = substr($json, $i, 1);
// Are we inside a quoted string?
if ($char == '"' && $prevChar != '\\') {
$outOfQuotes = !$outOfQuotes;
}
// If this character is the end of an element,
// output a new line and indent the next line.
elseif (($char == '}' || $char == ']') && $outOfQuotes) {
$result .= $newLine;
$pos--;
for ($j = 0; $j < $pos; $j++) {
$result .= $indentStr;
}
}
// Add the character to the result string.
$result .= $char;
// If the last character was the beginning of an element,
// output a new line and indent the next line.
if (($char == ',' || $char == '{' || $char == '[') && $outOfQuotes) {
$result .= $newLine;
if ($char == '{' || $char == '[') {
$pos++;
}
for ($j = 0; $j < $pos; $j++) {
$result .= $indentStr;
}
}
$prevChar = $char;
}
return $result;
}
/**
* @brief Creates navigation menu for webpage, layout, blocks, menu sites.
*
* @return string with parsed HTML
*/
2021-12-03 03:01:39 +00:00
function design_tools()
{
2022-01-25 01:26:12 +00:00
$channel = Channel::from_id(App::$profile['profile_uid']);
2021-12-03 03:01:39 +00:00
$sys = false;
2021-12-03 03:01:39 +00:00
if (App::$is_sys && is_site_admin()) {
require_once('include/channel.php');
2022-01-25 01:26:12 +00:00
$channel = Channel::get_system();
2021-12-03 03:01:39 +00:00
$sys = true;
}
2021-12-03 03:01:39 +00:00
$who = $channel['channel_address'];
2013-12-19 10:16:14 +00:00
2022-10-23 09:51:54 +00:00
return replace_macros(Theme::get_template('design_tools.tpl'), [
2021-12-03 03:01:39 +00:00
'$title' => t('Design Tools'),
'$who' => $who,
'$sys' => $sys,
'$blocks' => t('Blocks'),
'$menus' => t('Menus'),
'$layout' => t('Layouts'),
'$pages' => t('Pages')
2022-10-23 09:51:54 +00:00
]);
}
2016-07-10 10:58:20 +00:00
/**
2016-08-18 01:25:50 +00:00
* @brief Creates website portation tools menu
2016-07-10 10:58:20 +00:00
*
* @return string
*/
2021-12-03 03:01:39 +00:00
function website_portation_tools()
{
2016-07-10 10:58:20 +00:00
2021-12-03 03:01:39 +00:00
$channel = App::get_channel();
$sys = false;
2016-07-10 10:58:20 +00:00
2021-12-03 03:01:39 +00:00
if (App::$is_sys && is_site_admin()) {
require_once('include/channel.php');
2022-01-25 01:26:12 +00:00
$channel = Channel::get_system();
2021-12-03 03:01:39 +00:00
$sys = true;
}
2016-07-10 10:58:20 +00:00
2022-10-23 09:51:54 +00:00
return replace_macros(Theme::get_template('website_portation_tools.tpl'), [
2021-12-03 03:01:39 +00:00
'$title' => t('Import'),
'$import_label' => t('Import website...'),
'$import_placeholder' => t('Select folder to import'),
'$file_upload_text' => t('Import from a zipped folder:'),
'$file_import_text' => t('Import from cloud files:'),
'$desc' => t('/cloud/channel/path/to/folder'),
'$hint' => t('Enter path to website files'),
'$select' => t('Select folder'),
'$export_label' => t('Export website...'),
'$file_download_text' => t('Export to a zip file'),
'$filename_desc' => t('website.zip'),
'$filename_hint' => t('Enter a name for the zip file.'),
'$cloud_export_text' => t('Export to cloud files'),
'$cloud_export_desc' => t('/path/to/export/folder'),
'$cloud_export_hint' => t('Enter a path to a cloud files destination.'),
'$cloud_export_select' => t('Specify folder'),
2022-10-23 09:51:54 +00:00
]);
2016-08-17 22:19:36 +00:00
}
/**
* @brief case insensitive in_array()
*
* @param string $needle
* @param array $haystack
2021-12-02 23:02:31 +00:00
* @return bool
*/
2021-12-03 03:01:39 +00:00
function in_arrayi($needle, $haystack)
{
return in_array(strtolower($needle), array_map('strtolower', $haystack));
}
2021-12-03 03:01:39 +00:00
function normalise_openid($s)
{
2022-10-23 09:51:54 +00:00
return trim(str_replace(['http://','https://'], ['',''], $s), '/');
}
/**
* Used in ajax endless scroll request to find out all the args that the master page was viewing.
* This was using $_REQUEST, but $_REQUEST also contains all your cookies. So we're restricting it
* to $_GET and $_POST.
*
* @return string with additional URL parameters
*/
2021-12-03 03:01:39 +00:00
function extra_query_args()
{
$s = '';
if (count($_GET)) {
foreach ($_GET as $k => $v) {
// these are request vars we don't want to duplicate
2022-10-23 09:51:54 +00:00
if (! in_array($k, ['req','f','zid','page','PHPSESSID'])) {
2021-12-03 03:01:39 +00:00
$s .= '&' . $k . '=' . urlencode($v);
}
}
}
if (count($_POST)) {
foreach ($_POST as $k => $v) {
// these are request vars we don't want to duplicate
2022-10-23 09:51:54 +00:00
if (! in_array($k, ['req','f','zid','page','PHPSESSID'])) {
2021-12-03 03:01:39 +00:00
$s .= '&' . $k . '=' . urlencode($v);
}
}
}
2021-12-03 03:01:39 +00:00
return $s;
}
/**
* @brief This function removes the tag $tag from the text $body and replaces it
* with the appropiate link.
*
* @param App $a
* @param[in,out] string &$body the text to replace the tag in
* @param[in,out] string &$access_tag used to return tag ACL exclusions e.g. @!foo
* @param[in,out] string &$str_tags string to add the tag to
* @param int $profile_uid
* @param string $tag the tag to replace
2021-12-02 23:02:31 +00:00
* @param bool $in_network default true
2022-10-24 07:37:30 +00:00
* @return bool|array
*/
2021-12-03 03:01:39 +00:00
function handle_tag(&$body, &$str_tags, $profile_uid, $tag, $in_network = true)
{
2021-12-03 03:01:39 +00:00
$channel = App::get_channel();
$replaced = false;
$r = null;
$match = [];
2022-10-23 09:51:54 +00:00
$termtype = ((str_starts_with($tag, '#')) ? TERM_HASHTAG : TERM_UNKNOWN);
$termtype = ((str_starts_with($tag, '@')) ? TERM_MENTION : $termtype);
$termtype = ((str_starts_with($tag, '!')) ? TERM_FORUM : $termtype);
2021-12-03 03:01:39 +00:00
// Is it a hashtag of some kind?
2018-05-15 00:20:25 +00:00
2022-10-24 07:37:30 +00:00
if ($termtype == TERM_HASHTAG) {
2021-12-03 03:01:39 +00:00
// if the tag is already replaced...
if ((strpos($tag, '[zrl=')) || (strpos($tag, '[url='))) {
// ...do nothing
return $replaced;
}
2021-12-03 03:01:39 +00:00
if (! $replaced) {
// double-quoted hashtags: base tag has the htmlentity name only
2022-10-23 09:51:54 +00:00
if ((str_starts_with($tag, '#&quot;')) && (str_ends_with($tag, '&quot;'))) {
2021-12-03 03:01:39 +00:00
$basetag = substr($tag, 7);
$basetag = substr($basetag, 0, -6);
2022-10-23 09:51:54 +00:00
} elseif ((str_starts_with($tag, '#"')) && (str_ends_with($tag, '"'))) {
2021-12-03 03:01:39 +00:00
$basetag = substr($tag, 2);
$basetag = substr($basetag, 0, -1);
} else {
$basetag = substr($tag, 1);
}
2021-12-03 03:01:39 +00:00
// create text for link
2018-05-15 00:20:25 +00:00
2021-12-03 03:01:39 +00:00
$url = z_root() . '/search?tag=' . rawurlencode($basetag);
$newtag = '#[zrl=' . z_root() . '/search?tag=' . rawurlencode($basetag) . ']' . $basetag . '[/zrl]';
2018-05-15 00:20:25 +00:00
2021-12-03 03:01:39 +00:00
// replace tag by the link. Make sure to not replace something in the middle of a word
2021-12-03 03:01:39 +00:00
$body = preg_replace('/(?<![a-zA-Z0-9=])' . preg_quote($tag, '/') . '/', $newtag, $body);
$replaced = true;
}
2021-12-03 03:01:39 +00:00
// is the link already in str_tags?
2021-12-15 08:36:57 +00:00
if (is_string($newtag) && ! stristr($str_tags, $newtag)) {
2021-12-03 03:01:39 +00:00
// append or set str_tags
if (strlen($str_tags)) {
$str_tags .= ',';
}
2021-12-03 03:01:39 +00:00
$str_tags .= $newtag;
}
return [ [
'replaced' => $replaced,
'termtype' => $termtype,
'term' => $basetag,
'url' => $url,
'contact' => [],
'access_tag' => '',
]];
}
2017-09-18 06:28:58 +00:00
2021-12-03 03:01:39 +00:00
// END hashtags
2017-09-18 06:28:58 +00:00
2021-12-03 03:01:39 +00:00
// BEGIN mentions
2022-09-27 21:27:09 +00:00
if (in_array($termtype, [TERM_MENTION, TERM_FORUM])) {
2021-12-03 03:01:39 +00:00
// The @! tag will alter permissions
2018-05-15 00:20:25 +00:00
2021-12-03 03:01:39 +00:00
// $in_network is set to false to avoid false positives on posts originating
// on a network which does not implement privacy tags or implements them differently.
2022-10-23 09:51:54 +00:00
$exclusive = (((str_starts_with(substr($tag, 1), '!')) && $in_network) ? true : false);
2021-12-03 03:01:39 +00:00
// is it already replaced?
if (strpos($tag, "[zrl=") || strpos($tag, "[url=")) {
return $replaced;
}
2021-12-03 03:01:39 +00:00
// get the channel name
// First extract the name or name fragment we are going to replace
2021-12-03 03:01:39 +00:00
$name = substr($tag, (($exclusive) ? 2 : 1));
$newname = $name; // make a copy that we can mess with
$tagcid = 0;
2021-12-03 03:01:39 +00:00
$r = null;
2021-12-03 03:01:39 +00:00
// is it some generated (autocompleted) name?
2022-10-23 09:51:54 +00:00
if (str_starts_with($name, '{') && str_ends_with($name, '}')) {
2021-12-03 03:01:39 +00:00
$newname = substr($name, 1);
$newname = substr($newname, 0, -1);
2021-12-03 03:01:39 +00:00
$r = q(
"select * from xchan where xchan_addr = '%s' or xchan_hash = '%s' or xchan_url = '%s'",
dbesc($newname),
dbesc($newname),
dbesc($newname)
);
}
2021-12-03 03:01:39 +00:00
if (! $r) {
// look for matching names in the address book
2021-12-03 03:01:39 +00:00
// Double quote the entire mentioned term to include special characters
// such as spaces and some punctuation.
2018-05-15 00:20:25 +00:00
2021-12-03 03:01:39 +00:00
// We see this after input filtering so quotes have been html entity encoded
2022-10-23 09:51:54 +00:00
if ((str_starts_with($name, '&quot;')) && (str_ends_with($name, '&quot;'))) {
2021-12-03 03:01:39 +00:00
$newname = substr($name, 6);
$newname = substr($newname, 0, -6);
2022-10-23 09:51:54 +00:00
} elseif ((str_starts_with($name, '"')) && (str_ends_with($name, '"'))) {
2021-12-03 03:01:39 +00:00
$newname = substr($name, 1);
$newname = substr($newname, 0, -1);
}
2021-12-03 03:01:39 +00:00
// select someone from this user's contacts by name
2021-12-03 03:01:39 +00:00
$r = q(
"SELECT * FROM abook left join xchan on abook_xchan = xchan_hash
2019-02-04 00:57:07 +00:00
WHERE xchan_name = '%s' AND abook_channel = %d ",
2021-12-03 03:01:39 +00:00
dbesc($newname),
intval($profile_uid)
);
2021-12-03 03:01:39 +00:00
// select anybody by full hubloc_addr
2021-12-03 03:01:39 +00:00
if ((! $r) && strpos($newname, '@')) {
$r = q(
2022-08-03 09:52:05 +00:00
"SELECT * FROM xchan left join hubloc on xchan_hash = hubloc_hash
WHERE hubloc_addr = '%s' and hubloc_deleted = 0 order by hubloc_id desc",
2021-12-03 03:01:39 +00:00
dbesc($newname)
);
}
2021-12-03 03:01:39 +00:00
// select someone by attag or nick and the name passed in
2021-12-03 03:01:39 +00:00
if (! $r) {
// strip user-supplied wildcards before running a wildcard search
$newname = str_replace('%', '', $newname);
$r = q(
"SELECT * FROM abook left join xchan on abook_xchan = xchan_hash
2019-02-04 00:57:07 +00:00
WHERE xchan_addr like ('%s') AND abook_channel = %d ",
2021-12-03 03:01:39 +00:00
dbesc(((strpos($newname, '@')) ? $newname : $newname . '@%')),
intval($profile_uid)
);
}
}
2019-02-04 00:57:07 +00:00
$fn_results = [];
$access_tag = EMPTY_STR;
2021-12-03 03:01:39 +00:00
// some platforms prefer to mention people by username rather than display name.
// make this a personal choice by the publisher
$tagpref = intval(PConfig::Get($profile_uid, 'system', 'tag_username', Config::Get('system', 'tag_username', false)));
2019-02-04 00:57:07 +00:00
// $r is set if we found something
2021-12-03 03:01:39 +00:00
if ($r) {
if (array_key_exists('hubloc_network', $r)) {
$r = [ Libzot::zot_record_preferred($r) ];
} else {
$r = [ Libzot::zot_record_preferred($r, 'xchan_network') ];
}
}
2020-08-01 20:48:57 +00:00
2020-06-01 03:42:30 +00:00
if ($r) {
foreach ($r as $xc) {
2019-02-04 00:57:07 +00:00
$profile = $xc['xchan_url'];
2020-06-02 05:36:55 +00:00
2021-12-03 03:01:39 +00:00
// $tagpref
// 0 use display name
// 1 use username@host
// 2 use 'display name (username@host)'
// 127 use display name outbound and don't change inbound
$newname = $xc['xchan_name'];
if ($tagpref === 1 && $xc['xchan_addr']) {
$newname = $xc['xchan_addr'];
}
if ($tagpref === 2 && $xc['xchan_addr']) {
$newname = sprintf(t('%1$s (%2$s)'), $xc['xchan_name'], $xc['xchan_addr']);
2021-12-03 03:01:39 +00:00
}
2022-08-03 09:52:05 +00:00
2019-02-04 00:57:07 +00:00
// add the channel's xchan_hash to $access_tag if exclusive
2020-06-02 05:36:55 +00:00
if ($exclusive) {
2019-02-04 00:57:07 +00:00
$access_tag = 'cid:' . $xc['xchan_hash'];
}
// if there is a url for this channel
2021-12-03 03:01:39 +00:00
if (isset($profile)) {
2019-02-04 00:57:07 +00:00
$replaced = true;
//create profile link
2021-12-03 03:01:39 +00:00
$profile = str_replace(',', '%2c', $profile);
2019-02-04 00:57:07 +00:00
$url = $profile;
2019-02-13 23:33:45 +00:00
$zrl = (in_array($xc['xchan_network'], [ 'nomad', 'zot6' ]) ? 'zrl' : 'url');
2022-08-03 09:52:05 +00:00
2022-09-27 21:27:09 +00:00
if ($termtype === TERM_FORUM) {
$newtag = '!' . (($exclusive) ? '!' : '') . '[' . $zrl . '=' . $profile . ']' . $newname . '[/' . $zrl . ']';
$body = str_replace('!' . (($exclusive) ? '!' : '') . $name, $newtag, $body);
}
if ($termtype === TERM_MENTION) {
$newtag = '@' . (($exclusive) ? '!' : '') . '[' . $zrl . '=' . $profile . ']' . $newname . '[/' . $zrl . ']';
$body = str_replace('@' . (($exclusive) ? '!' : '') . $name, $newtag, $body);
}
2019-02-04 00:57:07 +00:00
// append tag to str_tags
2021-12-03 03:01:39 +00:00
if (! stristr($str_tags, $newtag)) {
if (strlen($str_tags)) {
2019-02-04 00:57:07 +00:00
$str_tags .= ',';
2021-12-03 03:01:39 +00:00
}
2019-02-04 00:57:07 +00:00
$str_tags .= $newtag;
}
}
$fn_results[] = [
'replaced' => $replaced,
'termtype' => $termtype,
'term' => $newname,
'url' => $url,
'access_tag' => $access_tag,
'contact' => (($r) ? $xc : []),
];
2021-12-03 03:01:39 +00:00
}
} else {
2019-02-04 00:57:07 +00:00
// check for a group/collection exclusion tag
2019-02-04 00:57:07 +00:00
// note that we aren't setting $replaced even though we're replacing text.
// This tag isn't going to get a term attached to it. It's only used for
2021-12-03 03:01:39 +00:00
// access control.
2021-12-03 03:01:39 +00:00
if (local_channel() && local_channel() == $profile_uid) {
$grp = AccessList::byname($profile_uid, $name);
if ($grp) {
$g = q(
"select * from pgrp where id = %d and visible = 1 limit 1",
2019-10-24 22:53:44 +00:00
intval($grp)
2019-02-04 00:57:07 +00:00
);
2021-12-03 03:01:39 +00:00
if ($g && $exclusive) {
$access_tag .= 'gid:' . $g[0]['hash'];
2019-02-04 00:57:07 +00:00
}
$channel = App::get_channel();
2021-12-03 03:01:39 +00:00
if ($channel) {
$replaced = true;
$newname = $channel['channel_name'] . ' (' . $g[0]['gname'] . ')';
$newtag = '@' . (($exclusive) ? '!' : '') . '[zrl=' . z_root() . '/lists/view/' . $g[0]['hash'] . ']' . $newname . '[/zrl]';
2019-02-04 00:57:07 +00:00
$body = str_replace('@' . (($exclusive) ? '!' : '') . $name, $newtag, $body);
}
}
}
// if there is a url for this channel
2021-12-03 03:01:39 +00:00
if (isset($profile)) {
2019-02-04 00:57:07 +00:00
$replaced = true;
//create profile link
2021-12-03 03:01:39 +00:00
$profile = str_replace(',', '%2c', $profile);
2019-02-04 00:57:07 +00:00
$url = $profile;
2019-02-13 23:33:45 +00:00
$newtag = '@' . (($exclusive) ? '!' : '') . '[zrl=' . $profile . ']' . $newname . '[/zrl]';
$body = str_replace('@' . (($exclusive) ? '!' : '') . $name, $newtag, $body);
2019-02-04 00:57:07 +00:00
// append tag to str_tags
2021-12-03 03:01:39 +00:00
if (! stristr($str_tags, $newtag)) {
if (strlen($str_tags)) {
2019-02-04 00:57:07 +00:00
$str_tags .= ',';
2021-12-03 03:01:39 +00:00
}
2019-02-04 00:57:07 +00:00
$str_tags .= $newtag;
}
}
$fn_results[] = [
'replaced' => $replaced,
'termtype' => $termtype,
'term' => $newname,
'url' => $url,
'access_tag' => $access_tag,
'contact' => [],
];
}
}
2019-02-04 00:57:07 +00:00
return $fn_results;
}
2021-12-03 03:01:39 +00:00
function linkify_tags(&$body, $uid, $in_network = true)
{
$str_tags = EMPTY_STR;
$results = [];
2015-02-13 03:22:07 +00:00
2021-12-03 03:01:39 +00:00
$tags = get_tags($body);
2021-12-03 03:01:39 +00:00
if (is_array($tags) && count($tags)) {
foreach ($tags as $tag) {
$success = handle_tag($body, $str_tags, ($uid) ? $uid : App::$profile_uid, $tag, $in_network);
2018-04-05 01:53:06 +00:00
2021-12-03 03:01:39 +00:00
foreach ($success as $handled_tag) {
$results[] = [ 'success' => $handled_tag ];
}
}
}
2021-12-03 03:01:39 +00:00
return $results;
}
/**
* @brief returns icon name for use with e.g. font-awesome based on mime-type.
*
* These are the the font-awesome names of version 3.2.1. The newer font-awesome
* 4 has different names.
*
* @param string $type mime type
* @return string
* @todo rename to get_icon_from_type()
*/
2021-12-03 03:01:39 +00:00
function getIconFromType($type)
{
2022-10-23 09:51:54 +00:00
$iconMap = [
2021-12-03 03:01:39 +00:00
//Folder
t('Collection') => 'fa-folder-o',
'multipart/mixed' => 'fa-folder-o', //dirs in attach use this mime type
//Common file
'application/octet-stream' => 'fa-file-o',
//Text
'text/plain' => 'fa-file-text-o',
'text/markdown' => 'fa-file-text-o',
'text/bbcode' => 'fa-file-text-o',
'text/x-multicode' => 'fa-file-text-o',
'text/html' => 'fa-file-text-o',
'application/msword' => 'fa-file-word-o',
'application/pdf' => 'fa-file-pdf-o',
'application/vnd.oasis.opendocument.text' => 'fa-file-word-o',
'application/epub+zip' => 'fa-book',
//Spreadsheet
'application/vnd.oasis.opendocument.spreadsheet' => 'fa-file-excel-o',
'application/vnd.ms-excel' => 'fa-file-excel-o',
//Image
'image/jpeg' => 'fa-picture-o',
'image/png' => 'fa-picture-o',
'image/gif' => 'fa-picture-o',
'image/svg+xml' => 'fa-picture-o',
//Archive
'application/zip' => 'fa-file-archive-o',
'application/x-rar-compressed' => 'fa-file-archive-o',
//Audio
'audio/mpeg' => 'fa-file-audio-o',
'audio/wav' => 'fa-file-audio-o',
'application/ogg' => 'fa-file-audio-o',
'audio/ogg' => 'fa-file-audio-o',
'audio/webm' => 'fa-file-audio-o',
'audio/mp4' => 'fa-file-audio-o',
//Video
'video/quicktime' => 'fa-file-video-o',
'video/webm' => 'fa-file-video-o',
'video/mp4' => 'fa-file-video-o',
'video/x-matroska' => 'fa-file-video-o'
2022-10-23 09:51:54 +00:00
];
2021-12-03 03:01:39 +00:00
$catMap = [
'application' => 'fa-file-code-o',
'multipart' => 'fa-folder',
'audio' => 'fa-file-audio-o',
'video' => 'fa-file-video-o',
'text' => 'fa-file-text-o',
'image' => 'fa=file-picture-o',
'message' => 'fa-file-text-o'
];
$iconFromType = '';
if (array_key_exists($type, $iconMap)) {
$iconFromType = $iconMap[$type];
} else {
$parts = explode('/', $type);
if ($parts[0] && $catMap[$parts[0]]) {
$iconFromType = $catMap[$parts[0]];
}
}
2021-12-03 03:01:39 +00:00
if (! $iconFromType) {
$iconFromType = 'fa-file-o';
}
2021-12-03 03:01:39 +00:00
return $iconFromType;
}
/**
* @brief Returns a human readable formatted string for filesizes.
*
* @param int $size filesize in bytes
* @return string human readable formatted filesize
*/
2021-12-03 03:01:39 +00:00
function userReadableSize($size)
{
$ret = '';
if (is_numeric($size)) {
$incr = 0;
$k = 1024;
2022-10-23 09:51:54 +00:00
$unit = ['bytes', 'KB', 'MB', 'GB', 'TB', 'PB'];
2021-12-03 03:01:39 +00:00
while (($size / $k) >= 1) {
$incr++;
$size = round($size / $k, 2);
}
$ret = $size . ' ' . $unit[$incr];
}
2021-12-03 03:01:39 +00:00
return $ret;
}
2021-12-03 03:01:39 +00:00
function str_rot47($str)
{
return strtr(
$str,
'!"#$%&\'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~',
'PQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~!"#$%&\'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNO'
);
}
2021-12-03 03:01:39 +00:00
function string_replace($old, $new, &$s)
{
2021-12-03 03:01:39 +00:00
$x = str_replace($old, $new, $s);
$replaced = false;
if ($x !== $s) {
$replaced = true;
}
$s = $x;
return $replaced;
}
2021-12-03 03:01:39 +00:00
function json_url_replace($old, $new, &$s)
{
2021-12-03 03:01:39 +00:00
$old = str_replace('/', '\\/', $old);
$new = str_replace('/', '\\/', $new);
2021-12-03 03:01:39 +00:00
$x = str_replace($old, $new, $s);
$replaced = false;
if ($x !== $s) {
$replaced = true;
}
$s = $x;
return $replaced;
}
2021-12-03 03:01:39 +00:00
function item_url_replace($channel, &$item, $old, $new, $oldnick = '')
{
2022-03-25 20:49:50 +00:00
if (isset($item['attach']) && $item['attach']) {
$converted = false;
if (is_array($item['attach'])) {
$item['attach'] = item_json_encapsulate($item,'attach');
$converted = true;
}
2021-12-03 03:01:39 +00:00
json_url_replace($old, $new, $item['attach']);
if ($oldnick && ($oldnick !== $channel['channel_address'])) {
json_url_replace('/' . $oldnick . '/', '/' . $channel['channel_address'] . '/', $item['attach']);
}
2022-03-25 20:49:50 +00:00
if ($converted) {
$item['attach'] = json_decode($item['attach'],true);
}
2021-12-03 03:01:39 +00:00
}
2022-03-25 20:49:50 +00:00
if ($item['obj']) {
$converted = false;
if (is_array($item['obj'])) {
$item['obj'] = item_json_encapsulate($item,'obj');
$converted = true;
}
json_url_replace($old, $new, $item['obj']);
2021-12-03 03:01:39 +00:00
if ($oldnick && ($oldnick !== $channel['channel_address'])) {
2022-03-25 20:49:50 +00:00
json_url_replace('/' . $oldnick . '/', '/' . $channel['channel_address'] . '/', $item['obj']);
}
if ($converted) {
$item['obj'] = json_decode($item['obj'],true);
2021-12-03 03:01:39 +00:00
}
}
if ($item['target']) {
2022-03-25 20:49:50 +00:00
$converted = false;
if (is_array($item['target'])) {
$item['target'] = item_json_encapsulate($item,'target');
$converted = true;
}
2021-12-03 03:01:39 +00:00
json_url_replace($old, $new, $item['target']);
if ($oldnick && ($oldnick !== $channel['channel_address'])) {
json_url_replace('/' . $oldnick . '/', '/' . $channel['channel_address'] . '/', $item['target']);
}
2022-03-25 20:49:50 +00:00
if ($converted) {
$item['target'] = json_decode($item['target'],true);
}
2021-12-03 03:01:39 +00:00
}
2021-12-03 03:01:39 +00:00
$item['body'] = str_replace($old, $new, $item['body']);
2021-12-03 03:01:39 +00:00
if ($oldnick && ($oldnick !== $channel['channel_address'])) {
$item['body'] = str_replace('/' . $oldnick . '/', '/' . $channel['channel_address'] . '/', $item['body']);
}
2021-12-03 03:01:39 +00:00
$item['sig'] = Libzot::sign($item['body'], $channel['channel_prvkey']);
$item['item_verified'] = 1;
2019-07-29 02:34:42 +00:00
2022-03-18 05:48:35 +00:00
if (isset($item['plink'])) {
$item['plink'] = str_replace($old, $new, $item['plink']);
if ($oldnick && ($oldnick !== $channel['channel_address'])) {
$item['plink'] = str_replace('/' . $oldnick . '/', '/' . $channel['channel_address'] . '/', $item['plink']);
}
2021-12-03 03:01:39 +00:00
}
2022-08-03 09:52:05 +00:00
if (isset($item['llink'])) {
$item['llink'] = str_replace($old, $new, $item['llink']);
if ($oldnick && ($oldnick !== $channel['channel_address'])) {
$item['llink'] = str_replace('/' . $oldnick . '/', '/' . $channel['channel_address'] . '/', $item['llink']);
}
2021-12-03 03:01:39 +00:00
}
2019-07-29 02:34:42 +00:00
2022-03-18 05:48:35 +00:00
if (isset($item['term']) && is_array($item['term'])) {
2021-12-03 03:01:39 +00:00
for ($x = 0; $x < count($item['term']); $x++) {
$item['term'][$x]['url'] = str_replace($old, $new, $item['term'][$x]['url']);
if ($oldnick && ($oldnick !== $channel['channel_address'])) {
$item['term'][$x]['url'] = str_replace('/' . $oldnick . '/', '/' . $channel['channel_address'] . '/', $item['term'][$x]['url']);
}
}
}
}
/**
* @brief Used to wrap ACL elements in angle brackets for storage.
*
* @param[in,out] array &$item
*/
2021-12-03 03:01:39 +00:00
function sanitise_acl(&$item)
{
if (strlen($item)) {
$item = '<' . notags(trim(urldecode($item))) . '>';
} else {
unset($item);
}
}
/**
* @brief Convert an ACL array to a storable string.
*
* @param array $p
2022-10-24 07:37:30 +00:00
* @return string
*/
2021-12-03 03:01:39 +00:00
function perms2str($p)
{
2023-08-24 08:24:29 +00:00
if ($p) {
$tmp = is_array($p) ? $p : explode(',', (string)$p);
2021-12-03 03:01:39 +00:00
array_walk($tmp, 'sanitise_acl');
2023-08-24 08:24:29 +00:00
return implode('', $tmp);
2021-12-03 03:01:39 +00:00
}
2023-08-24 08:24:29 +00:00
return '';
}
/**
* @brief Turn user/group ACLs stored as angle bracketed text into arrays.
*
* turn string array of angle-bracketed elements into string array
* e.g. "<123xyz><246qyo><sxo33e>" => [ '123xyz','246qyo','sxo33e' ];
*
* @param string $s
* @return array
*/
2021-12-03 03:01:39 +00:00
function expand_acl($s)
{
$ret = [];
if (strlen($s)) {
$t = str_replace('<', '', $s);
$a = explode('>', $t);
foreach ($a as $aa) {
if ($aa) {
$ret[] = $aa;
}
}
}
2021-12-03 03:01:39 +00:00
return $ret;
}
2016-05-06 06:07:35 +00:00
2021-12-03 03:01:39 +00:00
function acl2json($s)
{
$s = expand_acl($s);
$s = json_encode($s);
2021-12-03 03:01:39 +00:00
return $s;
2016-08-03 19:16:57 +00:00
}
/**
* @brief When editing a webpage - a dropdown is needed to select a page layout
*
* On submit, the pdl_select value (which is the mid of an item with item_type = ITEM_TYPE_PDL)
* is stored in the webpage's resource_id, with resource_type 'pdl'.
*
* Then when displaying a webpage, we can see if it has a pdl attached. If not we'll
* use the default site/page layout.
*
* If it has a pdl we'll load it as we know the mid and pass the body through comanche_parser() which will generate the
* page layout from the given description
*
* @FIXME - there is apparently a very similar function called layout_select; this one should probably take precedence
* and the other should be checked for compatibility and removed
*
* @param int $uid
* @param string $current
* @return string HTML code for dropdown
*/
2021-12-03 03:01:39 +00:00
function pdl_selector($uid, $current = '')
{
$o = '';
2016-05-06 06:07:35 +00:00
2021-12-03 03:01:39 +00:00
$sql_extra = item_permissions_sql($uid);
2016-05-06 06:07:35 +00:00
2021-12-03 03:01:39 +00:00
$r = q(
"select iconfig.*, mid from iconfig left join item on iconfig.iid = item.id
2016-06-14 04:16:36 +00:00
where item.uid = %d and iconfig.cat = 'system' and iconfig.k = 'PDL' $sql_extra order by v asc",
2021-12-03 03:01:39 +00:00
intval($uid)
);
2016-05-06 06:07:35 +00:00
2022-10-23 09:51:54 +00:00
$arr = ['channel_id' => $uid, 'current' => $current, 'entries' => $r];
Hook::call('pdl_selector', $arr);
2016-05-06 06:07:35 +00:00
2021-12-03 03:01:39 +00:00
$entries = $arr['entries'];
$current = $arr['current'];
2016-05-06 06:07:35 +00:00
2021-12-03 03:01:39 +00:00
$o .= '<select name="pdl_select" id="pdl_select" size="1">';
2022-10-23 09:51:54 +00:00
$entries[] = ['title' => t('Default'), 'mid' => ''];
2021-12-03 03:01:39 +00:00
foreach ($entries as $selection) {
$selected = (($selection == $current) ? ' selected="selected" ' : '');
$o .= "<option value=\"{$selection['mid']}\" $selected >{$selection['v']}</option>";
}
2016-05-06 06:07:35 +00:00
2021-12-03 03:01:39 +00:00
$o .= '</select>';
return $o;
2016-05-06 06:07:35 +00:00
}
/**
* @brief returns a one-dimensional array from a multi-dimensional array
* empty values are discarded
*
* example: print_r(flatten_array_recursive(array('foo','bar',array('baz','blip',array('zob','glob')),'','grip')));
*
* Array ( [0] => foo [1] => bar [2] => baz [3] => blip [4] => zob [5] => glob [6] => grip )
*
* @param array $arr multi-dimensional array
2022-10-24 07:37:30 +00:00
* @return array
*/
2021-12-03 03:01:39 +00:00
function flatten_array_recursive($arr)
{
2021-12-03 03:01:39 +00:00
$ret = [];
2021-12-03 03:01:39 +00:00
if (! ($arr && is_array($arr))) {
return $ret;
}
2021-12-03 03:01:39 +00:00
foreach ($arr as $a) {
if (is_array($a)) {
$tmp = flatten_array_recursive($a);
if ($tmp) {
$ret = array_merge($ret, $tmp);
}
} elseif (isset($a)) {
$ret[] = $a;
}
}
2021-12-03 03:01:39 +00:00
return($ret);
}
/**
* @brief Highlight Text.
*
* @param string $s Text to highlight
* @param string $lang Which language should be highlighted
* @return string
* Important: The returned text has the text pattern 'http' translated to '%eY9-!' which should be converted back
2021-12-03 03:01:39 +00:00
* after further processing. This was done to prevent oembed links from occurring inside code blocks.
* See include/bbcode.php
*/
2021-12-03 03:01:39 +00:00
function text_highlight($s, $lang, $options)
{
2021-12-03 03:01:39 +00:00
if ($lang === 'js') {
$lang = 'javascript';
}
2021-12-03 03:01:39 +00:00
if ($lang === 'json') {
$lang = 'javascript';
if (! strpos(trim($s), "\n")) {
$s = jindent($s);
}
}
2021-12-03 03:01:39 +00:00
$arr = [
'text' => $s,
'language' => $lang,
'options' => $options,
'success' => false
];
/**
* @hooks text_highlight
* * \e string \b text
* * \e string \b language
* * \e boolean \b success default false
*/
Hook::call('text_highlight', $arr);
2021-12-03 03:01:39 +00:00
if ($arr['success']) {
$o = $arr['text'];
} else {
$o = $s;
}
2021-12-03 03:01:39 +00:00
$o = str_replace('http', '%eY9-!', $o);
2021-12-03 03:01:39 +00:00
return('<code>' . $o . '</code>');
}
// function to convert multi-dimensional array to xml
// create new instance of simplexml
// $xml = new SimpleXMLElement('<root/>');
// function callback
// array2XML($xml, $my_array);
// save as xml file
// echo (($xml->asXML('data.xml')) ? 'Your XML file has been generated successfully!' : 'Error generating XML file!');
2021-12-03 03:01:39 +00:00
function arrtoxml($root_elem, $arr)
{
$xml = new SimpleXMLElement('<?xml version="1.0" encoding="UTF-8"?><' . $root_elem . '></' . $root_elem . '>', null, false);
array2XML($xml, $arr);
2021-12-03 03:01:39 +00:00
return $xml->asXML();
}
2021-12-03 03:01:39 +00:00
function array2XML($obj, $array)
{
foreach ($array as $key => $value) {
if (is_numeric($key)) {
$key = 'item' . $key;
}
2021-12-03 03:01:39 +00:00
if (is_array($value)) {
$node = $obj->addChild($key);
array2XML($node, $value);
} else {
$obj->addChild($key, htmlspecialchars($value));
}
}
}
/**
* @brief Inserts an array into $table.
*
*
* @param string $table
* @param array $arr
* @param array $binary_fields - fields which will be cleansed with dbescbin rather than dbesc; this is critical for postgres
2021-12-02 23:02:31 +00:00
* @return bool|PDOStatement
*/
2021-12-03 03:01:39 +00:00
function create_table_from_array($table, $arr, $binary_fields = [])
{
2021-12-03 03:01:39 +00:00
if (! ($arr && $table)) {
return false;
}
2021-12-03 03:01:39 +00:00
$columns = db_columns($table);
2018-07-23 06:06:45 +00:00
2021-12-03 03:01:39 +00:00
$clean = [];
foreach ($arr as $k => $v) {
if (! in_array($k, $columns)) {
continue;
}
2018-07-23 06:06:45 +00:00
2021-12-03 03:01:39 +00:00
$matches = false;
if (preg_match('/([^a-zA-Z0-9\-\_\.])/', $k, $matches)) {
return false;
}
if (in_array($k, $binary_fields)) {
$clean[$k] = dbescbin($v);
} else {
$clean[$k] = dbesc($v);
}
}
q("START TRANSACTION");
2021-12-03 03:01:39 +00:00
$r = dbq("INSERT INTO " . TQUOT . $table . TQUOT . " (" . TQUOT
. implode(TQUOT . ', ' . TQUOT, array_keys($clean))
. TQUOT . ") VALUES ('"
. implode("', '", array_values($clean))
. "')");
if ($r) {
q("COMMIT");
} else {
q("ROLLBACK");
}
2022-08-03 09:52:05 +00:00
2021-12-03 03:01:39 +00:00
return $r;
}
function update_table_from_array($table, $arr, $where, $binary_fields = [])
{
if (! ($arr && $table)) {
return false;
}
$columns = db_columns($table);
$clean = [];
foreach ($arr as $k => $v) {
if (! in_array($k, $columns)) {
continue;
}
$matches = false;
if (preg_match('/([^a-zA-Z0-9\-\_\.])/', $k, $matches)) {
return false;
}
if (in_array($k, $binary_fields)) {
$clean[$k] = dbescbin($v);
} else {
$clean[$k] = dbesc($v);
}
}
$sql = "UPDATE " . TQUOT . $table . TQUOT . " SET ";
foreach ($clean as $k => $v) {
$sql .= TQUOT . $k . TQUOT . ' = "' . $v . '",';
}
$sql = rtrim($sql,',');
$r = dbq($sql . " WHERE " . $where);
2022-08-03 09:52:05 +00:00
return $r;
}
2022-08-03 09:52:05 +00:00
2021-12-03 03:01:39 +00:00
function share_shield($m)
{
return str_replace($m[1], '!=+=+=!' . base64url_encode($m[1]) . '=+!=+!=', $m[0]);
2017-05-31 01:36:19 +00:00
}
2021-12-03 03:01:39 +00:00
function share_unshield($m)
{
2022-10-23 09:51:54 +00:00
$x = str_replace(['!=+=+=!','=+!=+!='], ['',''], $m[1]);
2021-12-03 03:01:39 +00:00
return str_replace($m[1], base64url_decode($x), $m[0]);
2017-05-31 01:36:19 +00:00
}
function wrap_code($body)
2021-12-03 03:01:39 +00:00
{
// purify angle chars and brackets in alt text
$matches = null;
$c = preg_match('/alt\=\"(.*?)\"/ism',$body,$matches);
if ($c) {
$alt_tag = str_replace([ '[', ']', '<', '>' ], ['%5B', '%5D', '&lt;', '&gt;'], $matches[1]);
$body = str_replace($matches[1],$alt_tag,$body);
}
// markdown code blocks are slightly more complicated to escape from linkifiers
$body = preg_replace_callback('#(^|\n| )(?<!\\\)`([^\n`]+?)`#', function ($match) {
return $match[1] . '`' . bb_code_protect($match[2]) . '`';
}, $body);
2021-12-03 03:01:39 +00:00
$body = preg_replace_callback('#(^|\n)([`~]{3,})(?: *\.?([a-zA-Z0-9\-.]+))?\n+([\s\S]+?)\n+\2(\n|$)#', function ($match) {
2022-10-24 07:37:30 +00:00
return $match[1] . $match[2] . "\n" . bb_code_protect($match[4]) . "\n" . $match[2] . (($match[5]) ?: "\n");
2021-12-03 03:01:39 +00:00
}, $body);
// and of course HTML code blocks
$body = preg_replace_callback('#<code>(.*?)</code>#', function ($match) {
return '<code>' . bb_code_protect($match[1]) . '</code>';
}, $body);
2021-12-03 03:01:39 +00:00
$body = preg_replace_callback('/\[code(.*?)\[\/(code)\]/ism', '\red_escape_codeblock', $body);
$body = preg_replace_callback('/\[url(.*?)\[\/(url)\]/ism', '\red_escape_codeblock', $body);
$body = preg_replace_callback('/\[zrl(.*?)\[\/(zrl)\]/ism', '\red_escape_codeblock', $body);
$body = preg_replace_callback('/\[svg(.*?)\[\/(svg)\]/ism', '\red_escape_codeblock', $body);
$body = preg_replace_callback('/\[img(.*?)\[\/(img)\]/ism', '\red_escape_codeblock', $body);
$body = preg_replace_callback('/\[zmg(.*?)\[\/(zmg)\]/ism', '\red_escape_codeblock', $body);
2023-06-13 03:43:29 +00:00
$body = preg_replace_callback('/\[audio(.*?)\[\/(audio)\]/ism', '\red_escape_codeblock', $body);
$body = preg_replace_callback('/\[video(.*?)\[\/(video)\]/ism', '\red_escape_codeblock', $body);
$body = preg_replace_callback('/\[oembed(.*?)\[\/(oembed)\]/ism', '\red_escape_codeblock', $body);
return $body;
}
function unwrap_code($body)
{
2021-12-03 03:01:39 +00:00
$body = preg_replace_callback('/\[\$b64code(.*?)\[\/(code)\]/ism', '\red_unescape_codeblock', $body);
$body = preg_replace_callback('/\[\$b64url(.*?)\[\/(url)\]/ism', '\red_unescape_codeblock', $body);
$body = preg_replace_callback('/\[\$b64zrl(.*?)\[\/(zrl)\]/ism', '\red_unescape_codeblock', $body);
$body = preg_replace_callback('/\[\$b64svg(.*?)\[\/(svg)\]/ism', '\red_unescape_codeblock', $body);
$body = preg_replace_callback('/\[\$b64img(.*?)\[\/(img)\]/ism', '\red_unescape_codeblock', $body);
$body = preg_replace_callback('/\[\$b64zmg(.*?)\[\/(zmg)\]/ism', '\red_unescape_codeblock', $body);
2023-06-12 19:21:37 +00:00
$body = preg_replace_callback('/\[\$b64audio(.*?)\[\/(audio)\]/ism', '\red_unescape_codeblock', $body);
$body = preg_replace_callback('/\[\$b64video(.*?)\[\/(video)\]/ism', '\red_unescape_codeblock', $body);
$body = preg_replace_callback('/\[\$b64oembed(.*?)\[\/(oembed)\]/ism', '\red_unescape_codeblock', $body);
2021-12-03 03:01:39 +00:00
$body = bb_code_unprotect($body);
2021-12-03 03:01:39 +00:00
// fix any img tags that should be zmg
2021-12-03 03:01:39 +00:00
$body = preg_replace_callback('/\[img(.*?)\](.*?)\[\/img\]/ism', '\red_zrlify_img_callback', $body);
2021-12-03 03:01:39 +00:00
$body = bb_translate_video($body);
2021-12-03 03:01:39 +00:00
/**
* Fold multi-line [code] sequences
*/
2021-12-03 03:01:39 +00:00
$body = preg_replace('/\[\/code\]\s*\[code\]/ism', "\n", $body);
return $body;
}
function cleanup_bbcode($body)
{
$body = preg_replace_callback("/([^\]\[\='" . '"' . "\;\/\{\(]|^|\#\^)(https?\:\/\/[a-zA-Z0-9\pL\:\/\-\?\&\;\.\=\@\_\~\#\%\$\!\\+\,\(\)]+)/ismu", '\nakedoembed', $body);
$body = preg_replace_callback("/([^\]\[\='" . '"' . "\;\/\{\(]|^|\#\^)(https?\:\/\/[a-zA-Z0-9\pL\:\/\-\?\&\;\.\=\@\_\~\#\%\$\!\\+\,\(\)]+)/ismu", '\red_zrl_callback', $body);
2021-12-03 03:01:39 +00:00
return $body;
}
2021-12-03 03:01:39 +00:00
function gen_link_id($mid)
{
2022-07-20 11:26:28 +00:00
$mid = safe_param($mid);
// if (strpbrk($mid, ':/&?<>"\'') !== false) {
// return 'b64.' . base64url_encode($mid);
// }
2021-12-03 03:01:39 +00:00
return $mid;
}
2021-12-03 03:01:39 +00:00
function unpack_link_id($mid)
{
2022-07-20 11:26:28 +00:00
$mid = decode_safe_param($mid);
2022-10-23 09:51:54 +00:00
if (str_starts_with($mid, 'b64.')) {
2021-12-03 03:01:39 +00:00
$mid = base64url_decode(preg_replace('/[^A-Za-z0-9\-_].*/', '', substr($mid, 4)));
}
return $mid;
}
2022-07-20 11:26:28 +00:00
function safe_param($s) {
return str_replace( ['?', '&', '<', '>', '=', '"', '\'', '#', '%20' ], [ '{3F}', '{26}', '{3C}', '{3E}', '{3D}', '{22}', '{27}' , '{23}', '{20}'], $s);
2022-07-20 11:26:28 +00:00
}
function decode_safe_param($s) {
return str_replace( [ '{3F}', '{26}', '{3C}', '{3E}', '{3D}', '{22}', '{27}', '{23}', '{20}' ], ['?', '&', '<', '>', '=', '"', '\'', '#', '%20' ], $s);
2022-07-20 11:26:28 +00:00
}
// callback for array_walk
2021-12-03 03:01:39 +00:00
function array_trim(&$v, $k)
{
$v = trim($v);
2017-01-16 03:51:14 +00:00
}
2021-12-03 03:01:39 +00:00
function array_escape_tags(&$v, $k)
{
$v = escape_tags($v);
}
2021-12-03 03:01:39 +00:00
function ellipsify($s, $maxlen)
{
if ($maxlen & 1) {
$maxlen--;
}
if ($maxlen < 4) {
$maxlen = 4;
}
2021-12-03 03:01:39 +00:00
if (mb_strlen($s) < $maxlen) {
return $s;
}
2021-12-03 03:01:39 +00:00
return mb_substr($s, 0, $maxlen / 2) . '...' . mb_substr($s, mb_strlen($s) - ($maxlen / 2));
}
2021-12-03 03:01:39 +00:00
function purify_filename($s)
{
2022-10-23 09:51:54 +00:00
if (($s[0] === '.') || str_contains($s, '/')) {
2021-12-03 03:01:39 +00:00
return '';
}
return $s;
}
2018-03-02 20:41:50 +00:00
// callback for sorting the settings/featured entries.
2021-12-03 03:01:39 +00:00
function featured_sort($a, $b)
{
$s1 = substr($a, strpos($a, 'id='), 20);
$s2 = substr($b, strpos($b, 'id='), 20);
return(strcmp($s1, $s2));
2018-03-02 20:41:50 +00:00
}
2021-12-03 03:01:39 +00:00
function unpunify($s)
{
2022-04-21 21:46:21 +00:00
if (function_exists('idn_to_utf8') && isset($s)) {
2021-12-03 03:01:39 +00:00
return idn_to_utf8($s);
}
return $s;
}
2021-12-03 03:01:39 +00:00
function punify($s)
{
2022-04-21 21:46:21 +00:00
if (function_exists('idn_to_ascii') && isset($s)) {
2021-12-03 03:01:39 +00:00
return idn_to_ascii($s);
}
return $s;
}
2018-04-26 01:41:19 +00:00
2021-12-03 03:01:39 +00:00
function unique_multidim_array($array, $key)
{
$temp_array = [];
2018-04-26 01:41:19 +00:00
$i = 0;
$key_array = [];
2021-12-03 03:01:39 +00:00
foreach ($array as $val) {
2018-04-26 01:41:19 +00:00
if (!in_array($val[$key], $key_array)) {
$key_array[$i] = $val[$key];
$temp_array[$i] = $val;
}
$i++;
}
return $temp_array;
2021-12-03 03:01:39 +00:00
}
2018-05-18 10:09:38 +00:00
2019-04-29 04:17:04 +00:00
// Much prettier formatting than print_r()
2019-05-03 06:42:41 +00:00
// This assumes the output will be a web page and escapes angle-chars appropriately by default.
2018-05-18 10:09:38 +00:00
2019-04-29 04:17:04 +00:00
2021-12-03 03:01:39 +00:00
function print_array($arr, $escape = true, $level = 0)
{
2018-05-18 10:09:38 +00:00
2021-12-03 03:01:39 +00:00
$o = EMPTY_STR;
$tabs = EMPTY_STR;
2018-05-18 10:09:38 +00:00
2021-12-03 03:01:39 +00:00
if (is_array($arr)) {
for ($x = 0; $x <= $level; $x++) {
$tabs .= "\t";
}
$o .= '[' . "\n";
if (count($arr)) {
foreach ($arr as $k => $v) {
if (is_array($v)) {
$o .= $tabs . '[' . (($escape) ? escape_tags($k) : $k) . '] => ' . print_array($v, $escape, $level + 1) . "\n";
} else {
$o .= $tabs . '[' . (($escape) ? escape_tags($k) : $k) . '] => ' . print_val($v, $escape) . ",\n";
}
}
}
$o .= substr($tabs, 0, -1) . ']' . (($level) ? ',' : ';' ) . "\n";
return $o;
}
2018-05-18 10:09:38 +00:00
}
2021-12-03 03:01:39 +00:00
function print_val($v, $escape = true)
{
if (is_bool($v)) {
if ($v) {
return 'true';
}
return 'false';
}
if (is_string($v)) {
return "'" . (($escape) ? escape_tags($v) : $v) . "'";
}
return $v;
2018-05-29 02:42:40 +00:00
}
2021-12-03 03:01:39 +00:00
function array_path_exists($str, $arr)
{
2018-05-29 02:42:40 +00:00
if (! (isset($arr) && is_array($arr))) {
2021-12-03 03:01:39 +00:00
return false;
}
2019-05-03 06:42:41 +00:00
2021-12-03 03:01:39 +00:00
$ptr = $arr;
$search = explode('/', $str);
2021-12-03 03:01:39 +00:00
if ($search) {
foreach ($search as $s) {
if ($ptr && is_array($ptr) && array_key_exists($s, $ptr)) {
$ptr = $ptr[$s];
} else {
return false;
}
}
return true;
}
return false;
2018-06-04 00:58:24 +00:00
}
2021-12-03 03:01:39 +00:00
function get_forum_channels($uid, $collections = 0)
{
2021-12-03 03:01:39 +00:00
if (! $uid) {
2022-10-24 07:37:30 +00:00
return false;
2021-12-03 03:01:39 +00:00
}
2019-03-05 07:51:47 +00:00
2021-12-03 03:01:39 +00:00
if ($collections) {
$pagetype = $collections;
} else {
$pagetype = 1;
}
2021-12-03 03:01:39 +00:00
$r = q(
"select abook_id, xchan_hash, xchan_network, xchan_name, xchan_url, xchan_photo_s from abook left join xchan on abook_xchan = xchan_hash where xchan_deleted = 0 and abook_channel = %d and abook_pending = 0 and abook_ignored = 0 and abook_blocked = 0 and abook_archived = 0 and abook_self = 0 and xchan_type = %d order by xchan_name",
intval($uid),
intval($pagetype)
);
2021-12-03 03:01:39 +00:00
return $r;
}
2018-11-21 02:55:33 +00:00
2021-12-03 03:01:39 +00:00
function serialise($x)
{
return ((is_array($x)) ? 'json:' . json_encode($x) : $x);
2018-11-21 02:55:33 +00:00
}
2021-12-03 03:01:39 +00:00
function unserialise($x)
{
if (is_array($x)) {
return $x;
}
2022-10-23 09:51:54 +00:00
$y = ((str_starts_with($x, 'json:')) ? json_decode(substr($x, 5), true) : '');
2021-12-03 03:01:39 +00:00
return ((is_array($y)) ? $y : $x);
2019-04-05 02:55:17 +00:00
}
2021-12-03 03:01:39 +00:00
function obscurify($s)
{
return str_rot47(base64url_encode($s));
2019-04-05 02:55:17 +00:00
}
2021-12-03 03:01:39 +00:00
function unobscurify($s)
{
return base64url_decode(str_rot47($s));
2019-04-05 02:55:17 +00:00
}
2019-11-06 05:34:47 +00:00
2022-10-24 07:37:30 +00:00
/** @noinspection HtmlUnknownAttribute */
2021-12-03 03:01:39 +00:00
function svg2bb($s)
{
2019-11-06 05:34:47 +00:00
2021-12-03 03:01:39 +00:00
$s = preg_replace("/\<text (.*?)\>(.*?)\<(.*?)\<\/text\>/", '<text $1>$2&lt;$3</text>', $s);
$s = preg_replace("/\<text (.*?)\>(.*?)\>(.*?)\<\/text\>/", '<text $1>$2&gt;$3</text>', $s);
$s = preg_replace("/\<text (.*?)\>(.*?)\[(.*?)\<\/text\>/", '<text $1>$2&#91;$3</text>', $s);
$s = preg_replace("/\<text (.*?)\>(.*?)\](.*?)\<\/text\>/", '<text $1>$2&#93;$3</text>', $s);
2022-10-11 10:42:18 +00:00
// Deprecated in php 8.2, but we may not need it at all.
// $s = utf8_encode($s);
2021-12-03 03:01:39 +00:00
$purify = new SvgSanitizer();
if ($purify->loadXML($s)) {
$purify->sanitize();
$output = $purify->saveSVG();
$output = preg_replace("/\<\?xml(.*?)\>/", '', $output);
$output = preg_replace("/\<\!\-\-(.*?)\-\-\>/", '', $output);
$output = str_replace(['<','>'], ['[',']'], $output);
return $output;
}
return EMPTY_STR;
2019-11-06 10:15:38 +00:00
}
// Takes something that looks like a phone number and returns a string suitable for tel: protocol or false.
2020-09-26 00:36:55 +00:00
2021-12-03 03:01:39 +00:00
function is_phone_number($s)
{
$ext = substr($s, strpos($s, 'x') + 1);
if (! $ext) {
$ext = substr($s, strpos($s, 'X') + 1);
}
if ($ext && ctype_digit($ext)) {
$rext = ';ext=' . $ext;
$s = str_replace(['x' . $ext, 'X' . $ext], ['',''], $s);
} else {
$ext = EMPTY_STR;
}
$s = str_replace(['(',')',' ','-','+'], ['','','','',''], $s);
return ((ctype_digit($s)) ? $s . $rext : false);
2020-09-26 00:36:55 +00:00
}
/**
* fnmatch seems a bit unpredictable, so use this instead.
*/
2021-12-03 03:01:39 +00:00
function wildmat($pattern, $string)
{
return preg_match("#^" . strtr(preg_quote($pattern, '#'), [ '\*' => '.*', '\?' => '.', '\[' => '[', '\]' => ']' ]) . "$#i", $string);
}
function unicode_trim($s) {
return preg_replace('/^[\pZ\pC]+|[\pZ\pC]+$/u', '', $s);
2022-07-20 11:26:28 +00:00
}
// Using a regex to remove share content fails if it is a recursive share.
// Few people can read and uderstand a recursive regex, and they also suck up
// resources; so we'll accomplish this with generic string processing instead.
function strip_share_content($str)
{
$output = $str;
$begin = strpos($str, '[share');
$end = strrpos($str, '[/share]');
if ($begin && $end) {
$output = substr($str, 0, $begin)
. substr($str, $end + strlen('[/share]'));
}
return $output;
}